/**
 * Pro Landing Page Styles
 * Specific styles for the merchant landing page
 */

/* ============================================================
   PRO LANDING PAGE LAYOUT
   ============================================================ */

#page-pro {
  background: var(--white);
}

/* ---- Pro Hero Section ---- */
.pro-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink) 55%, #1a3844 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 72px;
  gap: 40px;
}

.pro-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 90% -10%, rgba(43, 137, 138, .22) 0%, transparent 55%),
              radial-gradient(ellipse 40% 60% at 10% 110%, rgba(240, 168, 104, .1) 0%, transparent 55%);
}

.pro-hero-grid-lines {
  display: none;
}

.pro-hero-left {
  position: relative;
  z-index: 2;
}


.pro-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(43, 137, 138, .18);
  border: 1px solid rgba(43, 137, 138, .35);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
  box-shadow: inset 2px 2px 6px rgba(110, 195, 197, .3),
              inset -2px -2px 6px rgba(20, 64, 65, .3),
              0 6px 20px rgba(16, 35, 55, .4);
}

.pro-h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.pro-h1 .hl {
  color: var(--azure);
}

.pro-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 480px;
  font-weight: 500;
}

.pro-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pro-stat {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: inset 3px 3px 9px rgba(255, 255, 255, .16),
              inset -3px -3px 9px rgba(255, 255, 255, .03),
              0 8px 28px rgba(16, 35, 55, .45);
}

.ps-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--azure);
}

.ps-lbl {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 4px;
  font-weight: 600;
}

.pro-hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Comparison Card */
.comp-card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  box-shadow: inset 3px 3px 9px rgba(255, 255, 255, .17),
              inset -3px -3px 9px rgba(255, 255, 255, .03),
              0 12px 36px rgba(16, 35, 55, .5);
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comp-col {
  padding: 24px 28px;
  font-size: 21px;
  font-weight: 700;
}

.comp-col.bad {
  color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
}

.comp-col.good {
  color: var(--azure);
  background: rgba(43, 137, 138, .12);
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid rgba(255, 255, 255, .05);
}

.comp-cell {
  padding: 21px 28px;
  font-size: 18px;
  font-family: 'Nunito Sans', sans-serif;
}

.comp-cell.bad {
  color: rgba(255, 255, 255, .35);
}

.comp-cell.bad::before {
  content: '✗  ';
  color: var(--warm);
}

.comp-cell.good {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

.comp-cell.good::before {
  content: '✓  ';
  color: var(--azure);
}

/* ---- Pro How Section ---- */
.pro-how {
  padding: 96px 72px;
  background: var(--sky);
}

.pro-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.phow-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 26px;
  border: 1.5px solid rgba(43, 137, 138, .1);
  transition: all .25s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--clay-pure);
}

.phow-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--teal));
}

.phow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--clay-pure-hover);
}

.phow-num {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--azure));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.phow-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

.phow-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.phow-desc {
  font-size: 15px;
  color: var(--txt2);
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.75;
  font-weight: 500;
}

@media (max-width: 960px) {
  .pro-hero {
    grid-template-columns: 1fr;
    padding: 40px 28px 60px;
  }

  .pro-how,
  .reviews-section,
  .support-section {
    padding: 64px 28px;
  }

  .pro-how-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .phow-card {
    padding: 24px 20px;
  }
}

/* ============================================================
   SUPPORT & FAQ SECTION
   ============================================================ */

.support-section {
  padding: 96px 72px;
  background: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 80px 0;
}

.support-card {
  background: linear-gradient(135deg, rgba(43, 137, 138, .08) 0%, rgba(43, 137, 138, .02) 100%);
  border: 2px solid rgba(43, 137, 138, .15);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all .3s;
}

.support-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 36px rgba(43, 137, 138, .12);
  transform: translateY(-4px);
}

.sc-icon {
  font-size: 56px;
  margin-bottom: 18px;
  display: block;
}

.sc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.sc-desc {
  font-size: 15px;
  color: var(--txt2);
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.7;
  font-weight: 500;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(43, 137, 138, .04);
  border: 2px solid rgba(43, 137, 138, .08);
  border-radius: 24px;
  padding: 40px;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(43, 137, 138, .1);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  color: var(--txt2);
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.75;
  font-weight: 500;
}

/* ============================================================
   CTA BUTTONS - ACCESSIBILITÉ
   ============================================================ */

.price-cta {
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 14px !important;
  cursor: pointer;
  transition: all .3s !important;
  border: none;
  display: inline-block;
}

.price-cta {
  background: linear-gradient(135deg, var(--azure), #1e9fbf) !important;
  color: white !important;
  width: 100%;
  box-shadow: 0 8px 20px rgba(5, 135, 154, .25);
}

.price-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(5, 135, 154, .35) !important;
}

/* ============================================================
   PRICING - LISIBILITÉ
   ============================================================ */

.price-card {
  padding: 40px !important;
}

.price-period {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.price-amount {
  font-size: 42px !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

.price-amount small {
  font-size: 18px !important;
  font-weight: 600 !important;
  opacity: 0.75;
}

.price-tagline {
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
  font-weight: 500 !important;
}

.price-feats {
  margin-bottom: 32px !important;
}

.pf-item {
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin-bottom: 12px !important;
  font-weight: 500 !important;
}

.pf-check {
  font-weight: 900 !important;
  margin-right: 8px;
}

.launch-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(5, 135, 154, .1) 0%, rgba(252, 107, 77, .05) 100%);
  border: 2px solid rgba(5, 135, 154, .2);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lb-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.lb-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.lb-desc {
  font-size: 16px;
  color: var(--txt2);
  line-height: 1.75;
  font-weight: 500;
}

@media (max-width: 960px) {
  .launch-banner {
    flex-direction: column;
    gap: 12px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 24px;
  }

  .price-cta {
    font-size: 13px !important;
    padding: 12px 22px !important;
  }
}
