 :root {
   --primary: #2a4f6a;
   --secondary: #0e2b6c;
   --accent: #e4353a;
   --light: #f3f4f6;
   --dark: #2a4f6a;
   --success: #10b981;
   --gray: #777;
 }





 body {
   line-height: 1.6;
   color: var(--dark);
   background-color: #f9fafb;
   overflow-x: hidden;
 }

 .container-plans {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 /* Page Header - lighter gradient so image shows more */
 .pageHeader {
   background:
     linear-gradient(rgba(14, 43, 108, 0.35),
       rgba(153, 180, 238, 0.35)),
     url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
   color: white;
   padding: 5rem 0;
   text-align: center;
   position: relative;
   overflow: hidden;
 }

 /* subtle overlay (reduced) to keep text readable but lighter than before */
 .pageHeader::before {
   content: '';
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.12);
   /* lighter than 0.3 */
   z-index: 0;
 }

 .pageHeaderContent {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
   z-index: 1;
   animation: fadeInUp 1s ease;
 }

 .pageHeader h1 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
   animation: fadeInUp 1s ease 0.2s both;
 }

 .pageHeader p {
   font-size: 1.15rem;
   margin-bottom: 1.2rem;
   animation: fadeInUp 1s ease 0.4s both;
   color: rgba(255, 255, 255, 0.95);
 }

 .breadcrumb {
   display: flex;
   justify-content: center;
   list-style: none;
   gap: 0.5rem;
   animation: fadeInUp 1s ease 0.4s both;
 }

 .breadcrumb li {
   color: rgba(255, 255, 255, 0.9);
   font-size: 0.95rem;
 }

 .breadcrumb a {
   color: rgba(255, 255, 255, 0.95);
   text-decoration: none;
 }



 /* Section Styles */
 section {
   padding: 5rem 0;
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.8s ease, transform 0.8s ease;
 }

 section.visible {
   opacity: 1;
   transform: translateY(0);
 }

 .sectionTitle {
   text-align: center;
   margin-bottom: 3rem;
 }

 .sectionTitle h2 {
   font-size: 2.2rem;
   color: var(--secondary);
   margin-bottom: 1rem;
   position: relative;
   display: inline-block;
 }

 .sectionTitle h2::after {
   content: '';
   position: absolute;
   width: 60px;
   height: 3px;
   background-color: var(--accent);
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
 }

 .sectionTitle p {
   color: var(--gray);
   max-width: 700px;
   margin: 1.5rem auto 0;
 }

 /* Pricing Section */
 .pricing {
   background-color: white;
 }

 .pricingGrid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
 }

 .pricingCard {
   background: white;
   border-radius: 10px;
   padding: 2.5rem 2rem;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   text-align: center;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
   border: 1px solid #eee;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .pricingCard.popular {
   border: 2px solid var(--primary);
   transform: scale(1.05);
 }

 .pricingCard.popular::before {
   content: 'POPULAR';
   position: absolute;
   top: 12px;
   right: 12px;
   background: var(--primary);
   color: white;
   padding: 0.4rem 0.8rem;
   font-size: 0.75rem;
   font-weight: bold;
   border-radius: 6px;
 }

 .pricingCard:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .pricingCard.popular:hover {
   transform: scale(1.05) translateY(-10px);
 }

 .planName {
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--primary);
   margin-bottom: 0.25rem;
 }

 .unitRange {
   font-size: 1rem;
   color: var(--gray);
   margin-bottom: 1rem;
   padding: 0.5rem;
   background-color: var(--light);
   border-radius: 5px;
   display: inline-block;
 }

 .price {
   font-size: 2.3rem;
   font-weight: 700;
   color: var(--primary);
   margin: 0.4rem 0;
 }

 .price span {
   font-size: 1rem;
   font-weight: normal;
   color: var(--gray);
 }

 .pricingFeatures {
   list-style: none;
   margin: 1rem 0;
   text-align: left;
   flex-grow: 1;
 }

 .pricingFeatures li {
   margin-bottom: 0.8rem;
   padding-left: 1.8rem;
   position: relative;
   color: #333;
 }

 .pricingFeatures li::before {
   content: '\2713';
   position: absolute;
   left: 0;
   color: var(--success);
   font-weight: bold;
 }

 .ctaButton {
   background-color: var(--accent);
   color: white;
   padding: 0.8rem 1.8rem;
   border-radius: 30px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s;
   display: inline-block;
   position: relative;
   overflow: hidden;
   z-index: 1;
   text-align: center;
 }

 .ctaButton::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
   transition: all 0.4s ease;
   z-index: -1;
 }

 .ctaButton:hover {
   background-color: #e03600;
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .ctaButton:hover::before {
   left: 100%;
 }

 /* Onboarding */
 .onboarding {
   background-color: var(--light);
 }

 .onboardingContent {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
 }

 .onboardingFeatures {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
 }

 .onboardingFeature {
   background: white;
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
 }

 .onboardingFeature:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .onboardingIcon {
   font-size: 2.2rem;
   color: var(--primary);
   margin-bottom: 1rem;
 }

 /* FAQ */
 .faq {
   background-color: white;
 }

 .faqContent {
   max-width: 900px;
   margin: 0 auto;
 }

 .faqItem {
   margin-bottom: 1.25rem;
   border-bottom: 1px solid #eee;
   padding-bottom: 1.25rem;
 }

 .faqQuestion {
   font-size: 1.05rem;
   font-weight: 600;
   color: var(--primary);
   margin-bottom: 0.5rem;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
   background: transparent;
   border: none;
   width: 100%;
   text-align: left;
   padding: 0.5rem 0;
 }

 .faqQuestion:focus {
   outline: 3px solid rgba(10, 80, 120, 0.12);
   border-radius: 6px;
 }

 .faqAnswer {
   color: var(--gray);
   margin-top: 0.75rem;
   display: none;
 }

 .faqItem.open .faqAnswer {
   display: block;
 }

 /* CTA Section */
 .ctaSection {
   background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
   color: white;
   text-align: center;
   padding: 4rem 0;
   position: relative;
   overflow: hidden;
   border-radius: 8px;
 }

 .ctaSection::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
   transform: rotate(30deg);
   animation: shimmer 8s infinite linear;
 }

 .ctaSection h2 {
   font-size: 2.2rem;
   margin-bottom: 1.5rem;
   position: relative;
 }

 .ctaSection p {
   max-width: 700px;
   margin: 0 auto 2rem;
   font-size: 1.1rem;
   position: relative;
 }

 /* Animations */
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes shimmer {
   from {
     transform: translateX(-100%) rotate(30deg);
   }

   to {
     transform: translateX(100%) rotate(30deg);
   }
 }

 /* Responsive */
 @media (max-width:768px) {
   .pageHeader h1 {
     font-size: 2.2rem;
   }

   .sectionTitle h2 {
     font-size: 1.8rem;
   }

   .pricingGrid {
     grid-template-columns: 1fr;
   }

   .pricingCard.popular {
     transform: scale(1);
   }

   .pricingCard.popular:hover {
     transform: translateY(-10px);
   }
 }

 /* small accessibility focus */
 /*a:focus,*/
 /*button:focus {*/
 /*  outline: 3px solid rgba(228, 53, 58, 0.15);*/
 /*  outline-offset: 3px;*/
 /*  border-radius: 6px;*/
 /*}*/