.navbar,
body {
    background-color: var(--white-color)
}

.dropdown-menu,
.navbar {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.footer a,
body {
    font-weight: 500
}

.calc-nav-item.active .calc-nav-text,
.dropdown-item {
    font-size: 16px
}

.dropdown-item,
.footer a,
.footer-bottom a,
.footer-bottom a:hover,
.sticky-cta-button {
    text-decoration: none
}

:root {
    --primary-color: #054f98;
    --secondary-color: #c5eaff24;
    --success-color: #2ccc2c;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient-top: #0052D4;
    --gradient-middle: #0066FF;
    --gradient-bottom: #4E95FF
}

body {
    width: 100vw;
    overflow-x: hidden;
    font-family: Montserrat, sans-serif;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

.logo {
    width: auto;
    height: 100px;
    max-height: 50%;
    padding: 0;
    margin: 0;
    display: block
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    transition: box-shadow .3s ease-in-out
}

.navbar-nav .nav-item {
    margin: 0 15px;
    font-weight: 500;
    position: relative
}

.navbar-nav .nav-link {
    color: var(--black-color);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 5px
}

.navbar-nav .nav-item:hover>.nav-link {
    background-color: var(--hover-color)
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: translateY(15px);
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    background-color: var(--primary-color);
    min-width: 200px;
    border-radius: 5px;
    padding: 5px 0
}

.dropdown-item,
.dropdown-submenu {
    position: relative
}

.nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-item {
    padding: 8px 15px;
    color: var(--text-color);
    transition: .3s ease-in-out;
    display: block;
    background-color: var(--white-color)
}

.dropdown-item:hover,
.footer a:hover,
.footer-bottom,
.footer-bottom a,
.footer-top {
    color: var(--white-color)
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    text-indent: 10px
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(-10px)
}

.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)
}

.dropdown-item i,
.nav-link i {
    font-size: 10px;
    margin-left: 7px;
    transition: transform .3s ease-in-out
}

.dropdown-submenu:hover>.dropdown-item>i,
.nav-item.dropdown:hover>.nav-link>i {
    transform: rotate(180deg)
}

.dropdown-toggle::after {
    display: none
}

@media (max-width:991px) {
    .navbar-nav {
        padding: 10px 0
    }

    .navbar-nav .nav-item {
        margin: 2px 0;
        width: 100%
    }

    .dropdown-item,
    .navbar-nav .nav-link {
        padding: 12px 20px;
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        background-color: rgba(255, 255, 255, .1);
        border-radius: 0;
        padding: 0;
        display: none;
        background-color: var(--white-color);
        opacity: 1;
        visibility: visible
    }

    .dropdown-menu.show,
    .dropdown-submenu.show>.dropdown-menu {
        display: block
    }

    .dropdown-submenu>.dropdown-menu {
        position: static;
        left: 0;
        padding-left: 30px;
        transform: none;
        display: none
    }

    .dropdown-item {
        background-color: transparent
    }

    .dropdown-item:hover {
        text-indent: 0;
        background-color: rgba(0, 0, 0, .1)
    }

    .dropdown-submenu.show>.dropdown-item>i,
    .nav-item.dropdown.show>.nav-link>i {
        transform: rotate(180deg)
    }

    .dropdown-submenu .dropdown-item {
        padding-left: 40px
    }
}

@media (min-width:992px) {
    .dropdown-menu {
        top: 100%;
        left: 0
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%
    }
}

@media (max-width:1200px) {
    .action-button {
        display: none !important
    }
}

.footer-top {
    background-color: var(--primary-color);
    padding: 40px 0
}

.footer-bottom {
    background-color: #001326;
    padding: 10px 0;
    text-align: center
}

.footer .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px
}

.footer ul {
    list-style: none;
    padding: 0
}

.footer ul li {
    margin: 20px;
    position: relative
}

.footer a {
    color: #fff;
    transition: color .3s
}

.list-border li {
    border-bottom: 1px dashed #cccccc44;
    padding-bottom: 10px
}

.hero-section {
    background-color: #2d2d2d;
    color: #fff;
    padding: 90px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden
}

.about-section,
.calc-nav-item.active .calc-nav-circle {
    background: linear-gradient(135deg, #054f98, #1976d2, #5fa8f0)
}

.hero-content {
    padding-top: 70px
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 550px
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0) translateX(-50%)
    }

    40% {
        transform: translateY(-20px) translateX(-50%)
    }

    60% {
        transform: translateY(-10px) translateX(-50%)
    }
}

@media (max-width:991px) {
    .hero-title {
        font-size: 42px
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px
    }

    .hero-text {
        margin: 0 auto
    }
}

.about-section {
    color: #fff;
    padding: 80px 30px;
    border-radius: 24px;
    margin: 40px 0
}

.section-title {
    line-height: 1.2
}

.highlight-text,
.secondary-text {
    color: var(--success-color)
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 50px;
    max-width: 600px
}

.stat-badge,
.stat-icon {
    align-items: center;
    color: #000
}

.stats-container {
    margin: 50px 0
}

.stat-badge {
    background-color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    margin: 10px;
    display: inline-flex;
    gap: 12px;
    border: 1px solid #4a4a4a
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-weight: 700
}

.stat-text {
    font-size: 14px;
    font-weight: 600
}

.stat-number {
    color: var(--success-color);
    font-weight: 700
}

.features-grid {
    margin-top: 60px
}

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #4a4a4a;
    transition: transform .3s, box-shadow .3s;
    height: 100%
}

.calc-nav-circle,
.feature-icon {
    border-radius: 50%;
    display: flex
}

.calc-nav-circle,
.calc-nav-item {
    transition: .4s cubic-bezier(.4, 0, .2, 1)
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 248, 42, .1)
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2a2a2a;
    font-size: 24px
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000
}

.feature-description {
    font-size: 14px;
    color: #727272;
    line-height: 1.4
}

.calc-calculator-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.calc-nav-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px
}

.calc-nav-item {
    position: relative;
    margin: 0 15px;
    cursor: pointer
}

.calc-nav-circle {
    width: 120px;
    height: 120px;
    background: var(--success-color);
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    border: 3px solid transparent
}

.calc-nav-item.active .calc-nav-circle {
    width: 150px;
    height: 150px;
    border-color: var(--success-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
    transform: translateY(-10px)
}

.calc-nav-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.1
}

.calc-content-container {
    border-radius: 30px 30px 0 0;
    margin-top: -20px;
    padding: 50px 0;
    position: relative;
    z-index: 2
}

.calc-calculator-content {
    display: none;
    animation: .5s ease-in-out calc-fadeIn
}

.calc-calculator-content.active {
    display: block
}

@keyframes calc-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.calc-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px
}

.btn-custom,
.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    font-weight: 600;
    transition: .3s;
    margin: 30px auto 0;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px
}

.btn-primary:hover {
    background: var(--success-color);
    transform: translateY(-2px)
}

.btn-custom,
.btn-secondary {
    background: var(--success-color);
    border: none;
    border-radius: 8px
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px)
}

.blog-card:hover,
.timeline-card:hover,
.video-card:hover,
.why-box:hover {
    transform: translateY(-5px)
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    background: #fff;
    border-bottom: 5px solid var(--primary-color);
    margin-bottom: 10px
}

.blog-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, .15)
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0
}

.blog-content {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333
}

.accordion-button,
.day,
.qr-text {
    font-weight: 500
}

.blog-description {
    font-size: .9rem;
    color: #666
}

.testimonial-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    transition: .3s;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-bottom: 5px solid var(--success-color)
}

.testimonial-card i.fa-user-circle {
    font-size: 40px;
    margin-bottom: 10px;
    transition: color .3s
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 10px
}

.testimonial-name {
    font-style: italic;
    font-weight: 500;
    margin-top: 10px
}

.testimonial-card.middle,
.testimonial-card:not(.middle):hover {
    background-color: var(--primary-color);
    color: #fff
}

.sticky-timer-expired .sticky-time-number,
.sticky-timer-expired .sticky-timer-icon,
.testimonial-card.middle i.fa-user-circle,
.testimonial-card:not(.middle):hover i.fa-user-circle {
    color: #fff
}

.testimonial-card.middle:hover {
    background-color: #fff;
    color: #000
}

.primary-text,
.testimonial-card.middle:hover i.fa-user-circle {
    color: var(--primary-color)
}

.app-download-section {
    background: linear-gradient(135deg, #054f98, #1976d2, #5fa8f0);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.phone-frame {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 20px;
    width: 240px;
    margin: 0 auto;
    position: relative
}

.qr-code {
    width: 100%;
    max-width: 160px;
    display: block;
    margin: 0 auto
}

.qr-text {
    color: #000;
    margin-top: 15px
}

.download-title {
    font-size: 32px;
    color: #fff
}

.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: flex-start
}

.store-btn {
    height: 50px
}

.background-logo {
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: 180px;
    opacity: .05;
    z-index: 0
}

@media (max-width:768px) {

    .download-title,
    .footer {
        text-align: center
    }

    .footer ul {
        padding-left: 0
    }

    .calc-title,
    .section-title {
        font-size: 36px
    }

    .stat-badge {
        margin: 5px;
        padding: 12px 20px
    }

    .features-grid {
        margin-top: 40px
    }

    .calc-nav-item {
        margin: 0 8px
    }

    .calc-nav-circle {
        width: 60px;
        height: 60px
    }

    .calc-nav-item.active .calc-nav-circle {
        width: 90px;
        height: 90px
    }

    .calc-nav-icon {
        font-size: 16px
    }

    .calc-nav-item.active .calc-nav-icon {
        font-size: 20px
    }

    .calc-nav-text {
        font-size: 8px
    }

    .calc-nav-item.active .calc-nav-text {
        font-size: 10px
    }

    .blog-card {
        max-width: 100%
    }

    .blog-img img {
        height: 180px
    }

    .store-buttons {
        justify-content: center
    }

    .background-logo {
        right: 10px;
        bottom: 10px;
        width: 120px
    }

    .audience-line {
        display: none
    }

    .audience-row {
        flex-direction: column !important;
        gap: 1rem
    }
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .03);
    border-top: 3px solid var(--success-color)
}

.accordion-item+.accordion-item {
    border-top: 3px solid var(--success-color)
}

.accordion-button {
    padding: 20px 25px;
    color: var(--white-color);
    background-color: #f8f9fa;
    border-radius: 10px !important;
    transition: .3s
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--success-color);
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 255, .1)
}

.accordion-body {
    padding: 20px 25px;
    color: #555;
    line-height: 1.7
}

.calendly-btn,
.whatsapp-btn {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3)
}

.whatsapp-btn img {
    width: 50px;
    height: 30px
}

.calendly-btn img {
    width: 80px;
    height: 50px
}

.whatsapp-btn {
    bottom: 220px;
    background-color: #25d366
}

.calendly-btn,
.help-section {
    background-color: #fff
}

.calendly-btn {
    bottom: 150px
}

.clientimg {
    max-width: 60%;
    height: auto;
    border-radius: 50%
}

.help-card {
    border: 1px solid #d9e4f0;
    border-radius: 12px;
    padding: 30px 20px;
    transition: .3s;
    background-color: #f9fcff;
    height: 100%
}

.help-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.help-icon img {
    width: 36px;
    height: 36px
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.hours-list li {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0
}

.hours-list li:last-child {
    border-bottom: none
}

.day {
    color: var(--dark-color)
}

.time {
    color: #666
}

.video-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.video-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.video-thumbnail iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: none
}

.video-content {
    padding: 15px;
    text-align: center
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    min-height: 45px
}

.video-description {
    font-size: .875rem;
    color: #555;
    margin-bottom: 12px;
    min-height: 50px
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7)
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    padding: 15px;
    z-index: 10
}

.modal-close,
.modal-content .close {
    position: absolute;
    top: 10px;
    font-size: 24px;
    cursor: pointer
}

.modal-content .close {
    right: 15px
}

.video-wrapper iframe {
    width: 100%;
    height: 400px
}

.modal-close {
    right: 12px;
    background-color: #ff3b3b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 32px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    transition: background-color .3s
}

.modal-close:hover {
    background-color: #e60000
}

.blink {
    color: #054f98;
    animation: 1s infinite blinkColor;
    font-weight: 700
}

@keyframes blinkColor {

    0%,
    100% {
        color: #054f98
    }

    50% {
        color: #2ccc2c
    }
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px
}

.why-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .04);
    height: 100%;
    transition: .3s
}

.why-box:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, .08)
}

.why-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 10px
}

.why-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px
}

.why-desc {
    font-size: 14px;
    color: #555
}

.audience-container {
    position: relative;
    padding: 2rem 1rem;
    text-align: center
}

.audience-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 120px
}

.audience-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2
}

.timeline-line,
.timeline-line::before {
    border-radius: 2px;
    top: 0;
    position: absolute
}

.audience-line {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--success-color);
    z-index: 1;
    border-radius: 2px
}

.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0, #fff 100%)
}

.timeline-section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--success-color);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2
}

.timeline-highlight-text {
    color: var(--primary-color);
    position: relative
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0
}

.timeline-line {
    left: 50%;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
    transform: translateX(-50%)
}

.timeline-line::before {
    content: '';
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-color) 0, var(--primary-color) 100%);
    animation: 4s ease-in-out infinite timeline-fill
}

@keyframes timeline-fill {

    0%,
    100% {
        height: 0%
    }

    50% {
        height: 100%
    }
}

.timeline-step {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center
}

.timeline-step:last-child {
    margin-bottom: 0
}

.timeline-step:nth-child(odd) {
    flex-direction: row
}

.timeline-step:nth-child(2n) {
    flex-direction: row-reverse
}

.timeline-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    animation: 2s ease-in-out infinite timeline-pulse
}

.timeline-step:first-child .timeline-circle,
.timeline-step:nth-child(2) .timeline-circle,
.timeline-step:nth-child(3) .timeline-circle,
.timeline-step:nth-child(4) .timeline-circle,
.timeline-step:nth-child(5) .timeline-circle,
.timeline-step:nth-child(6) .timeline-circle {
    background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-color) 100%)
}

@keyframes timeline-pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.timeline-content {
    flex: 1;
    max-width: 300px
}

.timeline-step:nth-child(odd) .timeline-content {
    margin-left: 40px;
    text-align: left
}

.timeline-step:nth-child(2n) .timeline-content {
    margin-right: 40px;
    text-align: right
}

.timeline-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(5, 79, 152, .1);
    border: 2px solid transparent;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px
}

.timeline-card:hover {
    box-shadow: 0 25px 60px rgba(5, 79, 152, .15);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateX(-100%)
}

.timeline-card-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    font-weight: 500
}

.timeline-primary-text {
    color: var(--primary-color);
    font-weight: 700
}

.sticky-timer-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    z-index: 1000;
    padding: 5px 0;
    box-shadow: 0 -4px 20px rgba(5, 79, 152, .3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    transform: translateY(0);
    transition: transform .3s ease-in-out
}

.sticky-timer-section.auto-hide,
.sticky-timer-section.hidden {
    transform: translateY(100%)
}

.sticky-timer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

.sticky-timer-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.sticky-timer-text {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px
}

.sticky-separator,
.sticky-time-number {
    font-weight: 700;
    color: var(--success-color)
}

.sticky-timer-icon {
    font-size: 24px;
    color: var(--success-color);
    animation: 2s ease-in-out infinite sticky-pulse
}

@keyframes sticky-pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.sticky-countdown-display {
    display: flex;
    gap: 15px;
    align-items: center
}

.sticky-time-unit {
    background: rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 10px 15px;
    text-align: center;
    min-width: 70px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    transition: .3s
}

.sticky-time-unit:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px)
}

.sticky-time-number {
    font-size: 24px;
    display: block;
    line-height: 1
}

.sticky-time-label {
    font-size: 12px;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px
}

.sticky-separator {
    font-size: 20px;
    animation: 1s ease-in-out infinite sticky-blink
}

@keyframes sticky-blink {

    0%,
    50% {
        opacity: 1
    }

    100%,
    51% {
        opacity: .3
    }
}

.sticky-cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px
}

.sticky-cta-button {
    background: var(--success-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(44, 204, 44, .3);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.sticky-cta-button:hover {
    background: #25a525;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 204, 44, .4);
    color: #fff
}

.sticky-urgency-text {
    font-size: 14px;
    opacity: .9;
    font-weight: 500;
    text-align: right
}

.sticky-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: .3s
}

.sticky-close-btn:hover {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.1)
}

.sticky-timer-expired {
    background: linear-gradient(135deg, #dc3545 0, #c82333 100%)
}

.demo-content {
    padding: 50px 0;
    min-height: 200vh
}

.demo-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px
}

.sticky-timer-section.slide-up {
    animation: .5s ease-out slideUp
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@media (max-width:768px) {
    .timeline-section-title {
        font-size: 32px
    }

    .timeline-step {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 60px
    }

    .timeline-content {
        max-width: 100%;
        margin: 20px 0 0 !important
    }

    .timeline-circle {
        width: 100px;
        height: 100px;
        font-size: 36px
    }

    .timeline-line {
        left: 20px;
        transform: none
    }

    body {
        padding-bottom: 140px
    }

    .sticky-timer-section {
        padding: 5px 0
    }

    .sticky-timer-container {
        flex-direction: column;
        gap: 15px;
        position: relative
    }

    .sticky-timer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%
    }

    .sticky-cta-section {
        align-items: center;
        width: 100%
    }

    .sticky-timer-text {
        font-size: 16px
    }

    .sticky-countdown-display {
        gap: 10px
    }

    .sticky-time-unit {
        min-width: 60px;
        padding: 8px 12px
    }

    .sticky-time-number {
        font-size: 20px
    }

    .sticky-time-label {
        font-size: 10px
    }

    .sticky-urgency-text {
        text-align: center
    }
}

@media (max-width:576px) {
    .sticky-countdown-display {
        flex-wrap: wrap;
        justify-content: center
    }

    .sticky-time-unit {
        min-width: 50px;
        padding: 6px 10px
    }

    .sticky-time-number {
        font-size: 18px
    }
}

.sticky-timer-section.auto-show {
    transform: translateY(0)
}


.masterclass-banner {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: white;
    color: #000;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}


.info-icon {
    width: 50px;
    height: 50px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.info-value:hover {
    font-size: 18px;
    font-weight: 600;
}

.masterclass-title {
    font-size: 200%;
    /* responsive font size based on viewport width */
    text-align: center;
    font-weight: bold;
    margin: 0 auto;
    width: 90%;
    /* width in % for better scaling */
}