/* ==========================================================================
   Club E Visual Enhancements
   Version: 1.0.0
   Purpose: CSS-only visual depth, texture, and interaction improvements
   Load AFTER design-system.css
   ========================================================================== */


/* --------------------------------------------------------------------------
   0. UTILITY KEYFRAMES
   -------------------------------------------------------------------------- */

@keyframes clube-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes clube-pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes clube-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes clube-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clube-counter-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(129, 180, 177, 0.3); }
  50% { text-shadow: 0 0 25px rgba(129, 180, 177, 0.6), 0 0 50px rgba(129, 180, 177, 0.2); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* --------------------------------------------------------------------------
   1. OVERALL TEXTURE — Subtle background grain & warmth
   -------------------------------------------------------------------------- */

/* Subtle noise texture overlay for light sections */
.clube-hero,
.wp-block-group[style*="background:#F7F9F9"],
.wp-block-group[style*="background:#fff"],
.wp-block-group[style*="background:#ffffff"] {
  position: relative;
}

/* Fine dot pattern for light backgrounds — adds warmth without weight */
.clube-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 180, 177, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.clube-hero > * {
  position: relative;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   2. HERO SECTION — Depth, gradient mesh, geometric accents
   -------------------------------------------------------------------------- */

.clube-hero {
  background:
    /* Animated gradient mesh feel */
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(129, 180, 177, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(129, 180, 177, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(109, 161, 158, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #F7F9F9 0%, #EDF5F4 100%) !important;
  overflow: hidden;
}

/* Floating geometric accent — top right */
.clube-hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 180, 177, 0.10) 0%, rgba(129, 180, 177, 0.03) 50%, transparent 70%);
  animation: clube-float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Hero heading polish */
.clube-hero h1 {
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #4A7573 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtext entrance feel */
.clube-hero > div > p:first-of-type {
  animation: clube-fade-in-up 0.8s ease-out 0.2s both;
}

/* Hero CTA button group entrance */
.clube-hero > div > div:first-of-type {
  animation: clube-fade-in-up 0.8s ease-out 0.4s both;
}


/* --------------------------------------------------------------------------
   3. CTA BUTTONS — Gradient fills, polish, hover animations
   -------------------------------------------------------------------------- */

/* Primary CTA buttons (teal background links) */
a[style*="background:#81B4B1"] {
  background: linear-gradient(135deg, #81B4B1 0%, #6DA19E 100%) !important;
  box-shadow: 0 2px 8px rgba(129, 180, 177, 0.3), 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

a[style*="background:#81B4B1"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

a[style*="background:#81B4B1"]:hover {
  background: linear-gradient(135deg, #6DA19E 0%, #5E9390 100%) !important;
  box-shadow: 0 4px 16px rgba(129, 180, 177, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

a[style*="background:#81B4B1"]:hover::before {
  opacity: 1;
}

a[style*="background:#81B4B1"]:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(129, 180, 177, 0.3);
}

/* Secondary / outline CTA buttons */
a[style*="border:2px solid #81B4B1"] {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

a[style*="border:2px solid #81B4B1"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(129, 180, 177, 0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
}

a[style*="border:2px solid #81B4B1"]:hover {
  border-color: #6DA19E !important;
  box-shadow: 0 2px 8px rgba(129, 180, 177, 0.2);
  transform: translateY(-1px);
}

a[style*="border:2px solid #81B4B1"]:hover::before {
  transform: scaleX(1);
}

/* Arrow links — animate the arrow */
a[style*="color:#81B4B1"][style*="font-weight:600"] {
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}

a[style*="color:#81B4B1"][style*="font-weight:600"]:hover {
  color: #5E9390 !important;
  gap: 8px;
}


/* --------------------------------------------------------------------------
   4. USER TYPE CARDS — Interactive hover states
   -------------------------------------------------------------------------- */

/* All cards in the user type grid */
div[style*="background:#F7F9F9"][style*="border-radius:8px"][style*="border:1px solid #E2E8F0"] {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Gradient sweep on hover */
div[style*="background:#F7F9F9"][style*="border-radius:8px"][style*="border:1px solid #E2E8F0"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #81B4B1, #6DA19E, #4A7573);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

div[style*="background:#F7F9F9"][style*="border-radius:8px"][style*="border:1px solid #E2E8F0"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(129, 180, 177, 0.2), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(129, 180, 177, 0.3) !important;
  background: #fff !important;
}

div[style*="background:#F7F9F9"][style*="border-radius:8px"][style*="border:1px solid #E2E8F0"]:hover::after {
  transform: scaleX(1);
}

/* Icon container pulse on card hover */
div[style*="background:#F7F9F9"][style*="border-radius:8px"][style*="border:1px solid #E2E8F0"]:hover > div[style*="border-radius:10px"] {
  background: rgba(129, 180, 177, 0.25) !important;
  transform: scale(1.08);
  transition: all 0.3s ease;
}


/* --------------------------------------------------------------------------
   5. COMING SOON CARDS — Alive and anticipatory
   -------------------------------------------------------------------------- */

/* Coming soon cards (white bg, different structure) */
div[style*="background:#fff"][style*="border-radius:8px"][style*="padding:32px"][style*="border:1px solid #E2E8F0"] {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer accent on the left border */
div[style*="background:#fff"][style*="border-radius:8px"][style*="padding:32px"][style*="border:1px solid #E2E8F0"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #81B4B1, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

div[style*="background:#fff"][style*="border-radius:8px"][style*="padding:32px"][style*="border:1px solid #E2E8F0"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(129, 180, 177, 0.18), 0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: rgba(129, 180, 177, 0.25) !important;
}

div[style*="background:#fff"][style*="border-radius:8px"][style*="padding:32px"][style*="border:1px solid #E2E8F0"]:hover::before {
  opacity: 1;
}

/* "Coming Soon" label glow on hover */
div[style*="background:#fff"][style*="border-radius:8px"][style*="padding:32px"]:hover > p[style*="text-transform:uppercase"] {
  text-shadow: 0 0 8px rgba(129, 180, 177, 0.4);
}


/* --------------------------------------------------------------------------
   6. SECTION TRANSITIONS — Wave dividers between sections
   -------------------------------------------------------------------------- */

/*
   Implementation: Add these SVG dividers between sections in the HTML.
   CSS classes for positioning them correctly.
*/

.clube-section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
  font-size: 0;
}

.clube-section-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* Divider from light (#F7F9F9) to white — place between hero and section 2 */
.clube-divider--hero-to-white {
  background: #F7F9F9;
}

/* Divider from white to teal-tinted (#EDF5F4) — place between section 2 and journey */
.clube-divider--white-to-teal {
  background: #fff;
}

/* Divider from teal to white — place between journey and pillars */
.clube-divider--teal-to-white {
  background: #EDF5F4;
}

/* Divider from white to dark — place between pillars and stats */
.clube-divider--white-to-dark {
  background: #fff;
}

/* Divider from dark to light — place between stats and coming soon */
.clube-divider--dark-to-light {
  background: #1A202C;
}

/* Divider from light to white — place between coming soon and testimonials */
.clube-divider--light-to-white {
  background: #F7F9F9;
}

/* Divider from white to dark — place between testimonials and final CTA */
.clube-divider--white-to-dark-final {
  background: #fff;
}

/* Alternative: pure CSS diagonal cut */
.clube-diagonal-cut {
  position: relative;
}

.clube-diagonal-cut::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 48px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 2;
}


/* --------------------------------------------------------------------------
   7. STATS BAR — Glow effects and decorative elements
   -------------------------------------------------------------------------- */

/* Stats bar container */
div[style*="background:#1A202C"][style*="padding:48px"] {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #1A202C 100%) !important;
}

/* Subtle grid pattern in the dark stats bar */
div[style*="background:#1A202C"][style*="padding:48px"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129, 180, 177, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 180, 177, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Glowing orb accent */
div[style*="background:#1A202C"][style*="padding:48px"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(129, 180, 177, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Stat numbers — glow animation */
div[style*="background:#1A202C"][style*="padding:48px"] span[style*="font-family:'JetBrains Mono'"][style*="color:#81B4B1"] {
  animation: clube-counter-glow 3s ease-in-out infinite;
  position: relative;
}

/* Decorative line under each stat */
div[style*="background:#1A202C"][style*="padding:48px"] > div > div {
  position: relative;
  padding-bottom: 16px;
}

div[style*="background:#1A202C"][style*="padding:48px"] > div > div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #81B4B1, transparent);
  border-radius: 1px;
}


/* --------------------------------------------------------------------------
   8. JOURNEY STAGE VISUALIZATION — Connected timeline path
   --------------------------------------------------------------------------

   For the hero journey bar (the 9 circles), add class="clube-journey-bar"
   to the container div. This transforms it into a connected path.
*/

/* Journey bar in hero — connected dots with path */
.clube-journey-bar {
  position: relative;
  padding: 16px 0 !important;
}

/* Connecting line behind the dots */
.clube-journey-bar::before {
  content: '';
  position: absolute;
  top: 36px; /* center of the 40px circles */
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(129, 180, 177, 0.15) 0%,
    rgba(129, 180, 177, 0.5) 50%,
    rgba(129, 180, 177, 1) 100%
  );
  z-index: 0;
  border-radius: 1px;
}

.clube-journey-bar > a {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.clube-journey-bar > a:hover {
  transform: translateY(-4px) !important;
}

.clube-journey-bar > a:hover > span:first-child {
  box-shadow: 0 0 0 4px rgba(129, 180, 177, 0.2), 0 4px 12px rgba(129, 180, 177, 0.3);
  transform: scale(1.15);
  transition: all 0.25s ease;
}

/* Journey section (section 3) — table-based stages enhanced */
div[style*="background:#EDF5F4"] {
  position: relative;
}

/* Connecting path for the journey grid */
div[style*="background:#EDF5F4"] table a[style*="border-left:3px solid"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
}

div[style*="background:#EDF5F4"] table a[style*="border-left:3px solid"]:hover {
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 8px 20px -6px rgba(129, 180, 177, 0.25);
  border-left-width: 4px !important;
  border-left-color: #81B4B1 !important;
}

/* Phase labels — subtle accent */
div[style*="background:#EDF5F4"] table span[style*="text-transform:uppercase"] {
  position: relative;
  padding-left: 12px;
}

div[style*="background:#EDF5F4"] table span[style*="text-transform:uppercase"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}


/* --------------------------------------------------------------------------
   9. FIVE PILLARS — Refined hover and visual depth
   -------------------------------------------------------------------------- */

/* Pillar items */
div[style*="background:#fff"][style*="padding:80px"] div[style*="text-align:center"][style*="padding:24px"] {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
}

div[style*="background:#fff"][style*="padding:80px"] div[style*="text-align:center"][style*="padding:24px"]:hover {
  background: rgba(129, 180, 177, 0.04);
  transform: translateY(-4px);
}

/* Pillar icon container enhancement */
div[style*="background:#fff"][style*="padding:80px"] div[style*="border-radius:16px"][style*="background:rgba(129,180,177,0.15)"] {
  transition: all 0.35s ease;
}

div[style*="background:#fff"][style*="padding:80px"] div[style*="text-align:center"][style*="padding:24px"]:hover div[style*="border-radius:16px"] {
  background: rgba(129, 180, 177, 0.25) !important;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 12px rgba(129, 180, 177, 0.2);
}


/* --------------------------------------------------------------------------
   10. TESTIMONIAL SECTION — Elevated quote treatment
   -------------------------------------------------------------------------- */

/* Testimonial cards */
div[style*="background:#F7F9F9"][style*="border-left:3px solid #81B4B1"],
div[style*="background:#F7F9F9"][style*="border-left:3px solid #6DA19E"] {
  position: relative;
  transition: all 0.35s ease;
}

/* Large decorative quotation mark */
div[style*="background:#F7F9F9"][style*="border-left:3px solid #81B4B1"]::before,
div[style*="background:#F7F9F9"][style*="border-left:3px solid #6DA19E"]::before {
  content: '\201C'; /* Left double quotation mark */
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(129, 180, 177, 0.12);
  pointer-events: none;
}

/* Testimonial card hover */
div[style*="background:#F7F9F9"][style*="border-left:3px solid #81B4B1"]:hover,
div[style*="background:#F7F9F9"][style*="border-left:3px solid #6DA19E"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(129, 180, 177, 0.2);
  border-left-width: 4px !important;
}

div[style*="background:#F7F9F9"][style*="border-left:3px solid #81B4B1"]:hover::before,
div[style*="background:#F7F9F9"][style*="border-left:3px solid #6DA19E"]:hover::before {
  color: rgba(129, 180, 177, 0.2);
}

/* Attribution styling — add a small teal dot separator */
div[style*="background:#F7F9F9"][style*="border-left:3px solid"] > p:last-child {
  position: relative;
  padding-top: 12px;
}

div[style*="background:#F7F9F9"][style*="border-left:3px solid"] > p:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #81B4B1;
  border-radius: 1px;
}


/* --------------------------------------------------------------------------
   11. FINAL CTA SECTION — Premium dark treatment
   -------------------------------------------------------------------------- */

/* Final CTA block */
div[style*="background:#1A202C"][style*="padding:80px"] {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1A202C 0%, #2D3748 100%) !important;
}

/* Radial glow behind CTA text */
div[style*="background:#1A202C"][style*="padding:80px"]::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(129, 180, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle geometric corners */
div[style*="background:#1A202C"][style*="padding:80px"]::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(129, 180, 177, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* CTA heading treatment */
div[style*="background:#1A202C"][style*="padding:80px"] h2 {
  position: relative;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   12. SECTION HEADING ENHANCEMENTS — Consistent polish
   -------------------------------------------------------------------------- */

/* All section h2 headings */
h2[style*="font-family:'DM Serif Display'"] {
  letter-spacing: -0.01em;
}

/* Subtle underline accent for section headings */
div[style*="text-align:center"][style*="margin-bottom:48px"] > h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #81B4B1, #6DA19E);
  margin: 16px auto 0;
  border-radius: 2px;
}


/* --------------------------------------------------------------------------
   13. RESPONSIVE ADJUSTMENTS FOR ENHANCEMENTS
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  /* Reduce floating element sizes on mobile */
  .clube-hero::after {
    width: 160px;
    height: 160px;
    top: -20px;
    right: -40px;
  }

  /* Stats bar — stack to 2x2 on mobile */
  div[style*="background:#1A202C"][style*="padding:48px"] > div {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  /* Reduce hover transforms on touch devices */
  @media (hover: none) {
    div[style*="background:#F7F9F9"][style*="border-radius:8px"]:hover,
    div[style*="background:#fff"][style*="padding:32px"]:hover {
      transform: none;
    }
  }

  /* Journey bar connecting line adjustments */
  .clube-journey-bar::before {
    display: none;
  }

  /* Section divider height reduction */
  .clube-section-divider svg {
    height: 32px;
  }
}

@media (max-width: 480px) {
  /* Stats bar single column */
  div[style*="background:#1A202C"][style*="padding:48px"] > div {
    grid-template-columns: 1fr !important;
  }
}


/* --------------------------------------------------------------------------
   14. FOCUS & ACCESSIBILITY — Visible focus states
   -------------------------------------------------------------------------- */

/* All interactive elements get a visible focus ring */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #81B4B1;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove outline on mouse click */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* --------------------------------------------------------------------------
   15. CLASS-BASED DARK SECTION ENHANCEMENTS
   (Replaces inline-style attribute selectors for new class-based HTML)
   -------------------------------------------------------------------------- */

/* Stats bar dark section */
.section--dark,
.section--compact.section--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #1A202C 100%);
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129, 180, 177, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 180, 177, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.section--dark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(129, 180, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section--dark .stat__number {
  animation: clube-counter-glow 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.section--dark .stat__label {
  position: relative;
  z-index: 1;
}

.section--dark .stats-bar {
  position: relative;
  z-index: 1;
}

/* CTA dark section */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1A202C 0%, #2D3748 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(129, 180, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(129, 180, 177, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

/* Ensure all text in dark sections is visible */
.section--dark h2,
.section--dark .section__title,
.cta-section h2,
.cta-section .section__title {
  color: #FFFFFF;
}

.section--dark p,
.section--dark .section__subtitle,
.cta-section p,
.cta-section .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Section heading underline accent (class-based) */
.section__header .section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #81B4B1, #6DA19E);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Dark section heading underline — brighter */
.section--dark .section__title::after,
.cta-section .section__title::after {
  background: linear-gradient(90deg, #81B4B1, #A8CCC9);
  opacity: 0.6;
}
