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

:root {
    --orange: #FF6300;
    --yellow: #FFA600;
    --blue: #1700FF;
    --light-blue: #007EFF;
    --peach: #FFD4C4;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F5F5F5;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1400cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 0, 255, 0.3);
}

.btn-cta {
    background: var(--orange);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-purple {
    background: #5342FF;
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    background: #5b4bc4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.4);
}

.btn-cta:hover {
    background: #e55900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 99, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    padding: 14px 32px;
    border: 2px solid var(--orange);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 99, 0, 0.3);
}

.btn-cta-white {
    background: var(--white);
    color: var(--orange);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    padding: 12px 28px;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 20px;       
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    height: 45px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;       
    margin: 0 28px;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: 0.3s ease;
}

.nav-links .active {
    color: #ff6a00;
    font-weight: 600;
    border-bottom: 2px solid #ff6a00;
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: #ff6a00;
}

.nav-right {
    margin-left: auto;   
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-login {
    color: #4a43ff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
}

.btn-nav {
    background: #4a43ff;
    color: white;
    padding: 10px 26px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-nav:hover {
    background: #2a1aff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 0, 255, 0.3);
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--black);
    padding: 120px 0 0;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #5342FF !important;
    margin-bottom: 0px;
    text-align: center;
}

.hero h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--orange);
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--black);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--black);
    max-width: 530px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.highlight {
    color: #FF6300;
}

.highlight-alt {
    color: var(--orange);
}

.highlight-blue {
    color: var(--blue);
}

.highlight-purple {
    color: #5342FF;
}

.hero-illustration {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


.hero-footer {
    background: #4a43ff;
    color: var(--white);
    text-align: center;
    padding: 18px 0;
    margin-top: 50px;
}

.hero-footer p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Empower Section */
.empower-section {
    padding: 100px 0;
    background: var(--white);
}

.empower-section h2 {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.empower-section h2 .highlight,
.empower-section h2 .highlight-blue {
    font-weight: 700;
}

.service-selector {
    text-align: center;
    margin-bottom: 60px;
}

.selector-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #616161;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-btn {
    background: var(--white);
    border: 2px solid #FF8B41;
    padding: 24px 20px;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
    line-height: 1.3;
    position: relative;
}

.service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 99, 0, 0.2);
}

.service-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

/*Checkbox styles*/
.service-check {
    appearance: none; 
    position: absolute;
    top: 12px;
    left: 12px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--orange); 
    border-radius: 3px;
    background: var(--white); 
    cursor: pointer;
    transition: 0.2s ease;
}

.service-check:checked {
    background: var(--orange);
    border-color: var(--orange);
}

.service-check:checked::after {
    content: "✔";
    color: white;
    font-size: 12px;
    position: absolute;
    top: -2px;
    left: 2px;
}


.icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Carousel */
.carousel-container {
    position: relative;
    margin: 30px auto;
    max-width: 900px;
    padding: 0 170px;
}

.carousel-wrapper {
    overflow: visible;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
    position: relative;
    align-items: center;
}

.carousel-card {
    min-width: 100%;
    max-width: 100%;
    background: var(--white);
    padding: 0px 0px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0.3;
    transform: scale(0.85);
    transition: all 0.6s ease;
    filter: blur(4px);
    pointer-events: none;
}

.carousel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 2px;           
    background: linear-gradient(to top, #FFA400, #ffffff);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    pointer-events: auto;
    box-shadow:
        0 12px 30px rgba(255, 164, 0, 0.5),  
        0 0 20px rgba(255, 164, 0, 0.3),     
        0 8px 30px rgba(0, 0, 0, 0.12);      
}

.card-illustration {
    padding: 0px 0px 0;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

.card-illustration img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
}

.carousel-card p {
    padding: 0px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    text-align: center;
}



/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.stat-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-card p {
    font-size: 18px;
    font-weight: 600;
}

.stat-visual {
    background: var(--peach);
    border-radius: 16px;
    padding: 40px;
}

.chart-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.section-subtext {
    text-align: center;
    margin-top: 16px;
    color: var(--gray);
    font-size: 14px;
}
 
.empower-image-container {
    text-align: center;
    margin: 50px auto;
    max-width: 1000px;
}

.empower-image {
    width: 60%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    
}

.empower-section .btn-cta {
    display: inline-block;
    margin: 40px auto 0;
}

.empower-section .container {
    text-align: center;
}

/* Modules Section */
.modules-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.modules-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.modules-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
    font-weight: 400;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 99, 0, 0.1),
                0 12px 40px rgba(0, 0, 0, 0.15);
}

.module-icon {
    width: 95px;
    height: 95px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.module-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

.orange-icon {
    background: linear-gradient(135deg, #FFE5D9 0%, #FFD4C4 100%);
    color: var(--orange);
}

.blue-icon {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: var(--blue);
}

.yellow-icon {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFECB3 100%);
    color: var(--yellow);
}

.purple-icon {
    background: linear-gradient(135deg, #EDE7F6 0%, #D1C4E9 100%);
    color: #5342FF;
}

.module-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.module-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 24px;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    font-size: 14px;
    color: var(--black);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.module-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 20px;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.benefits-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto;
    gap: 30px;
    margin-bottom: 40px;
}

.benefits-intro {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    backdrop-filter: blur(6px);
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--white), var(--white)),
        linear-gradient(180deg, #FFFFFF 0%, #5342FF 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 24px rgba(83, 66, 255, 0.64);
}

.benefits-intro h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
}
.benefits-intro p {
    color: #444;
    font-size: 16px;
    margin: 20px 0 32px;
}

.benefits-featured {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(120, 120, 255, 0.15);
}

.featured-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.benefits-featured h3,
.benefits-featured p {
    padding: 0 24px; 
}

.benefits-featured h3 {
    margin-top: 20px; 
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
}

.benefits-featured p {
    padding-bottom: 24px; 
    font-size: 15px;
    color: #444;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 0;
    border: 1px solid rgba(120, 120, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.benefit-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin: 18px 0 6px;
}

.benefit-card p {
    padding: 0 20px 24px;
    font-size: 15px;
    color: #444;
}


@media (max-width: 1024px) {
    .benefits-top {
        grid-template-columns: 1fr;
    }
    .featured-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .benefits-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }
}


/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.team-section h2 {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
}

.team-section h2 .highlight{
    font-weight: 700;
}

.team-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.team-card {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 70px 30px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 60px;
}

/* Lift effect on hover - v2 */
.team-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 99, 0, 0.2),
                0 0 30px rgba(255, 99, 0, 0.3),
                0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}


.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    border: 4px solid var(--orange);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.role {
    font-size: 13px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 48px;
    font-weight: 700;
    height: 48px;
    width: 48px;
    line-height: 1;
     margin: 0 auto 16px auto;
    color: var(--black);
    font-family: Georgia, serif;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.team-section .btn-cta {
    display: inline-block;
    margin: 60px auto 0;
}

.team-section .container {
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.pricing-section h2 {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 12px;
}
.pricing-section h2 .highlight, .pricing-section h2 .highlight-blue{
    font-weight: 700;
}


.pricing-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 60px;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 99, 0, 0.2),
                0 0 30px rgba(255, 99, 0, 0.3),
                0 12px 40px rgba(0, 0, 0, 0.15);
}


.pricing-card.featured:hover {
    transform: translateY(-8px);
}

.popular-badge {
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 20px;
    font-weight: 700;
}

.amount {
    font-size: 36px;
    font-weight: 800;
}

.period {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.btn-pricing {
    width: auto;
    background: var(--black);
    color: var(--white);
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: inline-block;
}

.btn-pricing:hover {
    background: #333;
    transform: translateY(-2px);
}

.pricing-description {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 0 0 20px 0;
}

.features-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.features-list {
    list-style: none;
    margin-bottom: 0;
}

.features-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* Plan Highlights */
.plan-highlight {
    background: #FFD700;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 700;
}

.plan-highlight-gold {
    background: #FFD700;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 700;
}

.plan-highlight-enterprise {
    background: #FFD700;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 700;
}

/* Pricing Promo Text */
.pricing-promo {
    font-size: 11px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 500;
} 

/* Amount Text for Contact Us */
.amount-text {
    font-size: 27px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 4px;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('wave.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
}

.highlight_cta_section {
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 1;
    max-width: 1000px;
    margin-left: 20px;
    margin-right: 20px;
}

.contact-title {
    background: var(--white);
    color: var(--orange) !important;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 24px;
    width: 473px;
    height: 84px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-form {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
}

.form-header {
    padding: 34px 30px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.form-header p {
    font-size: 16px;
    color: var(--black);
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    color: var(--black);
    background: var(--white);
}

.contact-form > input[type="email"] {
    margin-bottom: 16px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form select option {
    color: var(--black);
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form select:invalid {
    color: #999;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: var(--orange);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
}

.btn-send:hover {
    background: #e55900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 99, 0, 0.4);
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
}

.form-terms input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-terms label {
    cursor: pointer;
    margin: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    box-sizing: border-box !important;
}

.contact-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}

.contact-form .form-row input,
.contact-form .form-row select {
    width: 100% !important;
}

.contact-form .form-group {
    margin-bottom: 0 !important;
}

.faq-section {
    background: var(--white);
    padding: 100px 0;
}

.faq-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--black);
}

.faq-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
    font-weight: 400;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--orange);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* Experience Banner */
.experience-banner {
    background: linear-gradient(135deg, #5342FF 0%, #1700FF 100%);
    padding: 80px 0;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-banner {
    background: var(--white);
    color: #5342FF;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    background: #f5f5f5;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo img {
    width: 200px;
    color: var(--orange);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 99, 0, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer p {
    font-size: 14px;
    opacity: 0.7;
    color: var(--black);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-content,
    .benefits-top,
    .cta-section .container {
        grid-template-columns: 1fr;
    }

    .benefits-intro {
        padding: 40px;
    }

    .benefits-grid,
    .team-grid,
    .pricing-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .empower-section h2,
    .benefits-intro h2,
    .team-section h2,
    .pricing-section h2,
    .cta-content h2,
    .modules-section h2,
    .banner-content h2,
    .faq-section h2 {
        font-size: 36px;
    }

    .nav-links {
        display: none;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .service-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .service-btn {
        min-width: 120px;
        padding: 20px 16px;
        font-size: 12px;
    }

    .icon-img {
        width: 36px;
        height: 36px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-card {
        min-width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    .carousel-card p {
        padding: 0;
    }

    .card-illustration {
        padding: 30px;
        margin-bottom: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

    .empower-section h2,
    .benefits-intro h2,
    .team-section h2,
    .pricing-section h2,
    .cta-content h2,
    .modules-section h2,
    .banner-content h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .benefits-intro {
        padding: 30px;
    }

    .service-buttons {
        gap: 8px;
    }

    .service-btn {
        min-width: 100px;
        padding: 16px 12px;
        font-size: 11px;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-card {
        padding: 20px;
    }

    .carousel-card p {
        padding: 0;
        font-size: 13px;
    }

    .card-illustration {
        padding: 20px;
        margin-bottom: 16px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-in {
    animation: fadeIn 0.8s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
