/* ========================================
   HOMEPAGE NEW SECTIONS - Feb 11
   Extracted from mockup.html
   DO NOT merge with style.css
   ======================================== */

/* ========================================
   SECTION CONTAINER & LABELS
   ======================================== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

/* Section Label with Logo Icon (brand logo instead of +) */
.section-label-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF0000;
  margin-bottom: 2rem;
}

/* ========================================
   SECTION ALIGNMENT SYSTEM
   Alternating: right, left, right, left...
   ======================================== */

/* Right-aligned section content */
.section-align-right .section-label-new {
  justify-content: flex-end;
}

.section-align-right .section-title-new {
  margin-left: auto;
  text-align: right;
}

.section-align-right .section-content {
  margin-left: auto;
  text-align: right;
}

/* Left-aligned section content (default, but explicit) */
.section-align-left .section-label-new {
  justify-content: flex-start;
}

.section-align-left .section-title-new {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.section-align-left .section-content {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* Ensure all child content elements also left-align */
.section-align-left .section-container {
  text-align: left;
}

/* Left-align lists, paragraphs, and other content within left-aligned sections */
.section-align-left p,
.section-align-left ul,
.section-align-left ol,
.section-align-left .editorial-list,
.section-align-left .feed-list,
.section-align-left .callout-container,
.section-align-left .callout-points,
.section-align-left .implications-list {
  margin-left: 0;
  margin-right: auto;
}

/* Rise animation for section titles */
.anim-rise {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.anim-rise.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* #9 - Section Logo Icon - match nav logo size (34px desktop) */
.section-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
}

.section-title-new {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-midnight);
  line-height: 1.2;
  margin-bottom: 3rem;
  max-width: 900px;
}

/* Pan animation - slides in from RIGHT to left */
.anim-pan-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.anim-pan-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Pan animation - slides in from LEFT to right */
.anim-pan-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.anim-pan-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   THE PROBLEM SECTION - LEFT ALIGNED (before Opportunity)
   ======================================== */
.problem-section {
  background: #f1f5f9;
}

.problem-content {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
}

.problem-content p {
  margin-bottom: 1.5rem;
}

.problem-content p:last-child {
  margin-bottom: 0;
}

.problem-pullquote {
  border-left: 4px solid #FF0000;
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-midnight);
  font-weight: 600;
}

.problem-answer {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
}

/* ========================================
   OPPORTUNITY SECTION - RIGHT ALIGNED (1st section)
   ======================================== */
.opportunity-section {
  background: #ffffff;
}

.opportunity-section .section-title-new {
  margin-bottom: 1.5rem;
}

.opportunity-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}

.opportunity-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  text-align: right;
}

.opportunity-text p {
  margin-bottom: 1.5rem;
}

.opportunity-text p:last-child {
  margin-bottom: 0;
}

/* Stats Column - Left side */
.opportunity-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Stat cards - subtle 3D with box-shadow, same size */
.opportunity-stat {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #f1f5f9;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 -1px 0 rgba(255, 255, 255, 0.8) inset;
  min-width: 280px;
}

.stat-highlight {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FF0000;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-highlight-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-midnight);
  opacity: 0.75;
  line-height: 1.4;
}

/* ========================================
   WHAT WE OFFER SECTION - LEFT ALIGNED (2nd section)
   ======================================== */
.offer-section {
  background: #f1f5f9;
}

.offer-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 4rem;
  text-align: left;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

/* Single card layout - centered */
.offer-grid--single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card--wide {
  text-align: center;
}

.offer-card--wide .offer-description {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Single Offer Card - Revised Option A */
.offer-single-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(71, 85, 105, 0.15);
  box-shadow: 0 4px 8px rgba(54, 69, 79, 0.15), 0 12px 30px rgba(54, 69, 79, 0.2);
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: left;
}

.offer-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a1628;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.offer-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.offer-benefits-list li {
  font-size: 1rem;
  color: #475569;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.offer-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: #FF0000;
  border-radius: 50%;
}

.offer-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 1.75rem 0;
}

.offer-addon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.offer-addon-header .offer-section-title {
  margin-bottom: 0;
}

.offer-addon-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FF0000;
  background: rgba(255, 0, 0, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

.offer-addon-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.offer-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 1.5rem;
}

.offer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #FF0000;
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-top: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

.offer-cta-button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: all 0.3s ease;
}

.offer-cta-button:hover {
  background: #ffffff;
  color: #FF0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
}

.offer-cta-button:hover svg {
  stroke: #FF0000;
}

@media (max-width: 600px) {
  .offer-single-card {
    padding: 2rem 1.5rem;
  }

  .offer-addon-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.offer-card {
  border-radius: 24px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Membership Card - White with 3D shadow */
.offer-card--membership {
  background: #ffffff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 -1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* Deal-Room Card - White with 3D shadow */
.offer-card--dealroom {
  background: #ffffff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 -1px 0 rgba(255, 255, 255, 0.8) inset;
}

.offer-card--dealroom .offer-title,
.offer-card--dealroom .offer-description {
  color: #475569;
}

.offer-card--dealroom .offer-link {
  color: #475569;
}

/* #10 - Badge positioned absolutely so titles align */
.offer-card {
  position: relative;
}

.members-only-badge {
  position: absolute;
  top: 2rem;
  left: 3.5rem;
  background: #FF0000;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  z-index: 2;
}

/* Add top padding to Deal-Room card to make room for badge */
.offer-card--dealroom {
  padding-top: 5rem;
}

/* Badge - Primary red */
.offer-card--dealroom .members-only-badge {
  background: #FF0000;
}

.offer-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-midnight);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.offer-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #475569;
}

.offer-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-bullets li {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #475569;
  padding-left: 1.25rem;
  position: relative;
}

.offer-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: #FF0000;
  border-radius: 50%;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #FF0000;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
  margin-top: 2rem;
}

.offer-link:hover {
  gap: 1.25rem;
}

/* Offer Card Buttons */
.offer-card-button {
  display: block;
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

/* Both buttons - Half gray / half red gradient */
.offer-card-button--membership,
.offer-card-button--dealroom {
  background: linear-gradient(135deg, #475569 0%, #475569 50%, #FF0000 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(71, 85, 105, 0.25);
  border: none;
}

.offer-card-button--membership:hover,
.offer-card-button--dealroom:hover {
  background: #ffffff;
  color: #475569;
  box-shadow: 0 4px 16px rgba(71, 85, 105, 0.3);
}

/* Mobile: smaller offer card buttons, single line */
@media (max-width: 768px) {
  .offer-card-button {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    white-space: nowrap;
    width: auto;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .offer-card-button {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   WHY THIS CORRIDOR - RIGHT ALIGNED, DARK BACKGROUND
   ======================================== */
.corridor-section {
  background: #ffffff;
}

.corridor-section .section-title-new {
  color: var(--color-midnight);
}

.corridor-section .section-label-new {
  color: #FF0000;
}

.corridor-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2.5rem;
  text-align: right;
}

/* Two-card layout for Why Canada / Why Europe */
.corridor-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.corridor-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.corridor-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.corridor-card-header .icon-box {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.corridor-card-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin: 0;
  line-height: 1.3;
}

.corridor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.corridor-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.corridor-list li strong {
  color: #475569;
  font-weight: 700;
}

.corridor-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF0000;
  line-height: 1.8;
}

/* ========================================
   PARTNERSHIP MOMENTUM - RIGHT ALIGNED (3rd section)
   ======================================== */
.momentum-section {
  background: #f1f5f9;
}

.momentum-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2.5rem;
}

.momentum-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Stats Grid - Left Side */
.momentum-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ========================================
   STAT CARDS - No flip, with animated border
   ======================================== */

/* #12 - Remove flip, just use simple cards */
.stat-card {
  position: relative;
  height: 240px;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-white, #fff);
  overflow: hidden;
}

/* #4 - Animated rotating border */
.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 60deg,
    #FF0000 120deg,
    transparent 180deg,
    transparent 360deg
  );
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Inner content container to cover the rotating gradient */
.stat-card-inner {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: var(--color-white, #fff);
  border-radius: 17px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

/* #7 - Cards with background images */
.stat-card--with-bg .stat-card-inner {
  background-size: cover;
  background-position: center;
}

.stat-card--deals .stat-card-inner {
  background-image: url('../img/bythenumbers1.jpg');
}

.stat-card--ceta .stat-card-inner {
  background-image: url('../img/bythenumbers2.jpg');
}

/* #7 - White text for cards with backgrounds */
.stat-card--with-bg .stat-number,
.stat-card--with-bg .stat-label {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* #8 - Left align numbers and labels */
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FF0000;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: left;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-midnight, #0a1628);
  line-height: 1.4;
  text-align: left;
}

/* ========================================
   HOW IT WORKS BUTTON
   ======================================== */

/* Pill-shaped button - large with arrow (no dot) */
.momentum-cta-button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: #FF0000;
  color: #ffffff;
  padding: 2rem 3rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.25);
}

/* Hover state - INVERT colors */
.momentum-cta-button:hover {
  background: #ffffff;
  color: #FF0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
}

/* Arrow icon - LARGE 48px */
.momentum-cta-button svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  stroke: currentColor;
}

.momentum-cta-button:hover svg {
  stroke: #FF0000;
}

/* ========================================
   VIDEO PANEL
   ======================================== */

/* #3 - Match height with button row */
.momentum-visual-panel {
  border-radius: 24px;
  background: #475569;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.momentum-visual-panel * {
  cursor: pointer;
}

/* Video Placeholder with Photo - NO overlay */
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Play Button - Large hollow circle with hollow triangle (white, 48px) */
.momentum-section .play-button,
.momentum-visual-panel .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 120px;
  height: 120px;
  background: none;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white !important;
}

/* Play button SVG - 48px, white stroke, no fill */
.momentum-section .play-button svg,
.momentum-visual-panel .play-button svg {
  width: 64px !important;
  height: 64px !important;
  margin-left: -2px;
  stroke: white !important;
  fill: none !important;
  stroke-width: 2;
  transition: all 0.3s ease;
  color: white !important;
}

.momentum-section .play-button svg path,
.momentum-visual-panel .play-button svg path {
  stroke: white !important;
  fill: none !important;
}

/* Only apply hover effects on devices that support hover (not touch) */
@media (hover: hover) {
  .momentum-visual-panel:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  }

  .momentum-visual-panel:hover .play-button svg {
    stroke: #fff !important;
  }
}

/* Hide placeholder when video is playing */
.momentum-visual-panel.playing .video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.momentum-visual-panel.playing .play-button {
  opacity: 0;
  pointer-events: none;
}

/* Pause button - hidden by default */
.momentum-visual-panel .pause-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.momentum-visual-panel .pause-button svg {
  width: 36px;
  height: 36px;
  stroke: white;
  fill: none;
}

/* Show pause icon when playing (fades in on hover - desktop only) */
.momentum-visual-panel.playing .pause-button {
  opacity: 0;
}

@media (hover: hover) {
  .momentum-visual-panel.playing:hover .pause-button {
    opacity: 0.8;
  }
}

/* Briefly show pause icon when video starts (all devices) */
.momentum-visual-panel.playing.show-pause .pause-button {
  opacity: 0.9 !important;
  transition: opacity 0.3s ease;
}

/* Show play button when paused */
.momentum-visual-panel.playing.paused .play-button {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  pointer-events: none;
  z-index: 10;
}

/* Hide pause icon when paused */
.momentum-visual-panel.playing.paused .pause-button {
  opacity: 0 !important;
}

.momentum-visual-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   CTA SECTION BUTTON - Pill shape with dot
   ======================================== */
.cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #FF0000;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-section .cta-button::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
  position: static;
  transform: none;
}

.cta-section .cta-button:hover {
  background: #ffffff;
  color: #FF0000;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 0, 0, 0.25);
}

.cta-section .cta-button:hover::before {
  background: #FF0000;
}

/* Mobile: keep CTA button text on one line */
@media (max-width: 480px) {
  .cta-section .cta-button {
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    gap: 0.5rem;
    white-space: nowrap;
  }
  .cta-section .cta-button::before {
    width: 8px;
    height: 8px;
  }
}

/* ========================================
   STICKY BUTTON - Fixed at bottom right
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FF0000;
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.sticky-cta:hover {
  background: #ffffff;
  color: #FF0000;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.3);
}

.sticky-cta:hover::before {
  background: #FF0000;
}

.sticky-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Center the sticky button on mobile */
@media (max-width: 820px) {
  .sticky-cta {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.25rem;
  }

  .sticky-cta:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .sticky-cta.hidden {
    transform: translateX(-50%) translateY(20px);
  }
}

/* ========================================
   SCROLL ANIMATIONS (subtle slide up)
   ======================================== */
.anim-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .section-title-new {
    font-size: 3.25rem;
  }

  .opportunity-stats {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .momentum-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .momentum-visual-panel {
    min-height: 300px;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 768px) {
  .section-container {
    padding: 5rem 1.5rem;
  }

  .section-title-new {
    font-size: 2.6rem;
  }

  .opportunity-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .momentum-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    height: 200px;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .momentum-cta-button {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }

  .momentum-cta-button svg {
    width: 36px;
    height: 36px;
  }

  /* Reset right-aligned sections on mobile */
  .section-align-right .section-label-new,
  .section-align-right .section-title-new,
  .section-align-right .section-content {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .opportunity-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .opportunity-text {
    text-align: left;
  }

  .opportunity-stats {
    order: -1;
  }

  .momentum-section .play-button,
  .momentum-visual-panel .play-button {
    width: 100px;
    height: 100px;
  }

  .momentum-section .play-button svg,
  .momentum-visual-panel .play-button svg {
    width: 40px !important;
    height: 40px !important;
  }

  .offer-card {
    min-height: auto;
    padding: 2.5rem;
  }

  /* Adjust badge position for mobile padding */
  .members-only-badge {
    left: 2.5rem;
    top: 1.5rem;
  }

  /* Adjust deal-room card padding-top for mobile */
  .offer-card--dealroom {
    padding-top: 4.5rem;
  }

  .stat-highlight {
    font-size: 2.75rem;
  }

  .problem-pullquote {
    font-size: 1.2rem;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
  }

  .problem-answer {
    font-size: 1.1rem;
  }

  .corridor-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .corridor-card {
    padding: 2rem;
  }

  .corridor-card-header h3 {
    font-size: 1.3rem;
  }

  .corridor-list li {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .momentum-cta-button {
    padding: 1.25rem 1.75rem;
    font-size: 1rem;
    gap: 1rem;
  }

  .momentum-cta-button svg {
    width: 28px;
    height: 28px;
  }

  .momentum-section .play-button,
  .momentum-visual-panel .play-button {
    width: 100px;
    height: 100px;
  }

  .momentum-section .play-button svg,
  .momentum-visual-panel .play-button svg {
    width: 44px !important;
    height: 44px !important;
  }
}
