/*
 * WAbulk - WhatsApp Bulk Message Sender
 * Light Theme with Custom Green Primary Color #25d366
 * ============================================================================
 */

/* ============================================================================
   CSS Variables
   ============================================================================ */
:root {
  /* Primary color derived from #25d366 */
  --ion-color-primary: #25d366;
  --ion-color-primary-rgb: 37, 211, 102;
  --ion-color-primary-contrast: #ffffff;
  --ion-color-primary-shade: #20bd5a;
  --ion-color-primary-tint: #39db75;

  /* Background and foreground colors */
  --ion-background-color: #f5f5f5;
  --ion-item-background-color: white;
  --ion-text-color: #222428;
  --ion-toolbar-background: #f0f0f0;

  /* Secondary colors */
  --ion-color-secondary: #39db75;
  --ion-color-tertiary: #20bd5a;
  --ion-color-light: #e9f5eb;
  --ion-color-medium: #92949c;
  --ion-color-dark: #222428;

  /* Border color */
  --ion-border-color: #000000;
}

/* ============================================================================
   Base Styles
   ============================================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ion-background-color);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--ion-text-color);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: #25d366;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

code {
  background: var(--ion-color-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  color: #20bd5a;
  font-weight: 600;
}

/* ============================================================================
   Container
   ============================================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================================
   Typography
   ============================================================================ */
label {
  display: inline-block;
  font-weight: 600;
}

.light-label {
  font-weight: normal;
  color: grey;
  font-size: 13px;
}

.desc {
  font-weight: 400;
  font-size: 13px;
}

.theme-color {
  color: #25d366;
}

/* ============================================================================
   Form Elements
   ============================================================================ */
input,
textarea,
.input {
  padding: 7px 12px;
  font-family: 'Outfit', sans-serif;
  border-radius: 5px;
  outline: none;
  border: 0.2rem solid rgba(190, 190, 190, 0.3);
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: white;
}

input:focus,
textarea:focus {
  border-bottom-color: #25d366;
  outline: none;
}

/* ============================================================================
   Buttons
   ============================================================================ */
.wa-btn,
.btn-solid {
  cursor: pointer;
  border-width: 0.1rem;
  border-style: solid;
  border-color: black;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 25px;
  padding: 11px 18px;
  font-size: 16px;
  box-shadow: 3px 3px 0px 0px #333;
  transform: translate(-2px, -2px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #25d366;
  border-color: #25d366;
}

.wa-btn:hover,
.wa-btn:focus,
.btn-solid:hover,
.btn-solid:focus {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
  text-decoration: none;
}

.wa-btn-large {
  padding: 16px 28px;
  font-size: 18px;
}

.btn-outline {
  cursor: pointer;
  border-width: 0.1rem;
  border-style: solid;
  border-color: black;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 25px;
  padding: 11px 18px;
  font-size: 16px;
  box-shadow: 3px 3px 0px 0px #333;
  transform: translate(-2px, -2px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  background-color: white;
  color: #222428;
}

.btn-outline:hover,
.btn-outline:focus {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
  text-decoration: none;
}

.btn-outline-large {
  padding: 16px 28px;
  font-size: 18px;
}

/* ============================================================================
   Site Header
   ============================================================================ */
.site-header {
  background: white;
  border-bottom: 2px solid black;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ion-text-color);
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
}

img.logo {
  border: none;
  box-shadow: none;
  background: transparent;
}

.brand-text {
  font-size: 20px;
}

.brand-sub {
  color: var(--ion-color-medium);
  font-weight: 500;
  font-size: 13px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--ion-text-color);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #25d366;
  text-decoration: none;
}

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

.actions .wa-btn,
.actions .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 10px 16px;
}

.actions .wa-btn svg,
.actions .btn-outline svg {
  flex-shrink: 0;
}

/* ============================================================================
   Hero Section
   ============================================================================ */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
}

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

.hero-content {
  max-width: 580px;
  padding-left: 20px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
  background: transparent;
}

.hero-badge {
  display: inline-block;
  background: var(--ion-color-light);
  color: #20bd5a;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--ion-text-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #25d366;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 16px;
}

.hero p {
  color: var(--ion-color-medium);
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero-checks {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-checks li {
  font-size: 17px;
  font-weight: 500;
  color: var(--ion-text-color);
}

.hero-check-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--ion-color-medium);
  display: block;
  margin-top: 4px;
  padding-left: 24px;
}

.hero-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust Features (Hero microcopy) */
.trust-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ion-color-medium);
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .trust-features {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================================
   Social Proof Strip
   ============================================================================ */
.social-proof-strip {
  background: white;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 40px 0 32px;
}

.proof-header {
  text-align: center;
  margin-bottom: 32px;
}

.proof-header h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 10px;
}

.proof-subline {
  font-size: 15px;
  color: var(--ion-color-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left: Testimonials */
.proof-testimonial {
  padding-right: 20px;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.proof-rating .stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.proof-rating .rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-text-color);
}

.testimonial-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin: 0 0 12px 0;
  padding-left: 12px;
  border-left: 3px solid #25d366;
}

.testimonial-quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  color: var(--ion-text-color);
  margin-top: 6px;
}

/* Center: Stats */
.proof-stats {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-big {
  margin-bottom: 20px;
}

.stat-number {
  display: block;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #25d366;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--ion-color-medium);
  margin-top: 6px;
}

.stat-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-feature {
  font-size: 13px;
  color: var(--ion-text-color);
  font-weight: 500;
}

/* Right: Categories */
.proof-categories {
  padding-left: 20px;
}

.proof-categories h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 12px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-list li {
  font-size: 14px;
  color: var(--ion-color-medium);
  padding-left: 16px;
  position: relative;
}

.category-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 600;
}

/* Micro-SEO Trust Badges */
.seo-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: #999;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .proof-testimonial {
    padding-right: 0;
  }
  
  .proof-stats {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
  }
  
  .proof-categories {
    padding-left: 0;
  }
  
  .seo-trust-badges {
    flex-direction: column;
    gap: 6px;
  }
  
  .seo-trust-badges span:nth-child(even) {
    display: none;
  }
}

/* ============================================================================
   Problem → Solution Section
   ============================================================================ */
.problem-solution-section {
  background: var(--ion-background-color);
}

.problem-solution-section .section-header h2 {
  max-width: 700px;
  margin: 0 auto;
}

/* Problem Block */
.problem-block {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.problem-intro {
  font-size: 18px;
  color: var(--ion-text-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.problem-list li {
  font-size: 16px;
  color: var(--ion-color-medium);
  line-height: 1.5;
}

.problem-summary {
  font-size: 16px;
  color: var(--ion-text-color);
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

/* Solution Block */
.solution-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.solution-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 16px;
}

.solution-intro {
  font-size: 20px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 12px;
}

.solution-block p {
  font-size: 17px;
  color: var(--ion-color-medium);
  line-height: 1.7;
}

/* Solution Features Grid */
.solution-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.solution-feature-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.solution-feature-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.solution-feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-feature-card p {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.solution-feature-card p:last-child {
  margin-bottom: 0;
}

/* Solution Feature Card with Image */
.solution-feature-card-with-image {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  grid-column: span 2;
}

.solution-feature-card-with-image.reverse {
  flex-direction: row-reverse;
}

.solution-feature-card-with-image:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.solution-feature-content {
  flex: 1;
}

.solution-feature-image {
  flex: 1;
  max-width: 50%;
}

.solution-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 2px solid black;
}

.solution-feature-card-with-image .feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.solution-feature-card-with-image h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solution-feature-card-with-image p {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.solution-feature-card-with-image .feature-sub-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.solution-feature-card-with-image .feature-sub-list li {
  font-size: 14px;
  color: var(--ion-text-color);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.solution-feature-card-with-image .feature-sub-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

@media (max-width: 900px) {
  .solution-feature-card-with-image {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .solution-feature-card-with-image.reverse {
    flex-direction: column;
  }
  .solution-feature-content {
    padding: 32px;
  }
  .solution-feature-image {
    max-width: 100%;
    border-top: 2px solid black;
  }
  .solution-feature-image img {
    border-radius: 0;
    border: none;
  }
}

.feature-sub-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.feature-sub-list li {
  font-size: 14px;
  color: var(--ion-text-color);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.feature-sub-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.placeholder-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.placeholder-tags code {
  background: var(--ion-color-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #20bd5a;
  font-weight: 600;
}

/* Value Summary */
.value-summary {
  background: var(--ion-color-light);
  border: 2px solid #25d366;
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.value-summary p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .problem-block {
    padding: 28px 24px;
  }
  
  .solution-features-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-feature-card {
    padding: 24px;
  }
  
  .value-summary {
    padding: 20px 24px;
  }
}

/* ============================================================================
   How Sheet WA Works Section
   ============================================================================ */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.how-step-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  gap: 24px;
}

.how-step-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.how-step-card .step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 20px;
  border: 2px solid black;
}

.how-step-content {
  flex: 1;
}

.how-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 8px;
}

.step-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 16px;
}

.how-step-content p {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-columns-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.step-columns-list li {
  font-size: 14px;
  color: var(--ion-text-color);
}

.step-columns-list li code {
  background: var(--ion-color-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: #20bd5a;
}

.step-check-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.step-check-list li {
  font-size: 14px;
  color: var(--ion-text-color);
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}

.step-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.message-preview-box {
  background: #e9f5eb;
  border-left: 4px solid #25d366;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ion-text-color);
  font-style: italic;
  margin: 16px 0;
  line-height: 1.6;
}

.attachment-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.attachment-tag {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ion-text-color);
}

.step-note {
  font-size: 14px;
  color: var(--ion-color-medium);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .how-step-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}

/* ============================================================================
   Core Features Section
   ============================================================================ */
.core-features-section {
  background: var(--ion-background-color);
}

.core-features-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.core-feature-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.core-feature-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

/* Core Feature Card with Image */
.core-feature-card-with-image {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
}

.core-feature-card-with-image.reverse {
  flex-direction: row-reverse;
}

.core-feature-card-with-image:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.core-feature-content {
  flex: 1;
}

.core-feature-image {
  flex: 1;
  max-width: 50%;
}

.core-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 2px solid black;
}

.core-feature-card-with-image .core-feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.core-feature-card-with-image h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 8px;
}

.core-feature-card-with-image .core-feature-tagline {
  font-size: 15px;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 12px;
}

.core-feature-card-with-image .core-feature-intro {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.core-feature-card-with-image .core-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.core-feature-card-with-image .core-feature-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
  position: relative;
}

.core-feature-card-with-image .core-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
  font-size: 14px;
}

.core-feature-card-with-image .core-feature-list strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ion-text-color);
}

.core-feature-card-with-image .core-feature-list span {
  font-size: 14px;
  color: var(--ion-color-medium);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .core-feature-card-with-image {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .core-feature-card-with-image.reverse {
    flex-direction: column;
  }
  .core-feature-content {
    padding: 32px;
  }
  .core-feature-image {
    max-width: 100%;
    border-top: 2px solid black;
  }
  .core-feature-image img {
    border-radius: 0;
    border: none;
  }
}

.core-feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.core-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 8px;
}

.core-feature-tagline {
  font-size: 15px;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 12px;
}

.core-feature-intro {
  font-size: 14px;
  color: var(--ion-color-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.core-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.core-feature-list li {
  font-size: 14px;
  line-height: 1.5;
}

.core-feature-list li strong {
  display: block;
  color: var(--ion-text-color);
  font-weight: 600;
  margin-bottom: 4px;
}

.core-feature-list li span {
  display: block;
  color: var(--ion-color-medium);
  font-size: 13px;
}

.core-feature-note {
  font-size: 13px;
  color: var(--ion-text-color);
  font-style: italic;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.attachment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.attachment-pills span {
  background: var(--ion-color-light);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ion-text-color);
}

.core-feature-card p {
  font-size: 14px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.use-cases {
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 12px;
}

.use-cases span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ion-text-color);
  display: block;
  margin-bottom: 8px;
}

.use-cases ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.use-cases li {
  font-size: 13px;
  color: var(--ion-color-medium);
  padding-left: 16px;
  position: relative;
}

.use-cases li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #25d366;
}

/* Feature Summary Strip */
.feature-summary-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  background: white;
  border: 2px solid #25d366;
  border-radius: 12px;
  padding: 24px 32px;
}

.summary-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--ion-text-color);
}

@media (max-width: 900px) {
  .core-features-grid {
    grid-template-columns: 1fr;
  }
  
  .core-feature-card {
    padding: 24px;
  }
  
  .feature-summary-strip {
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
  }
  
  .use-cases ul {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   Use Cases Section
   ============================================================================ */
.use-cases-section .section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 12px;
}

.section-intro {
  font-size: 16px;
  color: var(--ion-color-medium);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.use-case-card {
  background: var(--ion-background-color);
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.use-case-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.use-case-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 10px;
}

.use-case-desc {
  font-size: 14px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.template-box {
  background: white;
  border-left: 4px solid #25d366;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.template-label {
  font-size: 12px;
  font-weight: 600;
  color: #25d366;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.template-box p {
  font-size: 13px;
  color: var(--ion-text-color);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.why-works {
  font-size: 13px;
  color: var(--ion-color-medium);
  line-height: 1.5;
}

.why-works strong {
  color: var(--ion-text-color);
}

.template-tip {
  font-size: 13px;
  color: var(--ion-color-medium);
  background: #f9f9f9;
  padding: 10px 12px;
  border-radius: 6px;
  margin: 0;
}

/* Use Cases Summary */
.use-cases-summary {
  background: var(--ion-color-light);
  border: 2px solid #25d366;
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.use-cases-summary p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .use-case-card {
    padding: 24px;
  }
  
  .use-cases-summary {
    padding: 20px 24px;
  }
}

/* ============================================================================
   Comparison Section
   ============================================================================ */
.comparison-section {
  background: var(--ion-background-color);
}

.comparison-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.comparison-card-new {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 3px 3px 0px 0px #333;
  position: relative;
}

.comparison-card-highlight {
  border-color: #25d366;
  background: #f0fdf4;
}

.comparison-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  background: #e9f5eb;
  color: #25d366;
  margin-bottom: 12px;
}

.comparison-badge-yellow {
  background: #fef9e7;
  color: #b7950b;
}

.comparison-badge-blue {
  background: #e8f4fd;
  color: #2874a6;
}

.comparison-badge-red {
  background: #fdedec;
  color: #c0392b;
}

.comparison-card-new h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 6px;
}

.comparison-subtitle {
  font-size: 13px;
  color: #25d366;
  font-weight: 600;
  margin-bottom: 12px;
}

.comparison-best-for {
  font-size: 13px;
  color: var(--ion-color-medium);
  margin-bottom: 14px;
  line-height: 1.5;
}

.comparison-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-pros,
.comparison-cons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.comparison-pros li,
.comparison-cons li {
  font-size: 13px;
  color: var(--ion-color-medium);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.comparison-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.comparison-cons li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--ion-color-medium);
}

.comparison-verdict {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 0;
}

.comparison-verdict-good {
  background: #e9f5eb;
  color: #1e8449;
}

.comparison-verdict-bad {
  background: #fdedec;
  color: #c0392b;
}

.comparison-verdict-warn {
  background: #fef9e7;
  color: #9a7b0a;
}

/* Comparison Table */
.comparison-table-wrapper {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  margin-bottom: 40px;
  overflow-x: auto;
}

.table-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 24px;
  text-align: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #f5f5f5;
  font-weight: 600;
  color: var(--ion-text-color);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table .highlight-col {
  background: #f0fdf4;
}

.comparison-table th.highlight-col {
  background: #e9f5eb;
  color: #25d366;
}

.check-yes {
  font-size: 16px;
}

.check-no {
  font-size: 16px;
  opacity: 0.7;
}

.check-partial {
  font-size: 16px;
}

/* Decision Helper */
.decision-helper {
  background: var(--ion-color-light);
  border: 2px solid #25d366;
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.decision-helper p {
  font-size: 18px;
  color: var(--ion-text-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .comparison-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .comparison-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-card-new {
    padding: 20px;
  }
  
  .comparison-table-wrapper {
    padding: 20px;
  }
  
  .comparison-table {
    font-size: 13px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }
  
  .decision-helper {
    padding: 20px 24px;
  }
  
  .decision-helper p {
    font-size: 16px;
  }
}

/* ============================================================================
   Pricing / Free Section
   ============================================================================ */
.pricing-section .section-header {
  margin-bottom: 40px;
}

.pricing-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.pricing-headline {
  font-size: 24px;
  color: var(--ion-text-color);
  margin-bottom: 12px;
}

.pricing-headline strong {
  color: #25d366;
}

.pricing-intro p {
  font-size: 16px;
  color: var(--ion-color-medium);
  line-height: 1.7;
  margin-bottom: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-bottom: 50px;
}

.pricing-card {
  background: var(--ion-background-color);
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pricing-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.pricing-card-main {
  background: #f0fdf4;
  border-color: #25d366;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 12px;
}

.pricing-card-intro {
  font-size: 15px;
  color: var(--ion-color-medium);
  margin-bottom: 20px;
}

.free-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.free-features-list li {
  font-size: 15px;
  color: var(--ion-text-color);
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}

.free-features-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  font-size: 14px;
}

.no-gating {
  font-size: 14px;
  font-weight: 600;
  color: #25d366;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 211, 102, 0.3);
  margin: 0;
}

/* Trust Card */
.pricing-card-trust {
  display: flex;
  flex-direction: column;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  flex: 1;
}

.trust-list li {
  font-size: 15px;
  color: var(--ion-text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-check {
  color: #25d366;
  font-weight: 700;
  font-size: 16px;
}

.trust-note {
  font-size: 14px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}

/* Why Free Block */
.why-free-block {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 4px 4px 0px 0px #333;
}

.why-free-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 12px;
}

.why-free-block p {
  font-size: 16px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.why-free-block p:last-child {
  margin-bottom: 0;
}

.why-free-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.why-free-pills span {
  background: var(--ion-color-light);
  color: #25d366;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 28px;
  }
  
  .why-free-block {
    padding: 28px 24px;
  }
  
  .why-free-pills {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================================
   FAQ Section (Grid Layout for Sheet WA)
   ============================================================================ */
.faq-section {
  background: var(--ion-background-color);
}

.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: none;
}

.faq-section .faq-item {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 3px 3px 0px 0px #333;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: none;
  overflow: visible;
}

.faq-section .faq-item:hover {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 0 #333;
}

.faq-section .faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 14px;
  line-height: 1.4;
  display: block;
  padding: 0;
  width: auto;
  cursor: default;
  background: transparent;
}

.faq-section .faq-question:hover {
  background: transparent;
}

.faq-section .faq-answer {
  max-height: none;
  overflow: visible;
  padding: 0;
}

.faq-section .faq-answer p {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-section .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-section .faq-answer ul,
.faq-section .faq-answer ol {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-section .faq-answer ul {
  list-style: none;
  padding-left: 0;
}

.faq-section .faq-answer ul li {
  font-size: 14px;
  color: var(--ion-color-medium);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.faq-section .faq-answer ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #25d366;
  font-weight: 700;
}

.faq-section .faq-answer ol {
  list-style: decimal;
  padding-left: 24px;
}

.faq-section .faq-answer ol li {
  font-size: 14px;
  color: var(--ion-color-medium);
  margin-bottom: 8px;
  padding-left: 4px;
}

/* SEO Line */
.faq-seo-line {
  background: var(--ion-color-light);
  border: 2px solid #25d366;
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  margin-top: 40px;
}

.faq-seo-line p {
  font-size: 16px;
  color: var(--ion-text-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-section .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-section .faq-item {
    padding: 24px;
  }
}

/* ============================================================================
   Final CTA Section
   ============================================================================ */
.final-cta-section {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}

.final-cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta-buttons .wa-btn {
  background: white;
  color: #25d366;
  border-color: white;
}

.final-cta-buttons .wa-btn:hover {
  background: #f5f5f5;
}

.final-cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.final-cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .final-cta-buttons .wa-btn,
  .final-cta-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================================================
   Sections
   ============================================================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: white;
}

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

.section-badge {
  display: inline-block;
  background: var(--ion-color-light);
  color: #20bd5a;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--ion-text-color);
}

/* ============================================================================
   Steps / How It Works
   ============================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

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

.step-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.step-card-big {
  padding: 40px 32px;
  text-align: center;
}

.step-card-big .step-number {
  width: 56px;
  height: 56px;
  font-size: 24px;
  margin: 0 auto 24px auto;
}

.step-card-big .step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card-big h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.step-card-big p {
  font-size: 17px;
  line-height: 1.7;
}

.step-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  border: 2px solid black;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ion-text-color);
}

.step-card p {
  color: var(--ion-color-medium);
  font-size: 14px;
  line-height: 1.6;
}

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

/* ============================================================================
   Comparison Section
   ============================================================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0px 0px #333;
}

.comparison-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.comparison-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card li {
  font-size: 15px;
  line-height: 1.5;
}

.comparison-bad {
  background: #fff5f5;
}

.comparison-bad li {
  color: #666;
}

.comparison-good {
  background: var(--ion-color-light);
}

.comparison-good li {
  color: var(--ion-text-color);
  font-weight: 500;
}

/* ============================================================================
   Why Switch Section
   ============================================================================ */
.section-intro {
  font-size: 19px;
  color: var(--ion-color-medium);
  margin-top: 16px;
  line-height: 1.6;
}

.why-switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.why-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.why-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ion-text-color);
}

.why-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ion-color-medium);
  margin-bottom: 12px;
}

.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding-left: 20px;
}

.why-card li {
  font-size: 16px;
  color: var(--ion-color-medium);
  line-height: 1.5;
}

.why-card .highlight-text {
  font-weight: 600;
  color: var(--ion-text-color);
  font-size: 17px;
}

.why-card .solution-text {
  color: #25d366;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 0;
}

.why-card .spam-example {
  font-style: italic;
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid #ccc;
  color: #888;
}

.why-card code {
  background: var(--ion-color-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  color: #25d366;
}

.why-solution-card {
  background: var(--ion-color-light);
  border: 2px solid #25d366;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #25d366;
  text-align: center;
  margin-top: 48px;
}

/* Inline CTA */
.inline-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.inline-cta p {
  font-size: 18px;
  color: var(--ion-text-color);
  margin-bottom: 16px;
}

.inline-cta .wa-btn {
  display: inline-flex;
}

.why-solution-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 24px;
}

.solution-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 24px auto;
  text-align: left;
}

.solution-checklist li {
  font-size: 18px;
  font-weight: 500;
  color: var(--ion-text-color);
}

.solution-conclusion {
  font-size: 19px;
  font-weight: 600;
  color: #25d366;
  margin: 0;
}

@media (max-width: 900px) {
  .why-switch-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   Testimonials
   ============================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

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

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--ion-text-color);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--ion-text-color);
}

.author-role {
  font-size: 14px;
  color: var(--ion-color-medium);
}

/* RTL support for Arabic testimonials */
.testimonial-quote[dir="rtl"] {
  text-align: right;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

.testimonial-quote[dir="rtl"] + .testimonial-author {
  flex-direction: row-reverse;
  text-align: right;
}

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

@media (min-width: 641px) and (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trusted-by {
  text-align: center;
}

.trusted-title {
  font-weight: 600;
  color: var(--ion-color-medium);
  margin-bottom: 16px;
}

.trusted-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trusted-tags span {
  background: white;
  border: 2px solid black;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
}

/* ============================================================================
   Benefits
   ============================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--ion-background-color);
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.benefit-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

/* Benefit Card with Image */
.benefit-card-with-image {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 48px;
}

.benefit-card-with-image.reverse {
  flex-direction: row-reverse;
}

.benefit-card-with-image .benefit-content {
  flex: 1;
}

.benefit-card-with-image .benefit-image {
  flex: 1.2;
  max-width: 55%;
}

.benefit-card-with-image .benefit-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid black;
}

.benefit-card-with-image .benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card-with-image h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ion-text-color);
  line-height: 1.3;
}

.benefit-card-with-image .benefit-intro {
  color: var(--ion-color-medium);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.benefit-card-with-image .benefit-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.benefit-card-with-image .benefit-points li {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.benefit-card-with-image .benefit-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
  font-size: 18px;
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ion-text-color);
  line-height: 1.4;
}

.benefit-intro {
  color: var(--ion-color-medium);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.benefit-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.benefit-points li {
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.benefit-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

/* Additional benefit card elements for Premium Sender */
.benefit-conclusion {
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.benefit-card-with-image .feature-example {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
}

.benefit-card-with-image .feature-example .example-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ion-color-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}

.benefit-card-with-image .feature-example code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--ion-color-primary);
  background: transparent;
  padding: 0;
}

.attachment-tags-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.attachment-tags-inline .attachment-tag {
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ion-text-color);
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefit-card-with-image {
    grid-column: span 2;
    flex-direction: column;
    padding: 36px;
  }
  
  .benefit-card-with-image.reverse {
    flex-direction: column;
  }
  
  .benefit-card-with-image .benefit-image {
    max-width: 100%;
  }
  
  .benefit-card-with-image h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card-with-image {
    grid-column: span 1;
    padding: 28px;
  }
  
  .benefit-card-with-image h3 {
    font-size: 22px;
  }
  
  .benefit-card-with-image .benefit-intro {
    font-size: 16px;
  }
  
  .benefit-card-with-image .benefit-points li {
    font-size: 15px;
  }
}

/* ============================================================================
   Features
   ============================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid black;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 3px 3px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.feature-item:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.feature-check {
  color: #25d366;
  font-weight: 700;
  font-size: 18px;
}

.features-tagline {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ion-color-medium);
}

/* New Feature Cards */
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.feature-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.feature-card .feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ion-text-color);
  line-height: 1.4;
}

.feature-intro {
  color: var(--ion-color-medium);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.feature-points li {
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.feature-card code {
  background: var(--ion-color-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  color: #25d366;
}

.feature-benefit {
  font-size: 14px;
  color: #25d366;
  font-weight: 500;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ion-color-light);
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--ion-color-light);
}

@media (max-width: 900px) {
  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================================================
   CTA Section
   ============================================================================ */
.cta-section {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  text-align: center;
}

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

.cta-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .wa-btn {
  background: white;
  color: #25d366;
  border-color: white;
}

.cta-section .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-subtext {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================================
   FAQ Accordion
   ============================================================================ */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--ion-background-color);
  border: 2px solid black;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 3px 3px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.faq-item:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.faq-item.active {
  border-color: #25d366;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--ion-text-color);
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(37, 211, 102, 0.05);
}

.faq-item.active .faq-question {
  background: rgba(37, 211, 102, 0.08);
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: #25d366;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  color: var(--ion-color-medium);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--ion-text-color);
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer li {
  color: var(--ion-color-medium);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.faq-answer code {
  background: var(--ion-color-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  color: #25d366;
}

/* Legacy faq-grid for backwards compatibility */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

/* ============================================================================
   Responsible Use Section
   ============================================================================ */
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.responsible-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.responsible-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.responsible-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.responsible-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.hero-note {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  .responsible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================================================
   Problem Section (Rocket Sender)
   ============================================================================ */
.problem-intro {
  font-size: 18px;
  text-align: center;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.problem-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.problem-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.problem-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.problem-card ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
}

.problem-highlight {
  background: #fff3e0;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
}

.problem-list li {
  list-style: none;
  padding-left: 0;
}

.warning-section {
  background: #fff;
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
}

.warning-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e65100;
}

.warning-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.warning-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.warning-section ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
}

.shortcut-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0 !important;
}

.shortcut-list li {
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.warning-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #e65100;
  margin-top: 20px;
}

.insight-section {
  background: #e8f5e9;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.insight-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2e7d32;
}

.insight-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.insight-section .solution-checklist {
  display: inline-block;
  text-align: left;
  margin: 20px 0;
}

.insight-section .solution-checklist li {
  font-size: 17px;
  line-height: 2;
  color: #2e7d32;
  list-style: none;
}

.failure-box {
  background: #ffebee;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.failure-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #c62828;
}

.failure-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.failure-item {
  background: #fff;
  border: 1px solid #ffcdd2;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #c62828;
}

.failure-conclusion {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* Pain Points Grid */
.subsection-title {
  text-align: center;
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.pain-point {
  text-align: center;
  padding: 24px;
}

.pain-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.pain-point h4 {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.pain-point p {
  color: #5c6370;
  font-size: 0.95rem;
  margin: 0;
}

/* Before/After Comparison */
.comparison-section {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin: 48px 0;
}

.comparison-card {
  flex: 1;
  padding: 32px;
  border-radius: 16px;
}

.comparison-card h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.comparison-card li:last-child {
  border-bottom: none;
}

.comparison-bad {
  background: #fff5f5;
  border: 1px solid #fed7d7;
}

.comparison-bad h3 {
  color: #c53030;
}

.comparison-good {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
  border: 2px solid #25d366;
}

.comparison-good h3 {
  color: #25d366;
}

.comparison-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #25d366;
  font-weight: bold;
}

/* Result Statement */
.result-statement {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 12px;
  margin-top: 24px;
}

.result-statement p {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0;
}

@media (max-width: 768px) {
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .comparison-section {
    flex-direction: column;
  }
  
  .comparison-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }
}

/* Steps Grid - Rocket Sender */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.25rem;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.step-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #5c6370;
}

.step-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
}

.step-list.inline-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step-list.inline-tags li {
  background: #f0fff4;
  border: 1px solid #25d366;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: monospace;
  font-size: 0.9rem;
  color: #128c7e;
}

.step-list.inline-tags li::before {
  display: none;
}

.step-highlight {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #1a1a2e;
}

.step-benefit {
  font-size: 0.9rem;
  color: #5c6370;
  margin-top: 16px;
}

/* Why Works Section */
.why-works-section {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}

.why-works-section h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.fail-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 20px 0;
}

.fail-list li {
  color: #c53030;
  font-weight: 500;
}

.fail-list li::before {
  content: "✗ ";
}

.emphasis {
  font-size: 1.1rem;
  margin: 24px 0;
}

.checkmarks-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.checkmarks-row span {
  color: #25d366;
  font-weight: 500;
}

/* Scale Section */
.scale-section {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
  border: 2px solid #25d366;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.scale-section h3 {
  font-size: 1.5rem;
  color: #128c7e;
  margin-bottom: 20px;
}

.conclusion {
  font-size: 1.1rem;
  margin-top: 24px;
  color: #1a1a2e;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .fail-list {
    flex-direction: column;
    gap: 12px;
  }
  
  .checkmarks-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================================
   Premium Sender - What Is Section Styles
   ============================================================================ */

/* Definition Card */
.definition-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 900px;
  margin: 0 auto;
}

/* Definition Hero - Enhanced Version */
.definition-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  border: 2px solid black;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 6px 6px 0px 0px #333;
  margin-bottom: 40px;
}

.definition-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--ion-text-color);
  line-height: 1.6;
  margin-bottom: 16px;
}

.definition-hero-content p {
  font-size: 17px;
  color: var(--ion-color-medium);
  line-height: 1.7;
}

.definition-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #25d366;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #128c7e;
}

.highlight-item .highlight-icon {
  font-size: 16px;
}

.definition-hero-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.definition-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

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

/* Section H3 */
.section-h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-top: 8px;
}

/* Difference Card */
.difference-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 900px;
  margin: 0 auto;
}

.difference-intro {
  font-size: 18px;
  color: var(--ion-text-color);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.difference-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ion-color-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.difference-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.difference-text {
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.5;
}

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

.difference-conclusion {
  text-align: center;
  padding-top: 24px;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.difference-conclusion p {
  font-size: 18px;
  color: var(--ion-text-color);
  font-weight: 500;
}

.difference-conclusion .highlight {
  background: linear-gradient(120deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.3) 100%);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: #20bd5a;
}

/* Why Card Variants */
.why-card-positive {
  border-color: #25d366;
  background: linear-gradient(135deg, #f0fff4 0%, white 100%);
}

.why-card-positive h3 {
  color: #25d366;
}

.why-card-negative {
  border-color: #e74c3c;
  background: linear-gradient(135deg, #fff5f5 0%, white 100%);
}

.why-card-negative h3 {
  color: #e74c3c;
}

.why-card .list-icon {
  display: inline-block;
  width: 20px;
  font-weight: 700;
  color: #25d366;
}

.why-card-negative .list-icon {
  color: #e74c3c;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.audience-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.audience-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.audience-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 14px;
  color: var(--ion-color-medium);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .definition-hero {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .definition-hero-visual {
    order: -1;
  }
  
  .difference-grid {
    grid-template-columns: 1fr;
  }
  
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .definition-card,
  .difference-card {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .definition-lead {
    font-size: 18px;
  }
  
  .section-h3 {
    font-size: 22px;
  }
}

/* ============================================================================
   Premium Sender - Why It Exists Section Styles
   ============================================================================ */

/* Problem Statement Card */
.problem-statement-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.problem-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 16px;
}

.problem-lead {
  font-size: 18px;
  color: var(--ion-color-medium);
  margin-bottom: 20px;
}

.problem-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.problem-pill {
  background: #fff5f5;
  border: 1px solid #e74c3c;
  color: #c0392b;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
}

.problem-either-or {
  background: var(--ion-background-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.either-or-lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 16px;
}

.either-or-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.either-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  color: var(--ion-text-color);
}

.option-icon {
  font-size: 20px;
}

.or-divider {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-color-medium);
  text-transform: uppercase;
}

.problem-conclusion {
  padding-top: 20px;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.problem-conclusion p {
  font-size: 18px;
  color: var(--ion-text-color);
}

/* Limitations Grid */
.limitations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.limitation-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.limitation-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.limitation-card-warning {
  border-color: #e74c3c;
}

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

.limitation-icon {
  font-size: 28px;
}

.limitation-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin: 0;
}

.limitation-intro {
  font-size: 15px;
  color: var(--ion-color-medium);
  margin-bottom: 16px;
}

.limitation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.limitation-list li {
  font-size: 15px;
  color: var(--ion-text-color);
  padding-left: 24px;
  position: relative;
}

.limitation-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ion-color-medium);
  font-weight: 600;
}

.limitation-list-warning li::before {
  color: #e74c3c;
  content: "✗";
}

.limitation-conclusion {
  font-size: 15px;
  font-weight: 600;
  color: var(--ion-text-color);
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-style: italic;
}

/* Approach Card */
.approach-card {
  background: white;
  border: 2px solid #25d366;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #25d366;
  transform: translate(-2px, -2px);
  max-width: 900px;
  margin: 0 auto;
}

.approach-lead {
  font-size: 20px;
  font-weight: 600;
  color: #25d366;
  text-align: center;
  margin-bottom: 8px;
}

.approach-intro {
  font-size: 17px;
  color: var(--ion-text-color);
  text-align: center;
  margin-bottom: 32px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ion-color-light);
  padding: 20px;
  border-radius: 12px;
}

.approach-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
}

.approach-step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.approach-step-content strong {
  font-size: 16px;
  color: var(--ion-text-color);
}

.approach-step-content span {
  font-size: 14px;
  color: var(--ion-color-medium);
}

.approach-conclusion {
  text-align: center;
  padding-top: 24px;
  border-top: 2px dashed rgba(37, 211, 102, 0.3);
}

.approach-conclusion p {
  font-size: 18px;
  color: var(--ion-text-color);
  font-weight: 500;
}

/* Precision Card */
.precision-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 900px;
  margin: 0 auto;
}

.precision-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--ion-text-color);
  text-align: center;
  margin-bottom: 28px;
}

.precision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.precision-item {
  background: var(--ion-background-color);
  border-radius: 12px;
  padding: 24px 16px;
}

.precision-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.precision-good {
  font-size: 20px;
  font-weight: 700;
  color: #25d366;
}

.precision-over {
  font-size: 12px;
  font-weight: 600;
  color: var(--ion-color-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.precision-bad {
  font-size: 16px;
  color: var(--ion-color-medium);
  text-decoration: line-through;
}

.precision-conclusion {
  text-align: center;
  padding-top: 24px;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
}

.precision-conclusion p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .limitations-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-steps {
    grid-template-columns: 1fr;
  }
  
  .precision-grid {
    grid-template-columns: 1fr;
  }
  
  .problem-statement-card,
  .approach-card,
  .precision-card {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .either-or-options {
    flex-direction: column;
    gap: 12px;
  }
  
  .or-divider {
    display: block;
  }
  
  .problem-pills {
    flex-direction: column;
    align-items: center;
  }
  
  .limitation-card {
    padding: 24px 20px;
  }
}

/* ============================================================================
   Premium Sender - Features Section Styles
   ============================================================================ */

/* Features Intro Card */
.features-intro-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.features-intro-card p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.7;
  margin-bottom: 12px;
}

.features-intro-card p:last-child {
  margin-bottom: 0;
}

.features-note {
  font-weight: 600;
  color: #25d366 !important;
  font-style: italic;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Feature Card Detailed */
.feature-card-detailed {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 0;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}

.feature-card-detailed:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.feature-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 2px solid #eee;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card-detailed:hover .feature-card-image img {
  transform: scale(1.05);
}

.feature-card-detailed .feature-card-header,
.feature-card-detailed .feature-description,
.feature-card-detailed .feature-benefits,
.feature-card-detailed .feature-conclusion,
.feature-card-detailed .feature-example,
.feature-card-detailed .attachment-tags-grid,
.feature-card-detailed .feature-use-cases-label,
.feature-card-detailed .feature-use-cases,
.feature-card-detailed .control-options,
.feature-card-detailed .status-indicators {
  padding-left: 32px;
  padding-right: 32px;
}

.feature-card-detailed .feature-card-header {
  padding-top: 24px;
}

.feature-card-detailed .feature-conclusion,
.feature-card-detailed .feature-use-cases,
.feature-card-detailed .status-indicators {
  padding-bottom: 32px;
}

.feature-card-full {
  grid-column: span 2;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-emoji {
  font-size: 32px;
}

.feature-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin: 0;
}

.feature-description {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Feature Benefits List */
.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.feature-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ion-text-color);
}

.benefit-icon {
  color: #25d366;
  font-weight: 700;
  font-size: 14px;
  min-width: 18px;
}

.feature-conclusion {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-text-color);
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-style: italic;
}

/* Feature Example */
.feature-example {
  background: var(--ion-color-light);
  border-left: 4px solid #25d366;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}

.example-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ion-color-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.feature-example code {
  font-size: 14px;
  background: transparent;
  padding: 0;
}

/* Attachment Tags Grid */
.attachment-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.attachment-tags-grid .attachment-tag {
  background: var(--ion-color-light);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ion-text-color);
}

.feature-use-cases-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-text-color);
  margin-bottom: 10px;
}

.feature-use-cases {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-use-cases li {
  font-size: 14px;
  color: var(--ion-color-medium);
  padding-left: 20px;
  position: relative;
}

.feature-use-cases li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 600;
}

/* Control Options */
.control-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.control-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ion-color-light);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ion-text-color);
  font-weight: 500;
}

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

/* Status Indicators */
.status-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  justify-content: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ion-background-color);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--ion-text-color);
  font-weight: 500;
}

.status-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}

.status-sent {
  background: #d4edda;
  color: #25d366;
}

.status-failed {
  background: #f8d7da;
  color: #e74c3c;
}

.status-progress {
  background: #fff3cd;
  color: #f39c12;
}

.status-retry {
  background: #d1ecf1;
  color: #17a2b8;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-full {
    grid-column: span 1;
  }
  
  .features-intro-card {
    padding: 24px;
  }
  
  .feature-card-detailed {
    padding: 24px;
  }
  
  .status-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  .status-indicator {
    justify-content: center;
  }
  
  .feature-card-full {
    grid-column: span 1;
  }
  
  .feature-card-image {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .control-options {
    flex-direction: column;
  }
  
  .attachment-tags-grid {
    flex-direction: column;
  }
  
  .feature-card-image {
    height: 160px;
  }
  
  .feature-card-detailed .feature-card-header,
  .feature-card-detailed .feature-description,
  .feature-card-detailed .feature-benefits,
  .feature-card-detailed .feature-conclusion,
  .feature-card-detailed .feature-example,
  .feature-card-detailed .attachment-tags-grid,
  .feature-card-detailed .feature-use-cases-label,
  .feature-card-detailed .feature-use-cases,
  .feature-card-detailed .control-options,
  .feature-card-detailed .status-indicators {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .feature-card-detailed .feature-card-header {
    padding-top: 20px;
  }
  
  .feature-card-detailed .feature-conclusion,
  .feature-card-detailed .feature-use-cases,
  .feature-card-detailed .status-indicators {
    padding-bottom: 24px;
  }
}

/* ============================================================================
   Premium Sender - How It Works Section Styles
   ============================================================================ */

/* Workflow Intro Card */
.workflow-intro-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.workflow-intro-card p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.7;
  margin-bottom: 8px;
}

.workflow-intro-card p:last-child {
  margin-bottom: 0;
}

/* Workflow Steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.workflow-step {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 24px;
  align-items: start;
}

.workflow-step:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.workflow-step-highlight {
  border-color: #25d366;
  background: linear-gradient(135deg, #f0fff4 0%, white 100%);
}

.workflow-step-number {
  width: 48px;
  height: 48px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 20px;
  border: 2px solid black;
}

.workflow-step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 16px;
}

.workflow-step-intro {
  font-size: 15px;
  color: var(--ion-color-medium);
  margin-bottom: 12px;
}

.workflow-step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.workflow-step-list li {
  font-size: 15px;
  color: var(--ion-text-color);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.workflow-step-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 600;
}

.workflow-step-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-color-medium);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}

.workflow-step-highlight-note {
  font-size: 15px;
  font-weight: 600;
  color: #25d366;
  padding: 12px 16px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 8px;
  margin-top: 12px;
}

.workflow-step-icon {
  font-size: 36px;
  text-align: center;
}

/* Workflow Columns Tags */
.workflow-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 16px;
}

.workflow-column-tag {
  background: var(--ion-color-light);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ion-text-color);
}

/* Workflow Message Example */
.workflow-message-example {
  background: var(--ion-color-light);
  border-left: 4px solid #25d366;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 12px 0 16px;
}

.workflow-message-example .example-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ion-color-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.workflow-message-example code {
  font-size: 14px;
  background: transparent;
  padding: 0;
}

/* Workflow Controls */
.workflow-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.workflow-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ion-color-light);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ion-text-color);
  font-weight: 500;
}

.control-emoji {
  font-size: 18px;
}

@media (max-width: 900px) {
  .workflow-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  
  .workflow-step-icon {
    display: none;
  }
  
  .workflow-intro-card {
    padding: 24px;
  }
  
  .workflow-step {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .workflow-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .workflow-step-number {
    margin: 0 auto 8px;
  }
  
  .workflow-step-list li {
    padding-left: 0;
    text-align: left;
  }
  
  .workflow-step-list li::before {
    display: none;
  }
  
  .workflow-columns {
    justify-content: center;
  }
  
  .workflow-controls {
    flex-direction: column;
  }
}

/* ============================================================================
   Premium Sender - Safety & Responsible Usage Section Styles
   ============================================================================ */

/* Safety Intro Card */
.safety-intro-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.safety-intro-card p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.7;
  margin-bottom: 8px;
}

.safety-intro-card p:last-child {
  margin-bottom: 0;
}

.safety-highlight {
  font-weight: 700 !important;
  color: #25d366 !important;
  font-size: 18px !important;
  margin-top: 12px !important;
}

/* Safety Grid */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Safety Card */
.safety-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.safety-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.safety-card-warning {
  border-color: #e74c3c;
}

.safety-card-best-practices {
  border-color: #25d366;
  background: linear-gradient(135deg, #f0fff4 0%, white 100%);
}

.safety-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.safety-emoji {
  font-size: 32px;
}

.safety-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin: 0;
}

.safety-description {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Safety Lists */
.safety-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.safety-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ion-text-color);
}

.safety-icon {
  font-size: 16px;
  min-width: 24px;
  text-align: center;
}

.safety-list-warning {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.safety-list-warning li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ion-text-color);
}

.warning-icon {
  color: #e74c3c;
  font-weight: 700;
  font-size: 16px;
  min-width: 24px;
  text-align: center;
}

.safety-list-practices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.safety-list-practices li {
  font-size: 15px;
  color: var(--ion-text-color);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.safety-list-practices li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.safety-note {
  font-size: 14px;
  color: var(--ion-color-medium);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.safety-highlight-text {
  font-size: 15px;
  font-weight: 600;
  color: #25d366;
  padding: 12px 16px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 8px;
  margin-top: 8px;
}

.safety-positive-text {
  font-size: 14px;
  font-weight: 600;
  color: #25d366;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.safety-conclusion {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-text-color);
  padding-top: 12px;
  border-top: 1px dashed rgba(37, 211, 102, 0.3);
  font-style: italic;
}

/* Control Ownership Card */
.control-ownership-card {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  border: 2px solid black;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  color: white;
}

.ownership-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.control-ownership-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ownership-intro {
  font-size: 17px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.ownership-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.ownership-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.ownership-conclusion {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .safety-grid {
    grid-template-columns: 1fr;
  }
  
  .safety-intro-card,
  .control-ownership-card {
    padding: 24px;
  }
  
  .safety-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .ownership-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .control-ownership-card h3 {
    font-size: 22px;
  }
}

/* ============================================================================
   Premium Sender - Comparison Section Styles
   ============================================================================ */

/* Comparison Intro Card */
.comparison-intro-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.comparison-intro-card p {
  font-size: 17px;
  color: var(--ion-text-color);
  line-height: 1.7;
  margin-bottom: 8px;
}

.comparison-intro-card p:last-child {
  margin-bottom: 0;
}

.comparison-highlight {
  font-weight: 700 !important;
  color: #25d366 !important;
  font-size: 18px !important;
  margin-top: 12px !important;
}

/* Comparison Block */
.comparison-block {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 24px;
  text-align: center;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  background: var(--ion-background-color);
  font-weight: 600;
  color: var(--ion-text-color);
}

.comparison-table th.highlight-col {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.comparison-table td.highlight-col {
  background: rgba(37, 211, 102, 0.05);
}

.comparison-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

.check-yes {
  color: #25d366;
  font-size: 18px;
}

.check-no {
  color: #e74c3c;
  font-size: 18px;
}

.check-limited {
  color: #f39c12;
  font-weight: 600;
  font-size: 14px;
}

.check-warning {
  color: #f39c12;
  font-weight: 600;
}

.check-good {
  color: #25d366;
  font-weight: 600;
}

.check-bad {
  color: #e74c3c;
  font-weight: 600;
}

.comparison-note {
  font-size: 14px;
  color: var(--ion-color-medium);
  text-align: center;
  font-style: italic;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.why-choose-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.why-choose-card-highlight {
  border-color: #25d366;
  background: linear-gradient(135deg, #f0fff4 0%, white 100%);
}

.why-choose-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.why-choose-icon {
  font-size: 32px;
}

.why-choose-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin: 0;
}

.why-choose-intro {
  font-size: 15px;
  color: var(--ion-color-medium);
  margin-bottom: 16px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.5;
}

.choose-icon {
  color: #25d366;
  font-weight: 600;
  min-width: 16px;
}

.why-choose-list-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-choose-list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.5;
}

.check-icon {
  color: #25d366;
  font-weight: 700;
  font-size: 16px;
  min-width: 18px;
}

.why-choose-conclusion {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-text-color);
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-style: italic;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-intro-card {
    padding: 24px;
  }
  
  .comparison-block {
    padding: 24px;
  }
  
  .why-choose-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .comparison-title {
    font-size: 18px;
  }
}

/* ============================================================================
   Premium Sender - Free Section Styles
   ============================================================================ */

/* Free Hero Card */
.free-hero-card {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  border: 2px solid black;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  color: white;
}

.free-hero-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.free-hero-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

.free-no-fees {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.no-fee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

.no-fee-icon {
  font-size: 16px;
}

.free-hero-conclusion {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.95;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Free Features Grid */
.free-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Free Feature Card */
.free-feature-card {
  background: white;
  border: 2px solid black;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #333;
  transform: translate(-2px, -2px);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.free-feature-card:hover {
  transform: translate(0px, 0px);
  box-shadow: 0 0 0 0 #333;
}

.free-feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.free-feature-icon {
  font-size: 32px;
}

.free-feature-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin: 0;
}

.free-feature-intro {
  font-size: 15px;
  color: var(--ion-color-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.free-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.free-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ion-text-color);
  line-height: 1.5;
}

.free-check {
  color: #25d366;
  font-weight: 700;
  font-size: 14px;
  min-width: 18px;
}

.free-feature-note {
  font-size: 14px;
  font-weight: 600;
  color: #25d366;
  padding-top: 16px;
  border-top: 1px dashed rgba(37, 211, 102, 0.3);
  font-style: italic;
}

.free-reason-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.free-reason-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ion-text-color);
  background: var(--ion-color-light);
  padding: 14px 18px;
  border-radius: 8px;
}

.reason-icon {
  font-size: 22px;
}

.free-feature-conclusion {
  font-size: 14px;
  font-weight: 600;
  color: var(--ion-text-color);
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-style: italic;
}

/* No Account Card */
.no-account-card {
  background: white;
  border: 2px solid #25d366;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 4px 4px 0px 0px #25d366;
  transform: translate(-2px, -2px);
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.no-account-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-account-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 24px;
}

.no-account-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.no-account-item {
  background: #fff5f5;
  border: 1px solid rgba(231, 76, 60, 0.3);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ion-text-color);
}

.no-account-conclusion {
  font-size: 16px;
  color: var(--ion-color-medium);
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .free-features-grid {
    grid-template-columns: 1fr;
  }
  
  .free-hero-card {
    padding: 32px 24px;
  }
  
  .free-feature-card {
    padding: 24px;
  }
  
  .no-account-card {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .free-no-fees {
    flex-direction: column;
    align-items: center;
  }
  
  .no-account-items {
    flex-direction: column;
    align-items: center;
  }
  
  .free-hero-card h3 {
    font-size: 22px;
  }
  
  .no-account-card h3 {
    font-size: 20px;
  }
}

/* ============================================================================
   Site Footer
   ============================================================================ */
.site-footer {
  background: var(--ion-text-color);
  color: #aaa;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-tagline {
  color: #25d366;
}

.footer-links h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #aaa;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #25d366;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* ============================================================================
   Utility Classes
   ============================================================================ */
.d-flex { display: flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-grid { display: grid; }
.d-none { display: none; }

.align-items-center { align-items: center; }
.align-items-flex-start { align-items: flex-start; }
.align-items-flex-end { align-items: flex-end; }

.justify-content-center { justify-content: center; }
.justify-content-flex-start { justify-content: flex-start; }
.justify-content-flex-end { justify-content: flex-end; }
.justify-content-space-between { justify-content: space-between; }

.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }

.m-auto { margin: auto; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.ms-10 { margin-left: 10px; }
.me-10 { margin-right: 10px; }

.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-white { background: white; }
.bg-light { background: var(--ion-color-light); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.cursor-pointer { cursor: pointer; }

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-checks {
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
  }
  
  .actions {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    min-height: auto;
    padding: 30px 0;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .wa-btn,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .wa-btn, 
  .btn-solid, 
  .btn-outline {
    font-size: 15px;
    padding: 10px 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .wa-btn,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand .brand {
    justify-content: center;
  }
}

/* ============================================================================
   Premium Sender - Visual Variety Enhancements
   ============================================================================ */

/* Quote Break */
.quote-break {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 60px 0;
}

.highlight-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  position: relative;
}

.highlight-quote p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.quote-mark {
  font-size: 80px;
  font-family: Georgia, serif;
  opacity: 0.3;
  line-height: 0;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.quote-mark-end {
  vertical-align: bottom;
  margin-left: 10px;
  margin-right: 0;
}

/* Stats Banner */
.stats-banner {
  background: #1a1a2e;
  padding: 50px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #25d366;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Workflow Hero (How It Works) */
.workflow-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  background: white;
  border: 2px solid black;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 6px 6px 0px 0px #333;
}

.workflow-hero-lead {
  font-size: 22px;
  font-weight: 600;
  color: var(--ion-text-color);
  line-height: 1.5;
  margin-bottom: 12px;
}

.workflow-hero-content p {
  font-size: 17px;
  color: var(--ion-color-medium);
  line-height: 1.7;
}

.workflow-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.quick-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #25d366;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #128c7e;
}

.quick-fact .fact-icon {
  font-size: 18px;
}

.workflow-hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.workflow-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Safety Commitment Banner */
.safety-commitment-banner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #25d366;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.1);
}

.commitment-shield {
  font-size: 80px;
  line-height: 1;
  flex-shrink: 0;
}

.commitment-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ion-text-color);
  margin-bottom: 16px;
}

.commitment-content p {
  font-size: 17px;
  color: var(--ion-color-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.commitment-promise {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid #25d366;
  border-radius: 12px;
  padding: 16px 24px;
}

.commitment-promise .promise-icon {
  font-size: 24px;
}

.commitment-promise .promise-text {
  font-size: 16px;
  font-weight: 700;
  color: #128c7e;
}

/* Free Section Celebration */
.section-free-hero {
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
  padding: 80px 0;
}

.free-celebration-header {
  text-align: center;
  margin-bottom: 50px;
}

.celebration-badge {
  display: inline-block;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.free-celebration-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--ion-text-color);
  margin-bottom: 16px;
}

.highlight-free {
  color: #25d366;
  position: relative;
}

.highlight-free::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.celebration-subtitle {
  font-size: 20px;
  color: var(--ion-color-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive for new elements */
@media (max-width: 900px) {
  .quote-break {
    padding: 50px 20px;
  }
  
  .highlight-quote p {
    font-size: 22px;
  }
  
  .quote-mark {
    font-size: 50px;
  }
  
  .stats-grid {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .workflow-hero {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .workflow-hero-image {
    order: -1;
  }
  
  .safety-commitment-banner {
    flex-direction: column;
    padding: 30px;
    text-align: center;
    align-items: center;
  }
  
  .commitment-shield {
    font-size: 60px;
  }
  
  .commitment-promise {
    flex-direction: column;
    text-align: center;
  }
  
  .free-celebration-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .highlight-quote p {
    font-size: 18px;
  }
  
  .quick-fact {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .stat-item {
    flex: 0 0 45%;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .free-celebration-header h2 {
    font-size: 26px;
  }
  
  .celebration-subtitle {
    font-size: 16px;
  }
}