:root {
  --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);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  --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;
}
.confidential-quote,
.confidential-subtitle,
.divorce-form-section,
.divorce-intro,
.divorce-stat-card,
.final-cta-section,
.hero {
  text-align: center;
}
.benefit-card::before,
.hero::before {
  content: "";
  position: absolute;
  right: 0;
}
.container,
.hero {
  position: relative;
}

.benefit-box,
.card,
.cta-primary,
.cta-secondary,
.faq-item,
.phone-cta,
.phone-cta-box,
.phone-number,
.testimonial {
  transition: all var(--transition-normal);
}
.benefit-card,
.card,
.divorce-feature-card,
.phone-cta {
  border-radius: var(--border-radius-xl);
}

.hero {
  background: linear-gradient(
        135deg,
        rgba(35, 37, 127, 0.95),
        rgba(10, 7, 69, 0.9)
      )
      fixed,
    url("../../images/house2.webp") center/cover fixed;
  color: #fff;
  padding: clamp(60px, 12vh, 120px) 0;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.phone-cta,
.phone-cta-box {
  background: rgba(255, 255, 255, 0.15);
}
.hero::before {
  top: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.benefit-box::before,
.benefit-card::after,
.card::before,
.divorce-feature-card::after,
.faq-item::before,
.financial-benefit-card::after,
.testimonial::before {
  left: -100%;
  height: 100%;
  transition: left var(--transition-slow);
  top: 0;
  content: "";
  position: absolute;
  width: 100%;
}
.phone-cta-box:hover,
.phone-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.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, 4rem);
  line-height: 1.1;
  margin: 0 auto clamp(15px, 3vh, 25px);
  max-width: 900px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
  animation: 1s fadeInUp;
}
.hero .subtitle,
.hero .tagline,
.section h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero .subtitle {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: clamp(12px, 2.5vh, 20px);
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  animation: 1s 0.2s both fadeInUp;
}
.hero .tagline,
.section h2 {
  margin-bottom: clamp(30px, 5vh, 50px);
}
.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  animation: 1s 0.4s both fadeInUp;
}
.divorce-intro {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 40px;
}
.divorce-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.divorce-stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.confidential-box,
.timeline-comparison-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.stat-large-number {
  font-size: 3rem;
  font-weight: 700;
  color: #6366f1;
}
.stat-blue-label {
  color: #6366f1;
  font-weight: 700;
  margin-top: 10px;
}
.benefit-title {
  color: #6366f1;
  margin-bottom: 15px;
}
.confidential-title,
.timeline-title {
  color: #6366f1;
  text-align: center;
  margin-bottom: 30px;
}
.timeline-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.traditional-timeline-title {
  color: #dc2626;
  margin-bottom: 20px;
}
.cash-timeline-title {
  color: #10b981;
  margin-bottom: 20px;
}
.timeline-list {
  line-height: 2;
}
.timeline-total {
  margin-top: 20px;
  font-weight: 700;
}
.traditional-total {
  color: #dc2626;
}
.cash-total {
  color: #10b981;
}
.confidential-box {
  max-width: 800px;
  margin: 0 auto;
}
.confidential-subtitle {
  color: #6366f1;
  margin-bottom: 20px;
}
.confidential-list {
  line-height: 2;
  font-size: 1.1rem;
  list-style-type: none;
}
.spacer {
  opacity: 0;
}
.confidential-quote {
  margin-top: 30px;
  font-style: italic;
  color: #6b7280;
}
.process-number {
  background: #6366f1;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
}
.testimonial-quote {
  font-style: italic;
  margin-bottom: 15px;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.form-main-title {
  color: #fff !important;
  margin-bottom: 20px;
}
.form-main-subtitle {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.2rem;
}
.divorce-form-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  padding: 50px 40px;
  border-radius: 25px;
  color: #333;
}
.form-confidential-notice {
  background: #6366f1;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.final-cta-title,
.form-group {
  margin-bottom: 20px;
}
.benefit-point .benefit-icon,
.form-label-left {
  margin-bottom: 5px;
}
.form-label-left {
  display: block;
  font-weight: 700;
  text-align: left;
}
.form-input-full {
  width: 100%;
  padding: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit-button {
  width: 100%;
  margin: 20px 0;
}
.form-contact-info {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}
.form-phone-link {
  color: #6366f1;
  font-weight: 700;
}
.final-cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.final-nav-links {
  margin-top: 30px;
}
.nav-link {
  color: #6366f1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.phone-cta {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  margin: clamp(30px, 5vh, 40px) 0 clamp(20px, 4vh, 30px);
  animation: 2s ease-in-out infinite alternate glow;
  padding: clamp(12px, 2.5vh, 15px) clamp(20px, 4vw, 30px);
  display: inline-block;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.phone-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  }
}
.hero-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(25px, 4vh, 30px);
  margin-top: clamp(40px, 6vh, 50px);
}
.phone-cta-box {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--border-radius-xl);
  padding: clamp(20px, 3vh, 25px) clamp(25px, 5vw, 35px);
  text-align: center;
  cursor: pointer;
}
.phone-cta-box:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.confidential-label {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  opacity: 0.8;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.phone-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}
.cta-primary,
.cta-secondary {
  color: #fff;
  padding: clamp(14px, 2.5vh, 18px) clamp(25px, 5vw, 35px);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  min-width: clamp(180px, 25vw, 220px);
  font-family: inherit;
  text-decoration: none;
  text-align: center;
}
.phone-number:hover {
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}
.button-group {
  display: flex;
  gap: clamp(15px, 3vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: var(--border-radius-full);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.benefit-box,
.card {
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.benefit-card,
.faq-item,
.testimonial {
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  cursor: pointer;
}
.cta-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}
.benefit-point:focus,
.card:focus,
.cta-primary:focus,
.divorce-feature-card:focus,
.financial-benefit-card:focus,
.phone-cta-box:focus {
  outline: #6366f1 solid 3px;
  outline-offset: 2px;
}
.cta-secondary {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  place-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-full);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.section {
  padding: clamp(50px, 10vh, 80px) 0;
}
.section h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  text-align: center;
  color: #6366f1;
  font-weight: 700;
}
.benefit-point .benefit-icon,
.section h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.card h4,
.section h3 {
  margin-bottom: var(--spacing-md);
  color: #6366f1;
  font-weight: 700;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(25px, 5vw, 40px);
  margin: clamp(30px, 6vh, 50px) 0;
}
.card {
  background: #fff;
  padding: clamp(30px, 5vh, 40px) clamp(25px, 4vw, 30px);
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.1);
  min-height: clamp(250px, 35vh, 300px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefit-card,
.benefit-point {
  flex-direction: column;
  display: flex;
}
.benefit-box::before,
.benefit-card::after,
.card::before,
.divorce-feature-card::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.05),
    transparent
  );
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xxl);
}
.benefit-box:hover::before,
.benefit-card:hover::after,
.card:hover::before,
.divorce-feature-card:hover::after,
.faq-item:hover::before,
.financial-benefit-card:hover::after,
.testimonial:hover::before {
  left: 100%;
}
.card h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
.icon {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: clamp(20px, 3vh, 25px);
  color: #6366f1;
}
.bg-gray,
.divorce-bg-light {
  background: linear-gradient(135deg, #f8fafc 0, #e2e8f0 100%);
}
.bg-purple {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: #fff;
}
.confidential-section {
  padding: clamp(40px, 8vh, 60px) 0;
  margin: clamp(40px, 8vh, 60px) 0;
}
.benefit-box,
.testimonial {
  margin: clamp(15px, 3vh, 20px) 0;
}
.benefit-box {
  background: #fff;
  border-radius: var(--border-radius-xl);
  padding: clamp(30px, 5vh, 40px);
  border-left: 5px solid #6366f1;
}
.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xxl);
}
.timeline-section {
  padding: clamp(40px, 8vh, 60px) 0;
}
.breadcrumb {
  padding: var(--spacing-md) 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.faq-item,
.testimonial {
  background: #fff;
  border-radius: var(--border-radius-lg);
}
.breadcrumb a {
  color: #6366f1;
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all var(--transition-fast);
}
.benefit-card,
.benefit-point,
.divorce-image-container img,
.financial-image-container img {
  transition: all var(--transition-normal);
}
.breadcrumb a:hover {
  text-decoration: underline;
  color: #4f46e5;
}
.testimonial {
  padding: clamp(25px, 4vh, 30px);
  border-left: 5px solid #10b981;
  position: relative;
}
.faq-answer,
.faq-question {
  padding: clamp(20px, 3vh, 25px);
  position: relative;
  z-index: 2;
}
.financial-benefit-card::after,
.testimonial::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.05),
    transparent
  );
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.faq-item {
  margin: clamp(20px, 4vh, 25px) 0;
  position: relative;
}
.faq-item::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(171, 109, 233, 0.1),
    transparent
  );
  z-index: 1;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.faq-question {
  background: linear-gradient(135deg, #ab6de9, #7a3fb4);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}
.faq-answer {
  line-height: 1.8;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #374151;
}
.benefits-container {
  max-width: 1100px;
  margin: 0 auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin-bottom: clamp(40px, 6vh, 50px);
}
.benefit-card {
  background: #fff;
  padding: clamp(25px, 4vh, 35px) clamp(20px, 3vw, 25px);
  text-align: center;
  border: 2px solid #f1f5f9;
  position: relative;
  min-height: clamp(200px, 30vh, 250px);
  justify-content: center;
}
.benefit-card::before {
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xxl);
  border-color: #6366f1;
}
.benefit-icon {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}
.benefit-amount {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 900;
  color: #10b981;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
  line-height: 1;
}
.benefit-card h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: var(--spacing-sm);
}
.benefit-card p {
  color: #6b7280;
  line-height: 1.5;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.savings-example {
  color: #9ca3af;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-style: italic;
}
.total-savings-banner {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: var(--border-radius-2xl);
  padding: clamp(30px, 5vh, 40px);
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
  margin: clamp(30px, 5vh, 40px) 0;
}
.divorce-feature-card,
.financial-benefit-card {
  box-shadow: var(--shadow-xl);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-normal);
}
.total-savings-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    transparent 70%
  );
  animation: 3s ease-in-out infinite shimmer;
}
.divorce-feature-card::before,
.financial-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: transform 0.4s;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}
.savings-content {
  position: relative;
  z-index: 2;
}
.savings-amount {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
}
.savings-description {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}
.total-savings-banner p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  opacity: 0.95;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.4;
}
.benefits-highlight {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 12.5px);
  margin: clamp(30px, 5vh, 40px) 0 clamp(40px, 6vh, 50px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-point {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--border-radius-full);
  padding: clamp(15px, 2.5vh, 20px) clamp(12px, 2vw, 15px);
  text-align: center;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  min-width: clamp(100px, 15vw, 120px);
}
.benefit-point:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.benefit-point .benefit-text {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}
.divorce-benefits-section,
.financial-benefits-section {
  padding: clamp(60px, 10vh, 80px) 0;
}
.divorce-benefits-section h2,
.financial-benefits-section h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: clamp(40px, 6vh, 50px);
  text-align: center;
  color: #6366f1;
  font-weight: 700;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.divorce-container,
.financial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
}
.divorce-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(25px, 5vw, 40px);
  margin: clamp(40px, 6vh, 50px) 0;
}
.divorce-feature-card {
  background: #fff;
  border: 2px solid rgba(99, 102, 241, 0.1);
  display: flex;
  flex-direction: column;
  min-height: clamp(350px, 45vh, 400px);
}
.divorce-feature-card::before {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  transform: scaleX(0);
}
.divorce-feature-card:hover {
  box-shadow: var(--shadow-2xl);
  border-color: #6366f1;
  transform: translateY(-5px);
}
.divorce-feature-card:hover::before,
.financial-benefit-card:hover::before {
  transform: scaleX(1);
}
.divorce-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(20px, 3vh, 25px);
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.divorce-image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(99, 102, 241, 0.2));
}
.divorce-feature-card:hover .divorce-image-container {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}
.divorce-feature-card:hover .divorce-image-container img {
  filter: drop-shadow(0 8px 25px rgba(99, 102, 241, 0.3));
  transform: scale(1.05);
}
.divorce-feature-card h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  color: #1f2937;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 clamp(20px, 4vw, 30px);
}
.divorce-feature-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: 0 clamp(20px, 4vw, 30px) clamp(20px, 4vh, 30px);
  flex-grow: 1;
}
.financial-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(20px, 4vw, 30px);
  margin-bottom: clamp(40px, 6vh, 50px);
}
.financial-benefit-card {
  background: #fff;
  border-radius: var(--border-radius-xl);
  border: 2px solid rgba(16, 185, 129, 0.1);
  display: flex;
  flex-direction: column;
  min-height: clamp(300px, 40vh, 350px);
}
.financial-benefit-card::before {
  background: linear-gradient(135deg, #10b981, #059669);
  transform: scaleX(0);
}
.financial-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: #10b981;
}
.financial-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.financial-image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.2));
}
.financial-benefit-card:hover .financial-image-container {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}
.financial-benefit-card:hover .financial-image-container img {
  filter: drop-shadow(0 8px 25px rgba(16, 185, 129, 0.3));
  transform: scale(1.05);
}
.financial-amount {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #10b981;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
  line-height: 1;
}
.financial-benefit-card h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  margin-bottom: var(--spacing-md);
  color: #1f2937;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 clamp(20px, 4vw, 25px);
}
.financial-benefit-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: 0 clamp(20px, 4vw, 25px) clamp(20px, 4vh, 25px);
  flex-grow: 1;
}
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: clamp(50px, 10vh, 80px) 0;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero .subtitle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
  .hero .tagline {
    font-size: clamp(1rem, 3vw, 1.1rem);
  }
  .phone-cta {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    padding: clamp(10px, 2vh, 12px) clamp(20px, 4vw, 25px);
  }
  .phone-number {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .button-group {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
  .benefits-grid,
  .divorce-features-grid,
  .financial-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .benefits-grid {
    gap: var(--spacing-md);
  }
  .benefit-amount {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .savings-amount {
    font-size: clamp(2.5rem, 7vw, 2.8rem);
  }
  .section {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .section h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .divorce-features-grid,
  .financial-benefits-grid {
    gap: var(--spacing-lg);
  }
  .benefits-highlight {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .benefit-point {
    width: 100%;
    max-width: 250px;
    padding: var(--spacing-md);
  }
}
@media (max-width: 480px) {
  .hero {
    padding: clamp(40px, 8vh, 60px) 0;
    min-height: 55vh;
  }
  .container {
    padding: 0 clamp(10px, 2vw, 15px);
  }
  .financial-amount,
  .savings-amount {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .total-savings-banner {
    padding: clamp(25px, 4vh, 30px) clamp(15px, 3vw, 20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .benefit-box::before,
  .benefit-card::after,
  .card::before,
  .divorce-feature-card::after,
  .faq-item::before,
  .financial-benefit-card::after,
  .hero::before,
  .testimonial::before {
    display: none;
  }
  .phone-cta,
  .total-savings-banner::before {
    animation: none !important;
  }
}
@media print {
  .hero,
  .total-savings-banner {
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .hero {
    background: #6366f1 !important;
  }
  .benefit-box,
  .benefit-card,
  .card,
  .divorce-feature-card,
  .faq-item,
  .financial-benefit-card,
  .testimonial {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .total-savings-banner {
    background: #10b981 !important;
  }
}
