/* ═══════════════════════════════════════════════════════
   medium-alternative.css  —  mav2- namespace
   Mirrors the India page structure; safe to load alongside
   content-posting-platform-india.css with zero class clash
═══════════════════════════════════════════════════════ */

/* ── ROOT TOKENS ── */
:root {
  --blue:   #3b82f6;
  --red:    #e63329;
  --green:  #16a34a;
  --ink:    #0f172a;
  --gray:   #64748b;
  --gray-light: #94a3b8;
  --bg:     #f8fafc;
  --white:  #ffffff;
  --border: #e2e8f0;
  --shadow: 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 32px rgba(0,0,0,.1);
  --orange: #f97316;
}

/* ── LAYOUT WRAPPER ── */
.mav2-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION BACKGROUNDS ── */
.mav2-section-bg {
  background: var(--bg, #f8fafc);
  padding: 80px 0;
}

.mav2-section-plain {
  background: #ffffff;
  padding: 80px 0;
}

/* ── HERO ── */
.mav2-hero {
  background: #ffffff;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.mav2-hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* Floating background icons */
.mav2-hero-float {
  position: absolute;
  border-radius: 14px;
  background: #eff6ff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mav2float 6s ease-in-out infinite;
  z-index: 0;
}

.mav2-fi-1 { top: 12%; left: 6%;  animation-delay: 0s; }
.mav2-fi-2 { top: 20%; right: 8%; animation-delay: 1.5s; }
.mav2-fi-3 { bottom: 22%; left: 5%; animation-delay: 3s; }
.mav2-fi-4 { bottom: 18%; right: 6%; animation-delay: 4.5s; }

@keyframes mav2float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Badge pill */
.mav2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 28px;
}

/* Headline */
.mav2-hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--ink, #0f172a);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.mav2-gradient-text {
  color: #3b82f6;
  -webkit-text-fill-color: #3b82f6;
}

/* Subtitle */
.mav2-hero-sub {
  font-size: 17px;
  color: var(--gray, #64748b);
  line-height: 1.75;
  margin: 0 auto 32px;
}

/* Hero buttons */
.mav2-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.mav2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(99, 102, 241, .35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.mav2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, .45);
  color: #fff;
}

.mav2-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--ink, #0f172a);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--border, #e2e8f0);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.mav2-btn-secondary:hover {
  border-color: #3b82f6;
  background: #eff6ff;
  color: var(--ink, #0f172a);
}

/* ── TRUST BAR ── */
.mav2-trust-bar {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border, #e2e8f0);
  border-bottom: 1px solid var(--border, #e2e8f0);
  margin-top: 40px;
}

.mav2-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mav2-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mav2-trust-num {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}

.mav2-trust-label {
  font-size: 12px;
  color: var(--gray, #64748b);
  font-weight: 500;
  margin-top: 2px;
}

/* ── SECTION HEADINGS ── */
.mav2-text-center {
  text-align: center;
  margin-bottom: 48px;
}

.mav2-section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--ink, #0f172a);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.mav2-section-sub {
  font-size: 16px;
  color: var(--gray, #64748b);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* ── TWO-COLUMN GRID ── */
.mav2-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ── FIVE-COLUMN GRID (How to Get Started) ── */
.mav2-five-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* ── PAIN CARDS ── */
.mav2-pain-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}

.mav2-pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
}

.mav2-pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ── REVIEW HIGHLIGHT (Section 1 quote) ── */
.mav2-review-highlight {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid #c7d2fe;
  border-radius: 20px;
  padding: 32px 36px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mav2-review-quote-icon {
  margin-bottom: 12px;
}

.mav2-review-text {
  font-size: 16px;
  color: var(--ink, #0f172a);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.mav2-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.mav2-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mav2-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #0f172a);
}

.mav2-review-source {
  font-size: 12px;
  color: var(--gray, #64748b);
}

/* ── COMPARISON TABLE ── */
.mav2-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(59,130,246,.15),
    0 8px 40px rgba(59,130,246,.12),
    0 2px 8px rgba(0,0,0,.06);
}

.mav2-compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
}

/* Header row */
.mav2-compare-table thead tr {
  background: #0f172a;
  color: #fff;
}

.mav2-compare-table th {
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  letter-spacing: .2px;
}

.mav2-compare-table th:first-child {
  width: 26%;
}

/* GuestCountry th — brand split gradient (blue → red, logo colours) */
.mav2-compare-table thead th:last-child {
  background: linear-gradient(135deg, #3b82f6 0%, #5b6cf7 50%, #e63329 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  position: relative;
}

/* Subtle shimmer line on the GC column header */
.mav2-compare-table thead th:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(255,255,255,.12) 60%, transparent 80%);
  pointer-events: none;
}

/* Body cells */
.mav2-compare-table td {
  padding: 15px 22px;
  font-size: 14px;
  color: var(--ink, #0f172a);
  border-bottom: 1px solid #e8eef6;
  vertical-align: middle;
}

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

/* Alternating rows */
.mav2-compare-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.mav2-compare-table tbody tr:nth-child(even) {
  background: #f6f9ff;
}

/* Hover highlight */
.mav2-compare-table tbody tr:hover td {
  background: #eef4ff;
  transition: background .15s;
}

/* GuestCountry column body cells — subtle blue-tinted highlight */
.mav2-gc-col {
  font-weight: 700;
  background: linear-gradient(180deg, #f0f7ff, #eaf2ff) !important;
  border-left: 2px solid #3b82f6;
  color: #1d4ed8 !important;
}

/* Keep hover consistent for GC col */
.mav2-compare-table tbody tr:hover .mav2-gc-col {
  background: #dbeafe !important;
}

.mav2-check-yes {
  color: #15803d;
  font-weight: 700;
}

.mav2-check-no {
  color: #94a3b8;
}

.mav2-check-partial {
  color: #f59e0b;
  font-weight: 600;
}

.mav2-table-note {
  margin-top: 28px;
  padding: 22px 28px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  font-size: 14px;
  color: var(--gray, #64748b);
  line-height: 1.75;
}

.mav2-table-note p { margin: 0; }

/* ── STANDOUT CARDS (Section 4) ── */
.mav2-standout-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}

.mav2-standout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

.mav2-standout-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink, #0f172a);
  margin-bottom: 12px;
  margin-top: 18px;
}

.mav2-standout-card p {
  font-size: 14px;
  color: var(--gray, #64748b);
  line-height: 1.75;
  margin: 0;
}

.mav2-standout-featured {
  border-color: #c7d2fe;
  background: linear-gradient(160deg, #fafafa, #f5f3ff);
}

.mav2-standout-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mav2-standout-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 16px;
}

.mav2-standout-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue, #3b82f6);
  text-decoration: none;
}

.mav2-standout-link:hover {
  text-decoration: underline;
}

/* Horizontal variant (bottom row) */
.mav2-standout-horiz {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.mav2-standout-horiz h3 {
  margin-top: 0;
}

.mav2-standout-icon-sm {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CONCEPT CARDS (Section 6 — Guest vs Content posting) ── */
.mav2-concept-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.mav2-concept-bad { border-top: 3px solid #ef4444; }
.mav2-concept-good { border-top: 3px solid #3b82f6; }

.mav2-concept-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.mav2-concept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mav2-concept-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink, #0f172a);
  line-height: 1.5;
}

/* Quote block */
.mav2-quote-block {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border-radius: 20px;
  padding: 32px 36px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mav2-quote-block p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── REVIEW CARDS (Section 8) ── */
.mav2-review-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mav2-review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

/* reuse .mav2-review-text / .mav2-review-author / .mav2-review-avatar already declared above */

/* ── PRICING (Section 9) ── */
.mav2-pricing-section {
  padding: 80px 0;
}

.mav2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.mav2-price-card {
  background: var(--white, #fff);
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}

.mav2-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}

.mav2-popular {
  border-color: #f59e0b;
  box-shadow: 0 4px 24px rgba(245,158,11,.2);
}

.mav2-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.mav2-price-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray, #64748b);
  margin-bottom: 8px;
}

.mav2-price-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.mav2-price-num sup {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.mav2-price-num small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray, #64748b);
}

.mav2-price-desc {
  font-size: 13px;
  color: var(--gray, #64748b);
  line-height: 1.65;
  margin-bottom: 0;
}

.mav2-price-divider {
  border: none;
  border-top: 1px solid var(--border, #e2e8f0);
  margin: 20px 0;
}

.mav2-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mav2-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink, #0f172a);
  line-height: 1.5;
}

.mav2-price-features .mav2-off {
  color: var(--gray, #64748b);
}

.mav2-ck { color: #16a34a; font-weight: 700; }
.mav2-cx { color: #94a3b8; }

.mav2-btn-price {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
  margin-bottom: 10px;
}

.mav2-btn-price:hover { transform: translateY(-1px); }

.mav2-btn-price.mav2-dark {
  background: var(--ink, #0f172a);
  color: #fff;
}

.mav2-btn-price.mav2-yellow {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
}

.mav2-btn-price-sub {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border, #e2e8f0);
  background: transparent;
  color: var(--gray, #64748b);
  transition: border-color .2s;
}

.mav2-btn-price-sub:hover { border-color: #3b82f6; }

/* ── FAQ (Section 10) ── */
.mav2-faq-section {
  padding: 80px 0;
}

.mav2-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mav2-faq-item {
  background: var(--white, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}

.mav2-faq-item.mav2-open {
  border-color: #bfdbfe;
}

.mav2-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink, #0f172a);
  line-height: 1.4;
  transition: background .15s;
}

.mav2-faq-question:hover {
  background: #f8fafc;
}

.mav2-faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue, #3b82f6);
  flex-shrink: 0;
  transition: transform .25s;
}

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

.mav2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.mav2-faq-item.mav2-open .mav2-faq-answer {
  max-height: 600px;
}

.mav2-faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--gray, #64748b);
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--border, #e2e8f0);
  padding-top: 18px;
}

/* ── FINAL CTA (Section 11) ── */
.mav2-india-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mav2-india-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, .18);
  border-radius: 50%;
  filter: blur(80px);
  top: -120px;
  left: -100px;
}

.mav2-india-cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, .12);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -80px;
  right: -60px;
}

.mav2-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.mav2-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99, 102, 241, .4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.mav2-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, .5);
  color: #fff;
}

.mav2-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.mav2-cta-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
  .mav2-two-col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .mav2-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }
}

@media (max-width: 767px) {
  .mav2-section-bg,
  .mav2-section-plain,
  .mav2-pricing-section,
  .mav2-faq-section {
    padding: 56px 0;
  }

  .mav2-india-cta {
    padding: 72px 0;
  }

  .mav2-trust-bar {
    gap: 16px;
  }

  .mav2-trust-num {
    font-size: 1.3rem;
  }

  .mav2-hero-h1 {
    font-size: 2rem;
  }

  .mav2-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .mav2-standout-horiz {
    flex-direction: column;
  }

  .mav2-five-col {
    grid-template-columns: 1fr 1fr !important;
  }

  .mav2-review-highlight {
    padding: 24px 20px;
  }

  .mav2-quote-block {
    padding: 24px 20px;
  }

  .mav2-fi-1, .mav2-fi-2, .mav2-fi-3, .mav2-fi-4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .mav2-five-col {
    grid-template-columns: 1fr !important;
  }
}