* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #070c3b;
    background-color: #ffffff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0px 4px 24px rgba(18, 9, 61, 0.05);
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 5px;
    margin: 20px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.logo {
    width: 172px;
    height: 39px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #070c3b !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover {
    color: #1f57a4;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-apply {
    background-color: #ffffff;
    color: #1f57a4;
    border: 1px solid rgba(31, 87, 164, 0.3);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 4px 24px rgba(18, 9, 61, 0.05);
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: #f3f8fe;
}

.btn-login {
    background-color: #1f57a4;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0px 4px 24px rgba(18, 9, 61, 0.05);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #1a4d94;
}

/* Hero Section */
.hero-section {
    background-image: url('../assets/images/img_bggrid.png');
    background-size: cover;
    background-position: center;
    /* padding: 151px 0 200px; */
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: 'Geist', sans-serif;
    font-size: 96px;
    font-weight: 600;
    line-height: 125px;
    background: linear-gradient(345deg, #111111 0%, #1071f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 58px;
    color: #070c3b;
    margin-bottom: 24px;
}
.hero-subtitle-smaller {
    font-family: 'Geist', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 58px;
    color: #070c3b;
    margin-bottom: 24px;
}

.hero-price {
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    color: #0f70f6;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #070c3b;
    margin-bottom: 32px;
}

.hero-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6f727f;
    max-width: 507px;
    margin: 0 auto 44px;
}

.btn-primary {
    background-color: #1f57a4;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 4px 24px rgba(18, 9, 61, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a4d94;
    transform: translateY(-2px);
}

/* Section Headers */
.section-tag {
    background-color: #f3f8fe;
    color: #1f57a4;
    border: 1px solid rgba(31, 87, 164, 0.3);
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Geist', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 73px;
    color: #070c3b;
    margin-bottom: 40px;
}

.gradient-text {
    background: linear-gradient(135deg, #5efce8 0%, #413bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Section */
.why-section {
    /* padding: 50px 0; */
    padding: 30px 0;
}

.why-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.why-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-item {
    background-color: #ffffff;
    border: 1px solid #e3eaf3;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 40px 40px rgba(31, 87, 164, 0.04);
}

.why-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    margin-bottom: 13px;
}

.why-item-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    color: #070c3b;
    margin-bottom: 8px;
}

.why-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6f727f;
}

.why-visual {
    flex: 1;
    background: linear-gradient(154deg, rgba(16, 113, 246, 0) 0%, rgba(16, 113, 246, 0.2) 50%, rgba(16, 113, 246, 0) 100%);
    border: 1px solid #e3eaf3;
    border-radius: 12px;
    padding: 70px 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-image {
    max-width: 100%;
    height: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 20px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.benefit-card {
    background: linear-gradient(90deg, rgba(16, 113, 246, 0.08) 0%, rgba(255, 255, 255, 0) 50%, rgba(16, 113, 246, 0.04) 100%);
    border: 1px solid #e3eaf3;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card.large {
    grid-column: span 2;
}

.benefit-icon {
    width: 96px;
    height: 96px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    color: #070c3b;
    max-width: 364px;
    margin: 0 auto;
}

.benefit-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background-color: #071039;
    background-image: url('../assets/images/img_bg.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(16, 113, 246, 0.05);
    padding: 50px 0px 140px 0px;
    text-align: center;
    color: #ffffff;
}

.beta-cta-text {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin: 0 0 16px 0; /* space between text and button */
}

.cta-title {
    font-family: 'Geist', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 73px;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1f57a4;
    border: 1px solid rgba(31, 87, 164, 0.3);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 4px 24px rgba(18, 9, 61, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f3f8fe;
}

/* Preview Section */
.preview-section {
    padding: 80px 0;
}

.preview-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.preview-text {
    flex: 1;
}

.preview-title {
    font-family: 'Geist', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
    color: #111111;
    margin-bottom: 20px;
}

.preview-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #6f727f;
    margin-bottom: 30px;
}

.preview-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #1f57a4;
}

.preview-video {
    flex: 1;
    background-color: #1f57a4;
    border-radius: 12px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(16, 113, 246, 0.1) 100%);
    position: relative;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 717px;
    height: 717px;
    background-image: url('../assets/images/img_bgdecor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-family: 'Geist', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 56px;
    color: #111111;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f8f9fa;
}

.faq-question {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #070c3b;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6f727f;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Final CTA Section */
.final-cta-section {
    background-color: #070c3b;
    background-image: url('../assets/images/img_bg_blue_a400_01.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(16, 113, 246, 0.05);
    padding: 140px 0;
    text-align: center;
    color: #ffffff;
}

.final-cta-title {
    font-family: 'Geist', sans-serif;
    font-size: 88px;
    font-weight: 600;
    line-height: 88px;
    margin-bottom: 30px;
}

.final-cta-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 20px;
}

.july-badge {
    background: linear-gradient(135deg, #5efce8 0%, #413bff 100%);
    border-radius: 22px;
    padding: 4px 16px;
    font-family: 'Geist', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 37px;
    color: #ffffff;
}

.final-cta-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 70px 0 1px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 40px; */
}

.footer-section {
    flex: 1;
}

.footer-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 22px;
}

.footer-link {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-email {
    background: linear-gradient(135deg, #5efce8 0%, #413bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: #6f727f;
    padding-top: 40px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .play-button img {
        width: 350px !important;
    }
    
    .gradient-text {
       font-size: 63px;
    }

    .marginTopCss {
        margin-top: 0px !important;
    }

    .btnCtaExtraClass {
        padding: 10px !important;
        min-width: 300px !important;
        font-size: inherit !important;
        border-radius: 10px !important;
    }

    .header {
        margin: 20px;
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 60px;
    }

    .hero-subtitle {
        font-size: 28px;
        line-height: 36px;
    }

    .section-title {
        font-size: 36px;
        line-height: 44px;
    }

    .why-content {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card.large {
        grid-column: span 1;
    }

    .preview-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-content-custom {
    max-width: 722px !important;
}

.modal-content-custom-agenda {
    max-width: 1400px !important;
    height: 700px !important;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #000;
}

.btn-primary-custom {
  padding: 20px 60px;
  min-width: 300px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.btn-primary-custom:hover {
  transform: scale(1.05);
  background-color: #0056b3;
}

@media (min-width: 769px) {
    .btnCtaExtraClass {
        padding: 10px !important;
        min-width: 850px !important;
        font-size: 1.5rem !important;
        border-radius: 10px !important;
    }
    .extraHeaderclass {
        height: 75px !important;
        margin-bottom: 0px !important;
    }
    .heroTitleLineHght {
        line-height: 100px !important;
    }
    .extraHeadCl {
       align-items: flex-start !important;
    }
    .extraHeadAnCl {
        align-self: flex-start !important;
    }
    .newLogoCls {
        margin-top: 0 !important;
        height: 60px !important;
        width: auto !important;
    }
    .navMenuExtracl {
        align-self: flex-start !important;
        margin-top: 0 !important;
    }
    .headerButtonsClssExtra {
        align-self: flex-start !important;
        margin-top: 0 !important;
    }
    .agendaBttnCl {
        padding: 100px 10px 100px 10px !important;
    }
}

.btn-primary-custom-mid {
  padding: 20px 60px;
  min-width: 300px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  background-color: #ffffff;
  color: #1f57a4;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.btn-primary-custom-mid:hover {
  transform: scale(1.05);
  background-color: #f3f8fe;
}

.marginTopCss {
    margin-top: 45px;
}

.agendaBttnCl {
    padding: 10px;
    background-image: none !important;
}

.classH1 {
    color: #004080;
    font-size: 24px;
    margin-bottom: 10px;
}
.classH2 {
    color: #004080;
    font-size: 20px;
    margin-top: 30px;
}
.classH3 {
    font-size: 18px;
    margin-top: 20px;
    color: #333;
}
  
.classUl {
    padding-left: 20px;
    line-height: 1.6;
}
.classUlLi {
    margin-bottom: 5px;
    text-align: left;
}

@media screen and (max-width: 600px) {
    .classH1 {
        font-size: 20px;
    }
    .classH2 {
        font-size: 18px;
    }
    .classH3 {
        font-size: 16px;
    }
}
.divScrollerCls {
    overflow-y:auto; overflow-x:hidden; max-height:400px; margin-bottom:20px;
}
.divScrollerButtonSect {
    text-align:center; margin-top:20px;
}
.btnPrimaryVideo {
    width: 30%;
    margin-top: 18px;
    align-self: center;
}

.videoScroller1 {
    max-height:70vh; overflow-y:auto; width:100%;
}

.videoScroller2 {
   position:relative; padding-bottom:56.25%; height:0; overflow:hidden; max-width:100%;
}

.videoScroller3 {
   position:absolute; top:0; left:0; width:100%; height:100%;
}