/* --- DESIGN SYSTEM & CUSTOM VARIANT STYLE --- */
:root {
  --visual-canvas-tint: #f4fbf9;
  --visual-surface-white: #ffffff;
  --visual-brand-primary: #0d9488;
  --visual-brand-cyan: #0284c7;
  --visual-brand-sunset: #f59e0b;
  --visual-ink-dark: #0f172a;
  --visual-ink-soft: #475569;
  --visual-accent-gradient: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  --visual-accent-gradient-hover: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
  --visual-soft-radius: 16px;
  --visual-depth-raised: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --visual-depth-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--visual-ink-dark);
  background-color: var(--visual-canvas-tint);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scroll-driven Progress Indicator */
.visual-progress-indicator-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10001;
}

.visual-progress-indicator-bar {
  height: 100%;
  width: 0%;
  background: var(--visual-brand-sunset);
  animation: visual-growth linear;
  animation-timeline: scroll();
}

@keyframes visual-growth {
  to { width: 100%; }
}

/* Header Component */
.visual-header-shell {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--visual-accent-gradient);
  color: var(--visual-surface-white);
  box-shadow: var(--visual-depth-raised);
}

.visual-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visual-header-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.visual-header-logo-icon {
  width: 38px;
  height: 38px;
  fill: var(--visual-brand-sunset);
}

.visual-header-logo-txt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visual-header-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.visual-header-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.visual-header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--visual-brand-sunset);
  transition: width 0.3s ease;
}

.visual-header-nav-link:hover::after,
.visual-header-nav-link.active-link::after {
  width: 100%;
}

/* Hamburger Menu CSS-Only */
.visual-nav-toggle-input {
  display: none;
}

.visual-nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.visual-nav-toggle-bar {
  height: 3px;
  width: 100%;
  background-color: var(--visual-surface-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Footer Segment */
.visual-footer-shell {
  background: var(--visual-ink-dark);
  color: var(--visual-surface-white);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}

.visual-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2.5rem;
}

.visual-footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.visual-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visual-footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.visual-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-footer-link-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.visual-footer-link-item:hover {
  color: var(--visual-brand-sunset);
}

.visual-footer-disclaimer-box {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.visual-footer-copyright-row {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Shared UI Components */
.visual-action-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: var(--visual-soft-radius);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  border: none;
}

.visual-action-node-solid {
  background: var(--visual-accent-gradient);
  color: var(--visual-surface-white);
  box-shadow: var(--visual-depth-raised);
}

.visual-action-node-solid:hover {
  background: var(--visual-accent-gradient-hover);
  transform: translateY(-2px);
}

.visual-action-node-accent {
  background: var(--visual-brand-sunset);
  color: var(--visual-ink-dark);
  box-shadow: var(--visual-depth-raised);
}

.visual-action-node-accent:hover {
  background: #e08e00;
  transform: translateY(-2px);
}

.visual-action-node-dark {
  background: var(--visual-ink-dark);
  color: var(--visual-surface-white);
  box-shadow: var(--visual-depth-raised);
}

.visual-action-node-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

/* Segment Padding Scaling (Normal: 10dvh) */
.visual-block-segment {
  padding: 10dvh 2rem;
}

.visual-block-segment-alternate {
  padding: 10dvh 2rem;
  background-color: var(--visual-surface-white);
}

/* Layout Framework without forbidden names */
.visual-alignment-shell {
  max-width: 1200px;
  margin: 0 auto;
}

/* Scroll Animations CSS */
.visual-reveal-effect {
  animation: visual-fade-in-scroll linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

@keyframes visual-fade-in-scroll {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Index.html - Hero Section (Preset F Style) */
.visual-hero-viewport {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('img/bg.webp') no-repeat center center/cover;
  color: var(--visual-surface-white);
  padding: 6rem 2rem;
}

.visual-hero-inner-frame {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.visual-hero-heading {
  font-size: clamp(2rem, 5vw, 3.8rem);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.visual-hero-para {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
}

/* Animated Counters Block */
.visual-hero-stats-panel {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2rem;
}

.visual-hero-stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--visual-soft-radius);
  padding: 1.5rem 2rem;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
}

.visual-hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--visual-brand-sunset);
  display: block;
}

.visual-hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
}

/* Trust Bar */
.visual-hero-trust-strip {
  width: 100%;
  background: rgba(13, 148, 136, 0.8);
  padding: 1.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-radius: var(--visual-soft-radius);
  margin-top: 3rem;
}

.visual-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-trust-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--visual-brand-sunset);
}

/* Content Element - Horizontal Track on Mobile, 3 Cards Desktop */
.visual-content-deck-wrapper {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/bg2.webp') no-repeat center center/cover;
}

.visual-deck-title-block {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.visual-deck-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.visual-deck-card-item {
  background: var(--visual-surface-white);
  border-radius: var(--visual-soft-radius);
  box-shadow: var(--visual-depth-raised);
  padding: 2.5rem 2rem;
  transition: transform 0.3s;
}

.visual-deck-card-item:hover {
  transform: translateY(-5px);
}

.visual-deck-card-icon {
  width: 48px;
  height: 48px;
  fill: var(--visual-brand-primary);
  margin-bottom: 1.5rem;
}

.visual-deck-card-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Features Element - 2x3 Grid with color flip on hover */
.visual-features-grid-scheme {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.visual-feature-card-unit {
  background: var(--visual-surface-white);
  border-radius: var(--visual-soft-radius);
  box-shadow: var(--visual-depth-raised);
  padding: 2.5rem 2rem;
  transition: background 0.4s, color 0.4s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-feature-card-unit:hover {
  background: var(--visual-accent-gradient);
  color: var(--visual-surface-white);
  transform: translateY(-5px);
}

.visual-feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.4s;
}

.visual-feature-card-unit:hover .visual-feature-icon-circle {
  background: rgba(255, 255, 255, 0.2);
}

.visual-feature-icon-svg {
  width: 30px;
  height: 30px;
  fill: var(--visual-brand-primary);
  transition: fill 0.3s;
}

.visual-feature-card-unit:hover .visual-feature-icon-svg {
  fill: var(--visual-brand-sunset);
}

/* "How it Works" horizontal timeline */
.visual-timeline-track-shell {
  background: var(--visual-canvas-tint);
}

.visual-timeline-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 4rem;
  gap: 2rem;
}

.visual-timeline-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: rgb(203, 213, 225);
  z-index: 1;
}

.visual-timeline-step-point {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.visual-timeline-number-node {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--visual-surface-white);
  border: 4px solid var(--visual-brand-primary);
  color: var(--visual-brand-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--visual-depth-raised);
  transition: background 0.3s, color 0.3s;
}

.visual-timeline-step-point:hover .visual-timeline-number-node {
  background: var(--visual-brand-primary);
  color: var(--visual-surface-white);
}

.visual-timeline-step-label {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* CTA Strip */
.visual-cta-gradient-bar {
  background: var(--visual-accent-gradient);
  color: var(--visual-surface-white);
  padding: 5rem 2rem;
}

.visual-cta-bar-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.visual-cta-bar-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  flex: 1;
}

/* Expert Page Layout */
.visual-expert-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('img/bg3.webp') no-repeat center center/cover;
}

.visual-expert-bio-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
}

.visual-expert-bio-img-parent {
  flex: 2;
  border-radius: var(--visual-soft-radius);
  overflow: hidden;
  box-shadow: var(--visual-depth-raised);
}

.visual-expert-bio-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

.visual-expert-bio-img-parent:hover .visual-expert-bio-img {
  transform: scale(1.03);
}

.visual-expert-bio-text {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-expert-bio-sub {
  color: var(--visual-brand-primary);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

/* Reserve Page Layout */
.visual-reserve-split-scheme {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.visual-sticky-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visual-sticky-sidebar h1 {
  font-size: 2.5rem;
  color: var(--visual-ink-dark);
}

.visual-trust-cards-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-trust-mini-card {
  background: var(--visual-surface-white);
  padding: 1.5rem;
  border-radius: var(--visual-soft-radius);
  box-shadow: var(--visual-depth-raised);
  display: flex;
  gap: 1rem;
}

.visual-trust-mini-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-trust-mini-icon {
  width: 20px;
  height: 20px;
  fill: var(--visual-brand-sunset);
}

.visual-trust-mini-card-text ul {
  list-style: none;
  margin-top: 0.5rem;
}

.visual-trust-mini-card-text li {
  font-size: 0.85rem;
  color: var(--visual-ink-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.visual-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--visual-brand-primary);
}

/* Form Styling */
.visual-form-box {
  background: var(--visual-surface-white);
  padding: 3.5rem 3rem;
  border-radius: var(--visual-soft-radius);
  box-shadow: var(--visual-depth-raised);
}

.visual-form-headline {
  margin-bottom: 2rem;
  text-align: center;
}

.visual-form-group {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visual-form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.visual-form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  border-radius: var(--visual-soft-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.visual-form-input:focus {
  outline: none;
  border-color: var(--visual-brand-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.visual-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.visual-form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--visual-brand-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.visual-form-consent-text {
  font-size: 0.9rem;
  color: var(--visual-ink-soft);
}

.visual-form-consent-text a {
  color: var(--visual-brand-primary);
  text-decoration: underline;
}

/* FAQ Element */
.visual-faq-wrapper {
  margin-top: 6rem;
}

.visual-faq-container-title {
  text-align: center;
  margin-bottom: 3rem;
}

.visual-faq-set {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.visual-faq-unit {
  background: var(--visual-surface-white);
  border-radius: var(--visual-soft-radius);
  box-shadow: var(--visual-depth-raised);
  padding: 1.8rem 2rem;
}

.visual-faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--visual-brand-primary);
  text-transform: uppercase;
}

.visual-faq-answer {
  color: var(--visual-ink-soft);
  font-size: 0.95rem;
}

/* Regulatory Pages Styling */
.visual-docs-core {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.visual-docs-core h1 {
  font-size: 2.5rem;
  margin-bottom: 1.8rem;
  border-bottom: 3px solid var(--visual-brand-sunset);
  padding-bottom: 0.5rem;
}

.visual-docs-core h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.visual-docs-core p {
  margin-bottom: 1.5rem;
  color: var(--visual-ink-soft);
}

/* Thank you page styling */
.visual-thank-outer {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('img/bg3.webp') no-repeat center center/cover;
  color: var(--visual-surface-white);
  padding: 4rem 2rem;
}

.visual-thank-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--visual-soft-radius);
  padding: 4rem 3rem;
  max-width: 650px;
  text-align: center;
  box-shadow: var(--visual-depth-raised);
}

.visual-thank-icon {
  width: 80px;
  height: 80px;
  fill: var(--visual-brand-sunset);
  margin-bottom: 2rem;
}

.visual-thank-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.visual-thank-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

/* Cookie Banner Segment */
.visual-cookies-layer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--visual-ink-dark);
  color: var(--visual-surface-white);
  padding: 1.5rem 2rem;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.visual-cookies-layer.cookie-visible {
  transform: translateY(0);
}

.visual-cookies-prompt {
  max-width: 800px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.visual-cookies-actions {
  display: flex;
  gap: 1rem;
}

.visual-cookies-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--visual-soft-radius);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, background 0.3s;
}

.visual-cookies-btn-agree {
  background: var(--visual-brand-sunset);
  color: var(--visual-ink-dark);
}

.visual-cookies-btn-agree:hover {
  background: #e08e00;
  transform: translateY(-2px);
}

.visual-cookies-btn-refuse {
  background: rgba(255, 255, 255, 0.15);
  color: var(--visual-surface-white);
}

.visual-cookies-btn-refuse:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .visual-deck-track {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    padding-bottom: 1.5rem;
  }
  
  .visual-deck-card-item {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .visual-features-grid-scheme {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-reserve-split-scheme {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visual-sticky-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .visual-header-navigation {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: var(--visual-accent-gradient);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: left 0.4s ease;
    z-index: 9999;
    align-items: stretch;
    gap: 1.5rem;
  }

  .visual-nav-toggle-label {
    display: flex;
  }

  .visual-nav-toggle-input:checked ~ .visual-header-navigation {
    left: 0;
  }

  .visual-nav-toggle-input:checked ~ .visual-nav-toggle-label .visual-nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .visual-nav-toggle-input:checked ~ .visual-nav-toggle-label .visual-nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .visual-nav-toggle-input:checked ~ .visual-nav-toggle-label .visual-nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .visual-timeline-track {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .visual-timeline-track::before {
    top: 0;
    bottom: 0;
    left: 35px;
    width: 4px;
    height: 100%;
  }

  .visual-timeline-step-point {
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 400px;
    gap: 1.5rem;
  }

  .visual-timeline-number-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .visual-features-grid-scheme {
    grid-template-columns: 1fr;
  }

  .visual-expert-bio-row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .visual-cta-bar-layout {
    flex-direction: column;
    text-align: center;
  }
}