:root {
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFBFC;
  --bg-light: #F5F9FF;
  --bg-dark: #0A1628;
  --bg-darker: #050B15;

  --accent: #0C8CE9;
  --accent-hover: #0A7AD4;
  --accent-light: #E8F3FC;
  --accent-glow: rgba(12,140,233,0.15);
  /* Darker accent variant for button text/fills to pass WCAG AA (4.5:1) on white */
  --accent-dark: #0770B5;
  --accent-dark-hover: #055E9C;

  --text-dark: #0A1628;
  --text-body: #3C4758;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.85);
  --text-on-dark-subtle: rgba(255,255,255,0.72);

  --border: #E5E7EB;
  --border-light: #F0F2F5;
  --border-dark: rgba(255,255,255,0.1);

  --radius-btn: 8px;
  --radius-card: 16px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.12);
  --shadow-xl: 0 32px 80px rgba(10,22,40,0.18);
  --shadow-glow: 0 0 40px rgba(12,140,233,0.2);

  --level-beginner: #29CC57;
  --level-autonomous: #0C8CE9;
  --level-expert: #F59E0B;
  /* Professional color aligned on Chart Flow (red, not purple) */
  --level-pro: #EF4444;
}

/* ===========================================
   SCOPED RESET — .offer-page wrapper
   Only applies inside .offer-page, does not affect site header/footer
   =========================================== */
.offer-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1;
  background: var(--bg-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
.offer-page *, .offer-page *::before, .offer-page *::after { box-sizing: border-box; }
.offer-page img, .offer-page svg { display: block; max-width: 100%; }
.offer-page a { text-decoration: none; color: inherit; }
.offer-page button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  .offer-page *, .offer-page *::before, .offer-page *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================
   BUTTONS
   =========================================== */
.offer-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  height: 52px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.1px;
  white-space: nowrap;
  min-height: 44px;
  text-align: center;
}
.offer-page .btn-primary {
  background: var(--accent-dark);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(7,112,181,0.4);
}
.offer-page .btn-primary:hover {
  background: var(--accent-dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7,112,181,0.5);
}
.offer-page .btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.offer-page .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.offer-page .btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.offer-page .btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.offer-page .btn-large {
  height: 58px;
  padding: 0 36px;
  font-size: 16px;
}
.offer-page .btn-block { width: 100%; }
.offer-page .btn svg { width: 18px; height: 18px; }

/* ===========================================
   HERO -- CINEMATIC SPLIT
   =========================================== */
.offer-page .hero {
  position: relative;
  background: var(--bg-darker);
  color: var(--text-on-dark);
  padding: 112px 0 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.offer-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/testimage.jpg') center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}
.offer-page .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    .offer-page linear-gradient(90deg, .offer-page var(--bg-darker) 0%, .offer-page rgba(5, 11, 21, 0.88) 35%, .offer-page rgba(5, 11, 21, 0.55) 65%, .offer-page rgba(5, 11, 21, 0.3) 100%),
    linear-gradient(180deg, rgba(5,11,21,0.6) 0%, transparent 30%, transparent 70%, rgba(5,11,21,0.95) 100%);
  z-index: 1;
}
.offer-page .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.offer-page .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12,140,233,0.15);
  border: 1px solid rgba(12,140,233,0.3);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.offer-page .hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.offer-page .hero-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
  color: var(--text-on-dark);
  text-align: left !important; /* override site header-not-connected h1 rule */
}
.offer-page .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.offer-page .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: rgba(12,140,233,0.18);
  z-index: -1;
  border-radius: 2px;
}
.offer-page .hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
  font-weight: 400;
}
.offer-page .hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.offer-page .hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-on-dark-subtle);
  font-size: 13px;
  flex-wrap: wrap;
}
.offer-page .hero-trust-item { display: flex; align-items: center; gap: 6px; }
.offer-page .hero-trust-item svg { width: 14px; height: 14px; color: #29CC57; }

/* Hero visual side */
.offer-page .hero-visual {
  position: relative;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.offer-page .hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/testimage.jpg') center/cover no-repeat;
}
.offer-page .hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,21,0.05) 0%, rgba(5,11,21,0.55) 100%);
}
.offer-page .hero-visual-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  z-index: 2;
}
.offer-page .hero-visual-card-thumb {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-page .hero-visual-card-thumb svg { width: 24px; height: 24px; stroke: #FFFFFF; fill: none; stroke-width: 2; }
.offer-page .hero-visual-card-content { flex: 1; min-width: 0; }
.offer-page .hero-visual-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.offer-page .hero-visual-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 2px;
}
.offer-page .hero-visual-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.offer-page .hero-visual-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer-page .hero-visual-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #29CC57;
  border-radius: 50%;
  box-shadow: 0 0 8px #29CC57;
}

/* ===========================================
   TRUST STRIP
   =========================================== */
.offer-page .trust-strip {
  background: var(--bg-off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}
.offer-page .trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.offer-page .trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
}
.offer-page .trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-page .trust-icon svg { width: 22px; height: 22px; }
.offer-page .trust-text {
  display: flex;
  flex-direction: column;
}
.offer-page .trust-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}
.offer-page .trust-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ===========================================
   SECTIONS
   =========================================== */
.offer-page .section { padding: 100px 0; }
.offer-page .section-light { background: var(--bg-white); }
.offer-page .section-tinted { background: var(--bg-light); }
.offer-page .section-off { background: var(--bg-off-white); }
.offer-page .section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
}
.offer-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.offer-page .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 16px;
}
.offer-page .section-title {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.offer-page .section-dark .section-title { color: var(--text-on-dark); }
.offer-page .section-sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 640px;
}
.offer-page .section-dark .section-sub { color: var(--text-on-dark-muted); }
.offer-page .section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.offer-page .section-head .section-sub { margin-left: auto; margin-right: auto; }

.offer-page .key-phrase {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--text-dark);
  font-style: italic;
  letter-spacing: -0.3px;
  max-width: 720px;
  margin: 48px auto 0;
  line-height: 1.4;
}
.offer-page .key-phrase strong {
  color: var(--accent);
  font-weight: 800;
}

/* ===========================================
   ALTERNATING SECTION
   =========================================== */
.offer-page .alt-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.offer-page .alt-text-block { max-width: 540px; }
.offer-page .alt-list {
  list-style: none;
  margin-top: 28px;
}
.offer-page .alt-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}
.offer-page .section-dark .alt-list li { color: var(--text-on-dark-muted); }
.offer-page .alt-list-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.offer-page .section-dark .alt-list-check {
  background: rgba(12,140,233,0.2);
  color: var(--accent);
}
.offer-page .alt-list-check svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 3; fill: none; }
.offer-page .alt-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.offer-page .alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-page .section-dark.cinematic-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/Canyon-de-Estat-2.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}
.offer-page .section-dark.cinematic-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10,22,40,0.85) 50%, var(--bg-dark) 100%);
  z-index: 1;
}
.offer-page .section-dark.cinematic-bg .container {
  position: relative;
  z-index: 2;
}

/* ===========================================
   FEATURE CARDS GRID
   =========================================== */
.offer-page .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offer-page .feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.offer-page .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.offer-page .feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.offer-page .feature-icon svg { width: 28px; height: 28px; }
.offer-page .feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.offer-page .feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================================
   PRICING
   =========================================== */
.offer-page .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.offer-page .pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.offer-page .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offer-page .pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(12,140,233,0.08), 0 32px 80px rgba(12,140,233,0.2);
  transform: scale(1.02);
}
.offer-page .pricing-card.featured.attention {
  animation: gentleAttention 1.5s ease-out;
}
@keyframes gentleAttention {
  0% { transform: scale(1.02); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(12,140,233,0.12), 0 40px 100px rgba(12,140,233,0.3); }
  100% { transform: scale(1.02); }
}
.offer-page .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(12,140,233,0.4);
}
.offer-page .pricing-plan {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.offer-page .pricing-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.offer-page .pricing-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -2px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.offer-page .pricing-price .currency {
  font-size: 28px;
  font-weight: 700;
}
.offer-page .pricing-price .period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.offer-page .pricing-savings {
  display: inline-block;
  background: rgba(41,204,87,0.12);
  color: #29CC57;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}
.offer-page .pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 24px;
  min-height: 56px;
}
.offer-page .pricing-price-row .pricing-price,
.offer-page .pricing-price-row .pricing-savings {
  margin-bottom: 0;
}
.offer-page .pricing-price-row .pricing-savings {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 11px;
  padding: 5px 10px;
}
.offer-page .pricing-positioning {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}
.offer-page .pricing-features {
  list-style: none;
  margin: 12px 0 32px;
  flex: 1;
}
.offer-page .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.4;
}
.offer-page .pricing-features svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  margin-top: 1px;
}

/* ===========================================
   CATALOG CAROUSEL
   =========================================== */
.offer-page .catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.offer-page .catalog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.offer-page .catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.offer-page .catalog-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.offer-page .catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-page .catalog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.offer-page .catalog-card-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
}
.offer-page .catalog-card-pill.beginner { color: var(--level-beginner); }
.offer-page .catalog-card-pill.autonomous { color: var(--level-autonomous); }
.offer-page .catalog-card-pill.expert { color: var(--level-expert); }
.offer-page .catalog-card-pill.pro { color: var(--level-pro); }
.offer-page .catalog-card-body {
  padding: 16px 24px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-page .catalog-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.offer-page .catalog-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.offer-page .catalog-card-topics {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ===========================================
   TEAM
   =========================================== */
.offer-page .team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.offer-page .team-card { text-align: center; }
.offer-page .team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid var(--border-light);
  transition: all 0.3s ease;
}
.offer-page .team-card.featured .team-photo {
  border: 4px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(12,140,233,0.15), var(--shadow-md);
  transform: scale(1.08);
}
.offer-page .team-card:hover .team-photo {
  transform: scale(1.05);
  border-color: var(--accent);
}
.offer-page .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-page .team-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.offer-page .team-role {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.offer-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-page .testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.3s ease;
}
.offer-page .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offer-page .testimonial-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  margin-bottom: 16px;
}
.offer-page .testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.offer-page .testimonial-quote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.offer-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-page .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.offer-page .testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.offer-page .testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================================
   FAQ
   =========================================== */
.offer-page .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.offer-page .faq-item {
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.offer-page .faq-item.open {
  border-bottom-color: var(--accent);
}
.offer-page .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  letter-spacing: -0.2px;
  font-family: inherit;
}
.offer-page .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 700;
}
.offer-page .faq-item.open .faq-icon {
  background: var(--accent);
  color: #FFFFFF;
  transform: rotate(45deg);
}
.offer-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.offer-page .faq-answer-inner {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===========================================
   FINAL CTA -- CINEMATIC FULL WIDTH
   =========================================== */
.offer-page .final-cta {
  position: relative;
  padding: 140px 0;
  color: var(--text-on-dark);
  overflow: hidden;
  text-align: center;
}
.offer-page .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/joinus.webp') center/cover no-repeat;
  z-index: 0;
}
.offer-page .final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,11,21,0.92) 0%, rgba(10,22,40,0.85) 50%, rgba(12,140,233,0.5) 100%);
  z-index: 1;
}
.offer-page .final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.offer-page .final-cta-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(12,140,233,0.15);
  border: 1px solid rgba(12,140,233,0.3);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.offer-page .final-cta h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.offer-page .final-cta-sub {
  font-size: 18px;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.offer-page .final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.offer-page .final-cta .btn-primary {
  background: #FFFFFF;
  color: var(--accent-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.offer-page .final-cta .btn-primary:hover {
  background: var(--accent-light);
  color: var(--accent-dark-hover);
}
.offer-page .final-cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-on-dark-subtle);
}
.offer-page .final-cta-trust-item { display: flex; align-items: center; gap: 6px; }
.offer-page .final-cta-trust-item svg { width: 16px; height: 16px; color: #29CC57; }

/* ===========================================
   STICKY MOBILE CTA
   =========================================== */
/* V3.1 sticky CTA: sober + lighter height + hidden by default (revealed after pricing) */
.offer-page .sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 9998;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-page .sticky-cta.sticky-visible {
  transform: translateY(0);
}
.offer-page .sticky-cta-info {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}
.offer-page .sticky-cta-info strong {
  display: block;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1px;
}
.offer-page .sticky-cta .btn {
  height: 40px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  white-space: nowrap;
}
/* V3.2 Rod feedback: sticky CTA en secondaire (fond blanc, bordure bleue) pour alleger la pression visuelle */
.offer-page .sticky-cta .btn.btn-primary {
  background: #ffffff !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  box-shadow: none !important;
}
.offer-page .sticky-cta .btn.btn-primary:hover {
  background: rgba(12,140,233,0.06) !important;
  color: var(--accent-dark-hover) !important;
  border-color: var(--accent-dark-hover) !important;
  transform: none !important;
}
@media (max-width: 900px) {
  .offer-page .sticky-cta { display: flex; }
  /* Only add body padding when sticky is actually visible */
  body:has(.offer-page .sticky-cta.sticky-visible) { padding-bottom: 64px; }
}

/* Footer styles handled by site layout (app-not-connected.blade.php) */

.offer-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.offer-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
  .offer-page .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-page .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-page .team-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-page .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .offer-page .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .offer-page .nav-links { display: none; }
  /* V3.1: hero mobile allégé — padding cohérent avec .section (56px) */
  .offer-page .hero { padding: 56px 0 32px; min-height: auto; }
  /* V3.1: pricing positioning text — reduce spacing with features below on mobile */
  .offer-page .pricing-price-row { margin-bottom: 12px; }
  .offer-page .pricing-positioning { margin-bottom: 4px; }
  .offer-page .pricing-features { margin: 8px 0 24px; }
  /* V3.1: level card padding — more top breathing, tight bottom on mobile */
  .offer-page .catalog-card-body { padding: 20px 20px 14px; }
  /* Rod 08/05/2026 — mobile: drop big photos, replace with colored top liseré (matching pill color).
     Keep title + meta + desc only. Same logic as lead magnet level cards. */
  .offer-page .catalog-card { border-top: 4px solid var(--border); }
  .offer-page .catalog-card-image { display: none; }
  .offer-page .catalog-card-pill { position: static; margin: 16px 20px 0 20px; display: inline-block; }
  .offer-page .catalog-card-body { padding: 8px 20px 14px; }
  /* Color the top liseré per level */
  .offer-page .catalog-card:nth-child(1) { border-top-color: var(--level-beginner); }
  .offer-page .catalog-card:nth-child(2) { border-top-color: var(--level-autonomous); }
  .offer-page .catalog-card:nth-child(3) { border-top-color: var(--level-expert); }
  .offer-page .catalog-card:nth-child(4) { border-top-color: var(--level-pro); }
  .offer-page .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  /* V3.2 Rod feedback: alleger H1 + masquer hero-label sur mobile pour que tout le hero tienne dans l'ecran */
  .offer-page .hero-title { font-size: clamp(22px, 6.2vw, 30px); margin-bottom: 12px; letter-spacing: -0.6px; line-height: 1.15; }
  .offer-page .hero-sub { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
  .offer-page .hero-actions { margin-bottom: 16px; gap: 10px; }
  .offer-page .hero-trust { font-size: 12px; gap: 12px; }
  .offer-page .hero-label { display: none; }
  /* V3.2 Rod feedback: "COL structures." passe a la ligne sous "Free content shows." sur mobile */
  .offer-page .key-phrase strong { display: block; }
  .offer-page .hero-visual { height: 360px; order: -1; }
  .offer-page .alt-section { grid-template-columns: 1fr; gap: 48px; }
  .offer-page .alt-image { aspect-ratio: 4/3; max-width: 100%; }
  .offer-page .section { padding: 56px 0; }
  .offer-page .pricing-grid { grid-template-columns: 1fr; gap: 24px; max-width: 480px; }
  .offer-page .pricing-card.featured { transform: none; }
  .offer-page .pricing-card { padding: 36px 28px; }
  .offer-page .trust-inner { gap: 20px; }
  .offer-page .trust-item { min-width: 140px; flex-basis: 45%; }
  .offer-page .final-cta { padding: 100px 0; }
}
@media (max-width: 600px) {
  .offer-page .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .offer-page .catalog-grid { grid-template-columns: 1fr; }
  .offer-page .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .offer-page .hero-actions .btn { width: 100%; }
  .offer-page .nav-inner { padding: 0 20px; }
  .offer-page .container { padding: 0 20px; }
  .offer-page .pricing-price { font-size: 44px; }

  /* V3.3 Rod feedback: feature cards — icone + titre sur la meme ligne, description en dessous, pour reduire la hauteur sur mobile */
  .offer-page .feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "desc desc";
    gap: 4px 14px;
    align-items: center;
    padding: 20px 20px;
  }
  .offer-page .feature-icon {
    grid-area: icon;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .offer-page .feature-icon svg { width: 22px; height: 22px; }
  .offer-page .feature-title {
    grid-area: title;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.25;
  }
  .offer-page .feature-desc {
    grid-area: desc;
    margin-top: 8px;
  }
}

/* ===========================================
   HERO VIDEO PLAYER (Vimeo iframe)
   =========================================== */
.offer-page .hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  background: #000;
}
.offer-page .hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 960px) {
  /* V3.1: hero video plus compact sur mobile — priorité au titre + CTA */
  .offer-page .hero-video { order: -1; max-height: 40vh; aspect-ratio: 16 / 9; border-radius: 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
}
@media (max-width: 600px) {
  .offer-page .hero-video { max-height: 32vh; }
}

/* ===========================================
   TRUSTPILOT SECTION
   =========================================== */
.offer-page .trustpilot-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.offer-page .trustpilot-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.offer-page .trustpilot-stars {
  display: flex;
  gap: 2px;
}
.offer-page .trustpilot-star {
  width: 22px;
  height: 22px;
  background: #00B67A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-page .trustpilot-star svg { width: 14px; height: 14px; fill: #FFFFFF; }
.offer-page .trustpilot-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.offer-page .trustpilot-score strong { font-size: 16px; }
.offer-page .trustpilot-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.offer-page .trustpilot-brand-mark {
  width: 18px;
  height: 18px;
  background: #00B67A;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offer-page .trustpilot-brand-mark svg { width: 12px; height: 12px; fill: #FFFFFF; }
.offer-page .trustpilot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
  justify-content: center;
}
.offer-page .trustpilot-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-page .trustpilot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offer-page .trustpilot-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.offer-page .trustpilot-card-stars { display: flex; gap: 2px; }
.offer-page .trustpilot-card-stars .trustpilot-star { width: 20px; height: 20px; }
.offer-page .trustpilot-card-stars .trustpilot-star svg { width: 12px; height: 12px; }
.offer-page .trustpilot-card-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.offer-page .trustpilot-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.offer-page .trustpilot-card-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}
.offer-page .trustpilot-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.offer-page .trustpilot-card-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.offer-page .trustpilot-card-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.offer-page .trustpilot-card-author-verified {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.offer-page .trustpilot-card-author-verified svg { width: 12px; height: 12px; stroke: #00B67A; fill: none; stroke-width: 3; }
.offer-page .trustpilot-cta-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.offer-page .trustpilot-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease;
}
.offer-page .trustpilot-cta-link:hover { color: var(--accent); }
@media (max-width: 960px) {
  .offer-page .trustpilot-grid { grid-template-columns: 1fr; gap: 20px; }
}
