:root {
  --primary-green: #059669;
  --secondary-green: #10b981;
  --light-green: #34d399;
  --accent-red: #dc2626;
  --accent-red-hover: #ef4444;
  --dark-red: #b91c1c;
  --accent-yellow: #f59e0b;
  --yellow-light: #fbbf24;
  --text-dark: #1f2937;
  --text-medium: #374151;
  --text-light: #6b7280;
  --background-light: #f8fafc;
  --background-gradient: #e2e8f0;
  --green-bg-light: #f0fdf4;
  --green-bg-medium: #d1fae5;
  --green-bg-dark: #a7f3d0;
  --text-medium: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.12);
  --shadow-xxl: 0 20px 45px rgba(0, 0, 0, 0.15);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 15px;
  --border-radius-xl: 20px;
  --border-radius-2xl: 25px;
  --border-radius-full: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cash-benefit,
.cash-step,
.cta-primary,
.cta-section,
.hero,
.section h2,
.timeline-marker,
.timeline-note,
.timeline-visual h2 {
  text-align: center;
}
.container,
.hero {
  position: relative;
}
.hero,
.step-number {
  color: var(--text-medium);
}

.hero {
  background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.95),
        rgba(5, 150, 105, 0.9)
      )
      fixed,
    url("../../images/house8.webp") center/cover fixed;
  padding: clamp(80px, 15vh, 140px) 0;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.comparison-card::before,
.step-content::before,
.timeline-note::before {
  content: "";
  left: -100%;
  height: 100%;
  top: 0;
  transition: left var(--transition-slow);
}
.container {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  line-height: 1.1;
  margin: 0 auto clamp(15px, 3vh, 20px);
  max-width: 900px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: 1s fadeInUp;
}
.hero-subtitle,
.section h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: clamp(20px, 4vh, 30px);
  background: linear-gradient(45deg, #fff, #f0fdf4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: 3s ease-in-out infinite alternate subtitlePulse;
}
.hero-features {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  padding: clamp(12px, 2vh, 15px) clamp(25px, 4vw, 30px);
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  letter-spacing: 1px;
  animation: 4s ease-in-out infinite featuresFloat;
  transition: all var(--transition-normal);
  cursor: pointer;
}
.process-step,
.step-number {
  display: flex;
  transition: all var(--transition-normal);
}
.hero-features:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtitlePulse {
  0% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
      0 0 60px rgba(16, 185, 129, 0.3);
    transform: scale(1.02);
  }
}
@keyframes featuresFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  }
}
.section {
  padding: clamp(50px, 10vh, 80px) 0;
}
.section h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: clamp(25px, 4vh, 30px);
  color: var(--primary-green);
  font-weight: 700;
}
.section
  .container
  > div[style*="background: linear-gradient(135deg, #f0fdf4, #d1fae5)"] {
  background: linear-gradient(
    135deg,
    var(--green-bg-light),
    var(--green-bg-medium)
  ) !important;
  padding: clamp(30px, 5vh, 40px) !important;
  border-radius: var(--border-radius-xl) !important;
  margin: clamp(30px, 5vh, 40px) 0 !important;
  position: relative;
  overflow: hidden;
}
.section
  .container
  > div[style*="background: linear-gradient(135deg, #f0fdf4, #d1fae5)"]::before,
.section .container > div[style*="display: grid"] > div::before,
.step-content > div[style*="background: #f0fdf4"]::before,
.timeline-marker::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.05),
    transparent
  );
  transition: left var(--transition-slow);
}
.cash-benefit:hover::before,
.cash-path-container:hover::before,
.comparison-card:hover::before,
.faq-item:hover::before,
.process-step:hover .step-content::before,
.section
  .container
  > div[style*="background: linear-gradient(135deg, #f0fdf4, #d1fae5)"]:hover::before,
.section .container > div[style*="display: grid"] > div:hover::before,
.step-content > div[style*="background: #f0fdf4"]:hover::before,
.timeline-marker:hover::before {
  left: 100%;
}
.section
  .container
  > div[style*="background: linear-gradient(135deg, #f0fdf4, #d1fae5)"]
  h3 {
  color: var(--primary-green) !important;
  margin-bottom: clamp(25px, 4vh, 30px) !important;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  position: relative;
  z-index: 2;
}
.section .container > div[style*="display: flex"] {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: clamp(15px, 3vw, 20px) !important;
  position: relative;
  z-index: 2;
}
.section .container > div[style*="display: flex"] > div {
  text-align: center;
  flex: 1;
  min-width: clamp(100px, 15vw, 120px);
  transition: all var(--transition-normal);
  cursor: pointer;
}
.cash-step:hover,
.section .container > div[style*="display: flex"] > div:hover {
  transform: scale(1.05);
}
.section
  .container
  > div[style*="display: flex"]
  > div
  > div[style*="background"] {
  background: var(--secondary-green) !important;
  color: var(--text-medium) !important;
  width: clamp(70px, 12vw, 80px) !important;
  height: clamp(70px, 12vw, 80px) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto clamp(8px, 1.5vh, 10px) !important;
  font-size: clamp(1.5rem, 4vw, 2rem) !important;
  font-weight: 700 !important;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3) !important;
  transition: all var(--transition-normal);
}
.section
  .container
  > div[style*="display: flex"]
  > div:hover
  > div[style*="background"] {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
  transform: translateY(-2px);
}
.section
  .container
  > div[style*="display: flex"]
  > div:last-child
  > div[style*="background"] {
  background: linear-gradient(
    135deg,
    var(--yellow-light),
    var(--accent-yellow)
  ) !important;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4) !important;
}
.cash-step:last-child:hover .cash-final-icon,
.section
  .container
  > div[style*="display: flex"]
  > div:last-child:hover
  > div[style*="background"] {
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5) !important;
}
.section
  .container
  > div[style*="display: flex"]
  > div[style*="color: #10b981"] {
  color: var(--secondary-green) !important;
  font-size: clamp(1.5rem, 4vw, 2rem) !important;
  animation: 2s ease-in-out infinite arrowPulse;
}
.section .container > div[style*="display: grid"] {
  display: grid !important;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(150px, 100%), 1fr)
  ) !important;
  gap: clamp(15px, 3vw, 20px) !important;
  margin-top: clamp(30px, 5vh, 40px) !important;
  position: relative;
  z-index: 2;
}
.section .container > div[style*="display: grid"] > div {
  background: var(--text-medium) !important;
  padding: clamp(15px, 3vh, 20px) !important;
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.section .container > div[style*="display: grid"] > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md) !important;
}
.process-container {
  position: relative;
  padding: clamp(30px, 5vh, 40px) 0;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  align-items: flex-start;
  margin-bottom: clamp(50px, 8vh, 60px);
  position: relative;
  cursor: pointer;
}
.comparison-card h3,
.step-content h3,
.step-content > p,
.step-time {
  margin-bottom: var(--spacing-md);
}
.process-step:hover {
  transform: translateX(5px);
}
.comparison-card:hover,
.timeline-marker:hover {
  transform: translateY(-5px);
}
.process-step:last-child {
  margin-bottom: 0;
}
.step-number {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-green)
  );
  width: clamp(80px, 15vw, 100px);
  height: clamp(80px, 15vw, 100px);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  position: relative;
  z-index: 2;
}
.step-content h3,
.step-time {
  color: var(--primary-green);
  font-weight: 700;
}
.step-content,
.step-time {
  border-radius: var(--border-radius-xl);
}
.comparison-card,
.step-content {
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.process-step:hover .step-number {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}
.comparison-card:hover,
.process-step:hover .step-content {
  box-shadow: var(--shadow-xxl);
}
.step-content {
  flex: 1;
  margin-left: clamp(25px, 5vw, 40px);
  background: var(--text-medium);
  padding: clamp(30px, 5vh, 40px);
  border-left: 5px solid var(--secondary-green);
}
.step-content::before,
.timeline-note::before {
  position: absolute;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
}
.step-content h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.step-time {
  background: var(--green-bg-light);
  padding: clamp(6px, 1vh, 8px) clamp(12px, 2vw, 16px);
  display: inline-block;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  border: 1px solid var(--green-bg-medium);
}
.step-content > p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-medium);
  line-height: 1.6;
}
.comparison-card ul,
.document-card ul {
  line-height: 2;
  list-style: none;
  padding: 0;
}
.step-content > div[style*="background: #f0fdf4"] {
  background: var(--green-bg-light) !important;
  padding: clamp(15px, 3vh, 20px) !important;
  border-radius: var(--border-radius-md) !important;
  margin: var(--spacing-md) 0 !important;
  border: 1px solid var(--green-bg-medium);
  position: relative;
  overflow: hidden;
}
.step-content > div[style*="background: #f0fdf4"] h4 {
  color: var(--primary-green) !important;
  margin-bottom: var(--spacing-sm) !important;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}
.step-content > div[style*="background: #f0fdf4"] ul {
  line-height: 1.8 !important;
  list-style: none;
  padding: 0;
}
.step-content > div[style*="background: #f0fdf4"] ul li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: var(--spacing-md);
  color: var(--text-medium);
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.step-content > div[style*="background: #f0fdf4"] ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: 700;
}
.bg-gray {
  background: linear-gradient(
    135deg,
    var(--background-light) 0,
    var(--background-gradient) 100%
  );
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(25px, 5vw, 40px);
  margin: clamp(30px, 6vh, 40px) 0;
}
.check,
.x {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-right: var(--spacing-sm);
}
.comparison-card {
  background: var(--text-medium);
  padding: clamp(30px, 5vh, 40px);
  border-radius: var(--border-radius-xl);
  cursor: pointer;
}
.comparison-card::before {
  position: absolute;
  width: 100%;
}
.us-card {
  border-top: 5px solid var(--secondary-green);
}
.us-card::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.05),
    transparent
  );
}
.them-card {
  border-top: 5px solid var(--accent-red);
}
.them-card::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.05),
    transparent
  );
}
.comparison-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 700;
}
.document-card:first-child li:last-child,
.document-card:nth-child(3) li:last-child,
.us-card h3 {
  color: var(--primary-green);
}
.check,
.document-card:first-child li::before {
  color: var(--secondary-green);
  font-weight: 700;
}
.document-card:nth-child(2) li:last-child,
.them-card h3,
.x {
  color: var(--accent-red);
}
.comparison-card ul li {
  padding: var(--spacing-xs) 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  display: flex;
  align-items: center;
}
.x {
  font-weight: 700;
}
.comparison-card > div[style*="background"] {
  padding: clamp(15px, 3vh, 20px) !important;
  border-radius: var(--border-radius-md) !important;
  margin-top: var(--spacing-md) !important;
  text-align: center !important;
}
.us-card > div[style*="background: #f0fdf4"] {
  background: var(--green-bg-light) !important;
}
.them-card > div[style*="background: #fef2f2"] {
  background: #fef2f2 !important;
}
.comparison-card > div[style*="background"] strong {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem) !important;
}
.timeline-visual {
  background: linear-gradient(
    135deg,
    var(--green-bg-light),
    var(--green-bg-medium)
  );
  padding: clamp(50px, 8vh, 60px) 0;
  position: relative;
}
.timeline-visual h2 {
  color: var(--primary-green);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(30px, 5vh, 40px);
}
.timeline-bar {
  position: relative;
  height: clamp(80px, 12vh, 100px);
  background: #e5e7eb;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  margin: clamp(30px, 5vh, 40px) 0;
  box-shadow: var(--shadow-sm);
}
.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--secondary-green),
    var(--primary-green)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  font-size: 18px;
  padding: 0 20px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  animation: 1.5s ease-out progressSlide;
}
.timeline-marker,
.timeline-note {
  background: var(--text-medium);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}
@keyframes progressSlide {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.timeline-markers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: clamp(15px, 3vw, 20px);
  margin-top: clamp(25px, 4vh, 30px);
}
.timeline-marker {
  padding: clamp(15px, 3vh, 20px) clamp(12px, 2vw, 15px);
  border-top: 4px solid var(--secondary-green);
  cursor: pointer;
}
.timeline-marker:last-child {
  border-top-color: var(--accent-yellow);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.timeline-marker:hover {
  box-shadow: var(--shadow-md);
}
.timeline-marker strong {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 2;
}
.timeline-marker:last-child strong {
  color: var(--accent-yellow);
}
.timeline-marker:not(:last-child) {
  position: relative;
  z-index: 2;
}
.timeline-note {
  margin-top: clamp(25px, 4vh, 30px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-light);
  font-style: italic;
  padding: clamp(20px, 3vh, 25px) clamp(25px, 4vw, 30px);
  border-left: 4px solid var(--secondary-green);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin: clamp(30px, 6vh, 40px) 0;
}
.document-card {
  border-radius: var(--border-radius-xl);
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.document-icon {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  overflow: hidden;
  margin-bottom: clamp(20px, 3vh, 25px);
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
  box-shadow: var(--shadow-sm);
}
.benefit-label,
.benefit-value,
.cash-benefits-grid,
.cash-path-steps,
.cash-path-title,
.faq-answer,
.faq-question {
  position: relative;
  z-index: 2;
}
.document-icon img {
  width: 100%;
}
.document-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}
.documents-text {
  padding: 15px;
}
.faq-answer,
.faq-question {
  padding: clamp(20px, 3vh, 25px);
}
.document-card ul {
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: clamp(0.9rem, 2vw, 1rem);
  flex-grow: 1;
}
.document-card li {
  margin-bottom: var(--spacing-xs);
  padding-left: clamp(20px, 4vw, 25px);
  position: relative;
  color: var(--text-light);
  transition: all var(--transition-fast);
}
.document-card:first-child li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
}
.document-card:nth-child(2) li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.1rem);
}
.document-card:nth-child(3) li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}
.cash-benefit::before,
.cash-path-container::before,
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
}
.document-card:hover li {
  color: var(--text-medium);
  transform: translateX(3px);
}
.document-card li:hover {
  color: var(--text-dark);
  font-weight: 500;
}
.document-card li:last-child {
  font-weight: 600;
  color: var(--text-dark);
}
.faq-item {
  background: var(--text-medium);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin: clamp(20px, 4vh, 25px) 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}
.faq-item::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.05),
    transparent
  );
  transition: left var(--transition-slow);
  z-index: 1;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.faq-question {
  background: linear-gradient(
    135deg,
    var(--green-bg-medium),
    var(--green-bg-dark)
  );
  font-weight: 700;
  color: var(--primary-green);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  line-height: 1.8;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: black !important;
}
.cta-primary {
  background: linear-gradient(
    135deg,
    var(--accent-red),
    var(--accent-red-hover)
  );
  color: var(--text-medium);
  border-radius: var(--border-radius-full);
  margin: 0 var(--spacing-md) var(--spacing-sm);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  transition: all var(--transition-normal);
  font-family: inherit;
  cursor: pointer;
  min-width: clamp(250px, 35vw, 320px);
}
.cta-primary:hover {
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
}
.cash-benefit:focus,
.cash-step:focus,
.comparison-card:focus,
.cta-primary:focus,
.document-card:focus,
.faq-item:focus,
.hero-features:focus,
.nav-link-2:focus,
.process-step:focus,
.timeline-marker:focus {
  outline: 3px solid var(--primary-green);
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .comparison-grid,
  .documents-grid,
  .step-content {
    max-width: 500px;
  }
  .hero {
    min-height: 55vh;
    padding: clamp(60px, 12vh, 100px) 0;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
  }
  .hero-features {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .step-content {
    margin-left: 0;
    margin-top: var(--spacing-md);
    width: 100%;
  }
  .comparison-grid,
  .documents-grid,
  .timeline-markers {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }
  .timeline-markers {
    max-width: 400px;
  }
  .cta-primary {
    display: block;
    width: 90%;
    max-width: 320px;
    margin: var(--spacing-md) auto;
  }
  .section .container > div[style*="display: flex"] {
    flex-direction: column !important;
    gap: var(--spacing-md) !important;
  }
  .section
    .container
    > div[style*="display: flex"]
    > div[style*="color: #10b981"] {
    transform: rotate(90deg);
    margin: var(--spacing-sm) 0;
  }
}
.simple-truth-intro {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.simple-truth-conclusion {
  font-size: 1rem;
  margin-top: 15px;
}
.cash-path-container {
  background: linear-gradient(135deg, #f0fdf4, #d1fae5);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.cash-benefit::before,
.cash-path-container::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.05),
    transparent
  );
  transition: left 0.5s;
}
.cash-path-title {
  color: #059669;
  margin-bottom: 30px;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 700;
}
.cash-path-steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cash-step {
  flex: 1;
  min-width: 120px;
  transition: 0.3s;
  cursor: pointer;
}
.cash-step-icon {
  background: #10b981;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
  transition: 0.3s;
}
.cash-step:hover .cash-step-icon {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}
.cash-step-icon img {
  width: 100%;
  max-width: 37.5px;
}
.cash-final-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4) !important;
}
.cash-step-day {
  color: #059669;
  font-size: 1rem;
  font-weight: 700;
}
.cash-step-day-final {
  color: #f59e0b;
  font-size: 1rem;
  font-weight: 700;
}
.cash-step-arrow {
  color: #10b981;
  font-size: 2rem;
  animation: 2s ease-in-out infinite alternate arrowPulse;
}
@keyframes arrowPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.cash-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cash-benefit {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cash-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.benefit-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.benefit-value-red {
  color: #dc2626;
}
.benefit-value-green {
  color: #10b981;
}
.benefit-value-blue {
  color: #3b82f6;
}
.benefit-label {
  color: #6b7280;
  font-size: 0.9rem;
}
.cta-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4b5563;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(5, 150, 105, 0.3);
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}
.cta-navigation {
  margin-top: 30px;
}
.nav-link-2 {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link-2:hover {
  color: #047857;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cash-path-steps {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  .cash-step-arrow {
    transform: rotate(90deg);
    margin: var(--spacing-sm) 0;
  }
  .cash-benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 300px;
    margin: 30px auto 0;
  }
  .simple-truth-container {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: clamp(50px, 10vh, 80px) 0;
    min-height: 50vh;
  }
  .container {
    padding: 0 clamp(10px, 2vw, 15px);
  }
  .cash-path-container {
    padding: 25px 15px;
    margin: 25px 0;
  }
  .cash-step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  .cash-step-icon img {
    max-width: 30px;
  }
  .cta-description,
  .simple-truth-intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  .simple-truth-conclusion {
    font-size: 1rem;
    margin-top: 15px;
  }
  .cta-primary {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}
@media print {
  .hero,
  .timeline-visual {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .hero {
    background: var(--primary-green) !important;
    color: #fff !important;
  }
  .cash-benefit,
  .comparison-card,
  .document-card,
  .faq-item,
  .process-step {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .timeline-visual {
    background: var(--green-bg-light) !important;
  }
  .cash-path-container {
    background: #f0fdf4 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cash-step-icon {
    background: var(--primary-green) !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cash-final-icon {
    background: var(--accent-yellow) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .cta-primary {
    color: var(--primary-green) !important;
    background: 0 0 !important;
    border: 2px solid var(--primary-green) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .comparison-card::before,
  .document-card::before,
  .faq-item::before,
  .hero::before,
  .section .container > div::before,
  .step-content::before,
  .timeline-marker::before,
  .timeline-note::before {
    display: none;
  }
  .cash-step-arrow,
  .hero-features,
  .hero-subtitle,
  .timeline-progress {
    animation: none !important;
  }
  .cash-benefit,
  .cash-benefit::before,
  .cash-path-container::before,
  .cash-step,
  .cash-step-icon,
  .cta-primary {
    animation: none !important;
    transition: none !important;
  }
}
@media (prefers-contrast: high) {
  .cash-path-container {
    border: 2px solid #059669;
  }
  .cash-step-icon {
    border: 2px solid #fff;
  }
}

.documents-text li {
  color: black !important;
}
