@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* CSS VARIABLES & RESET */
:root {
   --primary-blue: #008acf;
   --accent-cyan: #00d4ff;
   --bg-white: #ffffff;
   --text-dark: #111418;
   --text-gray: #333;
   --bg-soft: #f8fafc;
   --transition: all 0.3s ease;
}


* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}


body {
   margin: 0;
   font-family: 'Poppins', sans-serif;
   background: #fff;
}


.page-container {
   max-width: 100%;
   margin: 0 auto;
}


/* ANIMATIONS */
@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }


   to {
       opacity: 1;
       transform: translateY(0);
   }
}


@keyframes fadeIn {
   from {
       opacity: 0;
   }


   to {
       opacity: 1;
   }
}


.animate-on-scroll {
   opacity: 0;
}


.fade-in {
   animation: fadeIn 1s ease-out forwards;
}


.fade-in-up {
   animation: fadeInUp 0.8s ease-out forwards;
}


.fade-in-up-delay-1 {
   animation: fadeInUp 0.8s ease-out 0.2s forwards;
}


.fade-in-up-delay-2 {
   animation: fadeInUp 0.8s ease-out 0.4s forwards;
}


.fade-in-up-delay-3 {
   animation: fadeInUp 0.8s ease-out 0.6s forwards;
}


/* SHARED SECTION STYLES */
.section {
   padding: 80px 0;
}


.bg-white {
   background-color: #fff;
}


.bg-soft {
   background-color: var(--bg-soft);
}


.content-wrapper {
   /* max-width: 87.5rem; */
   margin: 0 auto;
   padding: 0 3%;
}


.section-header {
   text-align: center;
   max-width: 75rem;
   margin: 0 auto 3.5rem;
}


.section-title {
   font-size: 3rem;
   line-height: 1.2;
   margin-bottom: 20px;
   font-weight: 700;
   color: var(--primary-blue);
   letter-spacing: -0.033em;
}


.section-subtitle {
   font-size: 1.125rem;
   line-height: 1.8;
   max-width: 56.25rem;
   margin: 0 auto;
   color: var(--text-gray);
}


.section-description {
   font-size: 1.125rem;
   line-height: 1.8;
   max-width: 56.25rem;
   margin: 0 auto;
   color: var(--text-gray);
}


.gradient-text {
   background: linear-gradient(90deg, #2BACE2 0%, #243377 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   display: inline-block;
}


/* HERO SECTION  */
.hero-section {
   min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 80px 50px;
   background: var(--bg-white);
}


.hero-content {
   max-width: 100%;
   width: 100%;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 4.375rem;
   align-items: center;
}


.hero-visual {
   display: flex;
   align-items: center;
   justify-content: center;
}


.hero-visual lottie-player {
   width: 100%;
   max-width: 550px;
   height: 550px !important;
   filter: drop-shadow(0 1.25rem 2.5rem rgba(0, 138, 207, 0.15));
   transition: transform 0.3s ease;
}


.hero-visual:hover lottie-player {
   transform: scale(1.05);
}


.hero-title {
   font-size: 3.5rem;
   font-weight: 700;
   color: var(--text-dark);
   line-height: 1.1;
   letter-spacing: -1.5px;
   margin-bottom: 30px;
}


.hero-description {
   font-size: 1.25rem;
   color: var(--text-gray);
   line-height: 1.8;
   margin-bottom: 25px;
   font-weight: 500;
}


.hero-highlight-text {
   font-weight: 700;
   background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   display: inline-block;
   font-size: 1.4rem;
}


.hero-additional-text {
   font-size: 1.1rem;
   color: var(--text-gray);
   line-height: 1.8;
   margin-bottom: 45px;
}


.hero-btns .btn-main {
   display: inline-block;
   background: #ffffff !important;
   color: #2655A5 !important;
   border: 1.5px solid #2655A5 !important;
   padding: 0.8rem 2rem !important;
   font-size: 1rem !important;
   font-weight: 500 !important;
   border-radius: 0.5rem !important;
   text-decoration: none;
   transition: all 0.3s ease;
}


.hero-btns .btn-main:hover {
   background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%) !important;
   color: #ffffff !important;
   border-color: transparent !important;
   transform: translateY(-3px);
   box-shadow: 0 4px 12px rgba(0, 138, 207, 0.3);
}


/* OUTCOMES / APPROACH SECTION */
.outcomes-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.1rem;
   margin-top: 3rem;
}


.outcome-card {
   background: var(--bg-white);
   border: 0.0625rem solid #e2e8f0;
   border-radius: 1.25rem;
   padding: 2rem 2rem;
   transition: var(--transition);
   height: 100%;
}


.outcome-card:hover {
   transform: translateY(-0.25rem);
   box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
   border-color: #008ACF;
}


.outcome-icon {
   width: 4.5rem;
   height: 4.5rem;
   background: rgba(0, 138, 207, 0.1);
   border-radius: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary-blue);
   margin-bottom: 2rem;
}


.outcome-icon .material-symbols-outlined {
   font-size: 2.5rem;
}


.outcome-title {
   font-size: 1.35rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 18px;
   line-height: 1.3;
}


.outcome-text {
   font-size: 1.05rem;
   color: var(--text-gray);
   line-height: 1.7;
}


/* NEW APPROACH SECTION STYLES */
.approach-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}


.approach-card {
   background: #ffffff;
   padding: 2.5rem 2rem;
   border-radius: 1.25rem;
   border: 1px solid #e2e8f0;
   position: relative;
   transition: all 0.3s ease;
}




.approach-card:hover {
   transform: translateY(-0.25rem);
   box-shadow: 0 1rem 2rem rgba(43, 61, 145, 0.08);
   border-color: #2BACE2;
}


.approach-card:hover .step-badge {
   transform: translateY(-0.25rem);
   box-shadow: 0 0.8rem 1.5rem rgba(43, 61, 145, 0.3);
}


.step-badge {
   position: absolute;
   top: -1.25rem;
   left: 2rem;
   width: 3rem;
   height: 3rem;
   background: linear-gradient(135deg, #2BACE2 0%, #2A3C90 100%);
   color: #fff;
   border-radius: 0.75rem;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.25rem;
   box-shadow: 0 0.5rem 1rem rgba(43, 61, 145, 0.2);
}


.approach-title {
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--text-dark);
   margin-bottom: 1.25rem;
   line-height: 1.2;
}


.approach-text {
   font-size: 1rem;
   color: #64748b;
   line-height: 1.6;
}


/* WHY CHOOSE US SECTION */
.benefits-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 2.5rem;
}


.benefit-card {
   width: calc((100% - 7.5rem) / 4);
   min-width: 250px;
   text-align: center;
   padding: 3rem 2rem;
   border-radius: 1.5rem;
   background: #F0F7FF;
   border: 1px solid rgba(43, 172, 226, 0.1);
   transition: var(--transition);
}


.benefit-card:hover {
   background: #ffffff;
   box-shadow: 0 1rem 2rem rgba(43, 61, 145, 0.08);
   transform: translateY(-5px);
}


.benefit-icon-circle {
   width: 5.5rem;
   height: 5.5rem;
   background: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary-blue);
   margin: 0 auto 1.75rem;
   box-shadow: 0 0.5rem 1.5rem rgba(0, 138, 207, 0.12);
}


.benefit-icon-circle .material-symbols-outlined {
   font-size: 2.5rem;
}


.benefit-description {
   font-size: 1.15rem;
   font-weight: 600;
   color: var(--text-dark);
   line-height: 1.5;
}


/* CTA SECTION */
.bt-cta {
   padding: 100px 0;
   background: #fff;
}


.cta-banner-premium {
   background: #cfeafd;
   border-radius: 3rem;
   display: flex;
   align-items: center;
   padding: 15px;
   overflow: hidden;
   position: relative;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}


.cta-info-side {
   flex: 1.3;
   padding: 15px;
   text-align: left;
}


.cta-info-side h2 {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--text-dark);
   line-height: 1.2;
   margin-bottom: 20px;
   letter-spacing: -0.0625rem;
}


.cta-info-side p {
   font-size: 1.2rem;
   color: #475569;
   max-width: 55rem;
   line-height: 1.6;
   margin-bottom: 40px;
}


.cta-actions {
   display: flex;
   gap: 1.5rem;
   align-items: center;
}


.btn-cta-white {
   display: inline-block;
   background: #ffffff !important;
   color: #2655A5 !important;
   border: 1.5px solid #2655A5 !important;
   padding: 0.625rem 1.5rem !important;
   font-size: 1rem !important;
   font-weight: 500 !important;
   border-radius: 0.5rem !important;
   text-decoration: none;
   transition: all 0.3s ease;
}


.btn-cta-white:hover {
   background: linear-gradient(90deg, #2BACE2 0%, #2A3C90 100%) !important;
   color: #ffffff !important;
   border-color: transparent !important;
   transform: translateY(-3px);
}


.cta-image-side {
   flex: 0.7;
   display: flex;
   justify-content: flex-end;
   align-self: center;
}


.cta-mockup-img {
   max-height: 380px;
   width: auto;
   max-width: 100%;
   object-fit: contain;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
   .section {
       padding: 60px 0;
   }


   .hero-title {
       font-size: 3rem;
   }


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


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


   .benefit-card {
       width: calc((100% - 2.5rem) / 2);
   }


   .cta-banner-premium {
       flex-direction: column;
       text-align: center;
       padding: 50px 30px;
   }


   .cta-info-side {
       text-align: center;
   }


   .cta-info-side h2 {
       font-size: 2.25rem;
   }


   .cta-actions {
       justify-content: center;
   }


   .cta-image-side {
       margin-top: 40px;
       justify-content: center;
   }
}


@media (max-width: 768px) {
   .section {
       padding: 50px 0;
   }


   .hero-section {
       padding: 40px 20px;
       min-height: auto;
   }


   .hero-content {
       grid-template-columns: 1fr;
       text-align: center;
   }


   .hero-visual {
       order: -1;
       margin-bottom: 2rem;
   }


   .hero-visual lottie-player {
       height: 350px !important;
   }


   .hero-title {
       font-size: 2.5rem;
   }


   .section-title {
       font-size: 2.25rem;
   }


   .outcomes-grid {
       grid-template-columns: 1fr;
   }


   .approach-grid {
       grid-template-columns: 1fr;
   }


   .benefit-card {
       width: 100%;
   }


   .cta-info-side h2 {
       font-size: 1.85rem;
   }
}

