/*
Theme Name: TWOads School
Theme URI: https://twoads.ro
Author: TWOads
Author URI: https://twoads.ro
Description: Custom WordPress theme for TWOads Google Ads School landing page
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twoads-school
*/

/* Font Faces */
@font-face {
    font-family: 'ClashGrotesk';
    src: url('assets/fonts/ClashGrotesk-Variable.woff2') format('woff2'),
         url('assets/fonts/ClashGrotesk-Variable.woff') format('woff'),
         url('assets/fonts/ClashGrotesk-Variable.ttf') format('truetype'),
         url('assets/fonts/ClashGrotesk-Variable.eot') format('embedded-opentype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Regular.woff2') format('woff2'),
         url('assets/fonts/Montserrat-Regular.woff') format('woff'),
         url('assets/fonts/Montserrat-Regular.ttf') format('truetype'),
         url('assets/fonts/Montserrat-Regular.eot') format('embedded-opentype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4632DA;
    --primary-dark: #4f46e5;
    --color-white: #ffffff;
    --bg-dark: #09061A;
    --bg-card: #12122a;
    --bg-light: #1a1a3a;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --text-muted: #6b7280;
    --accent-purple: #8b5cf6;
    --gradient-start: #6366f1;
    --gradient-end: #8b5cf6;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: 'ClashGrotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.logo-text,
.pricing-price,
.countdown-item span,
.countdown-item-large span {
    font-family: 'ClashGrotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #09061A;
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.logo-highlight {
    color: var(--primary-color);
}

.logo-partner {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.countdown-item span {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-white);
}

.countdown-item small {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.countdown-separator {
    color: var(--primary-white);
    font-weight: 300;
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    border-radius: 20px;
    font-family: "ClashGrotesk", serif;
    color: var(--color-white);
    border:0;
    border-radius: 6.25em;
    width: clamp(270px,16vw,460px);
    height: clamp(48px, 4vw, 68px);
    font-weight: 400;
    font-size: clamp(18px, 1.2vw, 32px);
    align-items: center;
    display: flex;
    padding-left:1rem;
    padding-right: 1rem;
    cursor: pointer;
    border: 2px solid #4632DA;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
                inset 0px -4px 4px 0px #3828AE,
                inset 0px 2px 4px 0px #ffffff;


}
.btn-primary div , .btn-outline div{
    flex-grow: 1;
    text-align: center;
}


.btn-primary span {
    width: clamp(26px, 2.3vw, 45px);
    height: clamp(26px, 2.3vw, 45px);
    border-radius: 50%;
    background: var(--color-white);
    overflow: hidden;
    display: inline-flex;
    justify-self: flex-end;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px 2px 4px 0px rgba(18, 0, 150, 0.45);
    position: relative;
}
.btn-primary span i{
    background: url("assets/img/arrowP.svg") no-repeat;
    width: 2vw;
    height: 2vw;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    background-position: center;
    background-size: contain;
    max-width: 10px;

}


.btn-primary:hover {
    box-shadow:
        inset 0px 4px 4px 0px #3828AE;
    transition: box-shadow 0.5s ease;
}
.btn-primary:hover span{
    box-shadow:none;
}
.btn-primary:hover span i:first-child{
    transform: translateX(100%);
    opacity: 0;
}
.btn-primary:hover span i:last-child{
    transform: translateX(0);
    opacity: 1;
}
.btn-primary span i:first-child {
    transform: translateX(0);
    opacity: 1;
}
.btn-primary span i:last-child {
    transform: translateX(-100%);
    opacity: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid #ffffff;
    padding: 8px 0.5rem;
    width: clamp(270px, 8vw, 460px);
    height: clamp(48px, 2vw, 68px);
    font-weight: 500;
    font-size: 18px;
}

.btn-outline span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    display: inline-flex;
    justify-self: flex-end;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    border:1px solid #ffffff;
}

.btn-outline span i {
    background: url("assets/img/arrowW.svg") no-repeat;
    width: 2vw;
    height: 2vw;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    background-position: center;
    background-size: contain;
    max-width: 10px;
}
.btn-outline:hover span i:first-child{
    transform: translateX(100%);
    opacity: 0;
}
.btn-outline:hover span i:last-child{
    transform: translateX(0);
    opacity: 1;
}
.btn-outline span i:first-child {
    transform: translateX(0);
    opacity: 1;
}
.btn-outline span i:last-child {
    transform: translateX(-100%);
    opacity: 0;
}





.btn-arrow {
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.hero-bg-path {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    bottom: -600px;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 135px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 48px;
}

.hero-title .highlight {
   color: var(--text-white);

    background-clip: text;
    position: relative;
}

/* Google text with video "o" */
.google-text {
    display: inline-flex;
    align-items: center;
}

.video-o {
     display: inline-block;
    width: 0.55em;
    height: 0.55em;
    border-radius: 50%;
    overflow: hidden;
    border: 0.04em solid var(--text-white);
    position: relative;
    vertical-align: middle;
    margin: 0 -0.02em;
    transform: translateY(10px);
}

.video-o video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Implementezi decorations */
.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.star-decor {
    position: absolute;
    width: 0.35em;
    height: auto;
    top: 0em;
    left: -0.1em;
    z-index: 1;
    animation: star-rotate 8s ease-in-out infinite;
}

@keyframes star-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.underline-decor {
    position: absolute;
    bottom: -0.15em;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    clip-path: inset(0 100% 0 0);
    animation: draw-underline 0.6s ease-out 0.3s forwards;
}

@keyframes draw-underline {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.arrow-decor {
    display: inline-block;
    width: 0.4em;
    height: auto;
    margin-left: 0.1em;
    vertical-align: middle;
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0% {
        transform: translateX(0) translateY(-0.1em);
    }
    20% {
        transform: translateX(-0.15em) translateY(-0.1em);
    }
    40% {
        transform: translateX(0.05em) translateY(-0.1em);
    }
    60% {
        transform: translateX(-0.08em) translateY(-0.1em);
    }
    80% {
        transform: translateX(0.02em) translateY(-0.1em);
    }
    100% {
        transform: translateX(0) translateY(-0.1em);
    }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-white);
    max-width: 1000px;
    margin: 0 auto 32px;
}

.money-back {
    font-size: 13px;
    color: var(--text-white);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Features Images */
.features-images {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.features-images .container{
 width: 1200px;
}

.features-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.feature-image {
    border-radius: 16px;
    overflow: visible;
    position: relative;
}

.feature-image > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.tape {
    position: absolute;
    width: 112px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.tape-top-center {
    top: -15px;
    left: 50%;
    transform: translateX(-56px);
}

.tape-bottom-right {
    bottom: 10px;
    right: -35px;
    transform: rotate(-45deg);
}
.tape-top-right{
    top: 10px;
    right: -35px;
    transform: rotate(45deg);
}

.tape-bottom-left {
    bottom: 10px;
    left: -35px;
    transform: rotate(-135deg);
}

.feature-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-top: 46px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-white);
}
p.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--text-white);
}


.feature-line {
    width: 4px;
    align-self: stretch;
    border-radius: 0px;
    flex-shrink: 0;
}

.feature-line-green {
    background: #63D471;
}

.feature-line-blue {
    background: #00DAFC;
}

.feature-line-yellow {
    background: #FFD400;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--text-white);
}



/* Course Info Bar */
.course-info {
    padding: 80px 0;
}

.info-bar {
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 20px 50px;
    border: 1px solid rgba(255, 255, 255, 1);
    gap: 40px;
    width: 1300px;
    justify-content: center;
    margin:0 auto;
}

.info-logo {
    width: 96px;
    height:  96px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-logo img {
    width:  96px;
    height: auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 1);
    flex-shrink: 0;
}

.info-label {
    font-size: 24px;
    color: var(--text-white);
    font-weight: 300;
    justify-self: flex-end;
    line-height: 24px;
}

.info-value {
    font-size: 40px;
    font-weight: 500;
    font-family: 'ClashGrotesk', sans-serif;
    line-height: 43px;
}

.info-value.price {
    color: var(--text-white);
}

/* About Section */
.about {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.about-bg-path {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    bottom: -200px;
    z-index: 0;
    pointer-events: none;
    transform: scaleY(-1);
}

.about .container {
    position: relative;
    z-index: 1;
}

.benefits {
    position: relative;
    z-index: 1;
}

.about-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

.about-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    grid-column: span 5;
}

.about-description {
    font-size: 17px;
    color: var(--text-white);
    line-height: 1.5;
    text-align: left;
    grid-column: 7 / span 6;
}

.about .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.about-header {
    grid-column: 1 / -1;
}

.about-video-wrapper {
    position: relative;
    grid-column: 2 / span 10;
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.about-video-wrapper .tape-top-right {
    top: 10px;
    right: -35px;
}

.about-video-wrapper .tape-bottom-left {
       bottom: 10px;
    right: -35px;
    transform: rotate(-135deg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border: 2px solid #4632DA;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
                inset 0px -4px 4px 0px #3828AE,
                inset 0px 2px 4px 0px #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.play-button span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px 2px 4px 0px rgba(18, 0, 150, 0.45);
}

.play-button span img {
    width: 24px;
    height: auto;
    margin-left: 3px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: inset 0px 4px 4px 0px #3828AE;
}

.play-button:hover span {
    box-shadow: none;
}

/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.benefits .section-title {
    font-size: 64px;
    font-weight: 300;
}

.benefits .section-subtitle {
    color: var(--text-white);
}

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

.benefit-card {
    background: #060411;
    padding: 30px 20px;
    text-align: left;
    border-radius: 16px;
}

.benefit-icon {
    height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.benefit-icon img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-white);
    line-height: 1.3;
}

.benefit-card p {
    font-size: 17px;
    color: var(--text-white);
    line-height: 1.5;
}

/* Steps Section */
.steps {
    padding: 80px 0;
}

.steps-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    align-items: center;
}

.steps-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    grid-column: span 5;
}

.steps-description {
    font-size: 17px;
    color: var(--text-white);
    line-height: 1.5;
    text-align: left;
    grid-column: 7 / span 6;
}

.steps-grid {
    display: flex;
    gap: 4px;
}

.steps-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    overflow: visible;
}

.steps-dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.steps-dots-right {
    right: -22px;
}

.steps-dots-left {
    left: -22px;
}

.steps-dots span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #09061A;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    border: 2px solid #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 36px;
    color: #1a1a2e;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.step-content p {
    font-size: 17px;
    color: #1a1a2e;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials {
    position: relative;
}

.testimonials .section-title {
    font-size: 64px;
    font-weight: 300;
}

.testimonials .section-subtitle {
    color: var(--text-white);
}

.testimonials .container,
.testimonials-slider {
    position: relative;
    z-index: 1;
}

.pricing {
    position: relative;
}

.pricing-bg-path {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    top: -500px;
    z-index: 0;
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: #3828AE;
    border-radius: 16px;
    padding: 30px;
    width: 517px;
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.testimonial-logo {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    margin-bottom: 32px;
}

.testimonial-name {
    font-size: 28px;
    color: var(--text-white);
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-white);
    line-height: 1.5;
    opacity: 1;
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

.pricing .section-title {
    font-size: 64px;
    font-weight: 300;
    text-align: center;
}

.pricing .section-subtitle {
    text-align: center;
    color: var(--text-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border:1px solid rgba(255, 255, 255, 1);
}

.pricing-card-featured {
    background: #fff;
    border: none;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    height: clamp(48px, 2vw, 68px);
    font-size: 18px;
    margin-top: auto;
}

.pricing-card-featured .btn-primary span {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
}

.pricing-card-featured .pricing-label,
.pricing-card-featured .pricing-sublabel,
.pricing-card-featured .pricing-features li,
.pricing-card-featured .money-back-small {
    color: #1a1a2e;
}

.pricing-header {
    margin-bottom: 20px;
    text-align: left;
}

.pricing-label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-sublabel {
    font-size: 14px;
    color: var(--text-white);
    display: block;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 64px;
    text-align: left;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.pricing-card-featured .pricing-price {
    color: var(--primary-color);
}

.pricing-features li {
    font-size: 17px;
    color: var(--text-white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 28px;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-features-icons li::before {
    display: none;
}

.pricing-features-icons li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    font-size: 13px;
    color: var(--text-white);
    margin-top: 16px;
    margin-bottom: 0;
}

.money-back-small {
    font-size: 13px;
    color: var(--text-white);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.money-icon {
    width: 16px;
    height: 16px;
}

.pricing-card-featured .money-icon {
    filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(3000%) hue-rotate(210deg) brightness(95%) contrast(95%);
}

.extra-sessions {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 30px;
}

/* FAQ & CTA Wrapper */
.faq-cta-wrapper {
    position: relative;
    background: #ECF1FF;
}

.faq-bg-path {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    top: 300px;
    z-index: 1;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(97%) sepia(5%) saturate(500%) hue-rotate(195deg) brightness(102%) contrast(97%);
}

/* FAQ */
.faq {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq .section-title {
    font-size: 64px;
    font-weight: 300;
    text-align: center;
    color: #1a1a2e;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}
.faq-list ul li, .faq-list ol li{
    color:#1a1a2e;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a2e;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 24px;
    color: #1a1a2e;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 17px;
    color: #1a1a2e;;
}

/* Final CTA */
.final-cta {
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: url('assets/img/ctaImg.jpg') no-repeat left center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    min-height: 400px;
}

.cta-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}

.cta-content h2 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #fff;
        line-height: 1.2;
        text-align: left;
}

.cta-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
      text-align: left;
}


.cta-content .money-back-small {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    align-items: center;
    justify-content: flex-start;
    gap:8px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #fff;
    z-index: 3;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a2e;
}

.copyright {
    font-size: 13px;
    color: #666;
}



/* ============================================
   MODAL STYLES
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    display: flex;
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

/* Modal Left Side */
.modal-left {
    width: 280px;
    min-width: 280px;
    background: #ECF1FF;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.modal-logo {
    margin-bottom: 50px;
}

.modal-logo img {
    height: 40px;
    width: auto;
}

/* Modal Steps */
.modal-steps {
    flex: 1;
}

.modal-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s ease;
}

.modal-step.active .step-circle {
    background: #63D471;
    border-color: #63D471;
}

.modal-step.completed .step-circle {
    background: #63D471;
    border-color: #63D471;
}

.step-circle .check-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-step.active .step-circle .check-icon,
.modal-step.completed .step-circle .check-icon {
    opacity: 1;
}

.step-info {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.step-label {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    line-height: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    margin-top: 2px;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: #e0e0e0;
    margin-left: 19px;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}

.modal-step.completed + .step-connector,
.step-connector.active {
    background: #00C853;
}

/* Modal Help */
.modal-help {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-top: 50px;
}

.help-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #999;
}

.help-text {
    display: flex;
    flex-direction: column;
}

.help-text span {
    font-size: 13px;
    color: #999;
}

.help-text a {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
}

.help-text a:hover {
    color: #5468FF;
}

/* Modal Right Side */
.modal-right {
    flex: 1;
    padding: 40px;
    position: relative;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 44px;
    right: 39px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e0e0e0;
    color: #1a1a2e;
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 30px;
    padding-right: 50px;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.form-step.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
}

.form-group .required {
    color: #5468FF;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5468FF;
    box-shadow: 0 0 0 3px rgba(84, 104, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox styling */
.form-group-checkbox {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #5468FF;
    border-color: #5468FF;
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-text {
    color: #666;
}

.checkbox-text a {
    color: #5468FF;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.checkbox-label input[type="checkbox"].error + .checkbox-custom,
.form-group-checkbox.error .checkbox-custom {
    border-color: #ff4444;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.form-navigation .btn-back {
    margin-right: auto;
}

.btn-back {
    border-color: #e0e0e0;
    color: #1a1a2e;
}

.btn-back:hover {
    border-color: #1a1a2e;
    background: transparent;
}

.btn-back .btn-arrow-back {
    transform: rotate(180deg);
    background: #f0f0f0;
    border: none;
}

.btn-back .btn-arrow-back i {
    border-color: #666;
}

.btn-back:hover .btn-arrow-back {
    background: #e0e0e0;
}

.btn-next,
.btn-submit {
    min-width: 180px;
    height: 56px;
}

.form-navigation .btn-back {
    height: 56px;
}

/* Responsive Design */
@media (max-width: 767.99px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }


    .features-images,
    .course-info,
    .about,
    .benefits,
    .steps,
    .testimonials,
    .pricing,
    .faq,
    .final-cta {
        padding: 40px 0;
    }

    .hero-bg-path {
        width: 300%;
        pointer-events: none;
        bottom: -100px;
    }
    .about-bg-path{
         width: 300%;
        pointer-events: none;
        bottom: -100px;
    }
    .pricing-bg-path{
         width: 300%;
        pointer-events: none;
        top: -250px;
    }
    .faq-bg-path{
            width: 300%;
            pointer-events: none;
            top: 150px;
    }
.benefit-card{
    padding: 24px;
}
.benefit-icon{
    margin-bottom: 16px;
}
.benefit-card h3{
    font-size: 20px;
}
 .about-description, .testimonial-text, .faq-answer p, .section-subtitle, .steps-description, .benefit-card p, .step-content p, .pricing-features li, .cta-content > p{
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.02em;
    }

    .header .logo{
        display: none;
    }
     .video-o{
        margin: 0 0em;
    transform: translateY(4px);
    }
    .header-content {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: space-between;
    }
    .money-back{
        font-size: 12px;
        letter-spacing: 0.05em;
        align-items: flex-start;
        gap:4px
    }
    .money-back img{
        display: none;
    }
   .btn-outline{
        width: 210px;
        font-size: 16px;
    }
    .arrow-decor{
        position: absolute;
        top: 2em;
       left: 6.2em;
    }
    .benefits .section-title,  .testimonials .section-title, .pricing .section-title, .faq .section-title{
        font-size: 54px;
        text-align: left;
    }
    .cta-card{
        background-position-x: 24%;
    }
    .money-back-small img{
        display: none;
    }
    .cta-content h2{
        font-size: 40px;
    }
    .cta-content{
        width: 100%;
        padding: 40px 24px;
    }
    .pricing .section-subtitle{
        text-align: left;
    }
    .testimonial-card{
        width: 300px;
    }
    .pricing-card{
        padding: 24px;
    }
    .pricing-price{
        font-size: 54px;
    }
    .section-subtitle{
        text-align: left;
    }
    .faq-question{
        font-size: 24px;
    }
    .hero-title {
        font-size: 54px;
    }
    .about-video-wrapper{
        grid-column: span 12;
    }
    .play-button{
        width:64px;
        height:64px;
    }
    .play-button span{
        width: 44px;
        height: 44px;
    }
    .countdown-header{
        gap:0;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .steps-title, .about-title{
        font-size: 54px;
    }
    .steps-title, .about-title, .about-description, .steps-description{
        grid-column: span 12;
    }
    .step-item{
        flex-direction: column;
    }
    .info-bar{
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px 24px;
    }
    .info-value{
        font-size: 32px;
    }
    .steps-grid{
        flex-direction: column;
    }
    .steps-card{
           padding: 24px 24px;
    }
    .steps-dots-right{
        right: -10px;
    }
    .steps-dots-left{
        left:auto;
        right: -10px;
    }
    .step-content h3{
        font-size: 20px;
    }
    /* Features horizontal scroll slider */
    .features-images {
        padding: 40px 0;
        overflow: visible;
    }

    .features-images .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }

    .features-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 30px 20px 50px;
        scrollbar-width: none;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        flex: 0 0 75%;
        scroll-snap-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: scale(0.85);
        opacity: 0.6;
    }

    .feature-card.active {
        transform: scale(1);
        opacity: 1;
    }

    .testimonials-track {
        animation-duration: 20s;
    }

    .feature-image {
        border-radius: 12px;
    }

    .feature-text {
        margin-top: 20px;
    }

    .feature-card h3,
    .feature-card .feature-title {
        font-size: 22px;
    }

    .feature-card p {
        font-size: 14px;
    }
    .info-logo, .info-logo img {
            width: 64px;
            height: 64px;
    }
    .info-divider{
       width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
    }
    .info-label{
        font-size: 18px;
        line-height: 19px;

    }
    .info-value{
        font-size: 28px;
        line-height: 29px;
    }
    .info-item{
        flex: 1 1 100%;
        text-align: center;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .section-title {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
       .modal {
        flex-direction: column;
        max-height: 90dvh;
    }
    .modal-logo{
        display: none;
    }

    .modal-left {
        width: 100%;
        min-width: 100%;
        padding: 24px;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .modal-logo {
        margin-bottom: 0;
    }

    .modal-logo img {
        height: 30px;
    }

    .modal-steps {
        display: flex;
        gap: 10px;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .modal-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap:2px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .step-info .step-title {
       display: none;
    }

    .step-connector {
       width: 40px;
       height: 1px;
    }

    .modal-help {
        display: none;
    }
    .modal-close {
        top:23px;
        right: 23px;
    }

    .modal-right {
        padding: 24px;
    }

    .modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn-back {
        order: 2;
        justify-content: center;
        width: 100%;
    }

    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}
@media (min-width: 768px) and (max-width: 1023.99px) {
    .btn-outline{
        width: 210px;
    }
    .hero-title {
        font-size: 80px;
    }
    .video-o{
        margin: 0 0em;
    transform: translateY(5px);
    }
        .hero-bg-path{
        bottom: -50px;
        }
        .hero-subtitle{
        font-size: 16px;
        max-width: 500px;
        }
        .container{
            max-width: 1000px;
        }
        .features-images .container{
            max-width: 700px;
        }
        .info-bar{
            width: 700px;
              flex-wrap: wrap;
            gap: 16px;
        padding: 16px 24px;
        }
        .info-value{
            font-size: 24px;
        }
        .info-label{
            font-size: 16px;
            line-height: 16px;
        }
        .info-logo, .info-logo img {
         width: 60px;
        height: 60px;
        }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-description, .faq-answer p, .testimonial-text, .section-subtitle, .steps-description, .benefit-card p, .step-content p, .pricing-features li, .cta-content > p{
        font-size: 16px;
    }
    .pricing-card{
        padding: 24px;
    }
    p.feature-title{
        font-size: 22px;
    }
    .about-title, .steps-title, .benefits .section-title, .testimonials .section-title, .pricing-price, .faq .section-title, .cta-content h2{
        font-size: 50px;
    }
    .benefit-card h3{
        font-size: 22px;
    }
    .faq-question{
        font-size: 24px;
    }
    .cta-content{
        width: 56%;
        padding:16px;
    }
    .cta-card{
        background-position-x: 32%;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .modal{
        max-height: 93vh;
    }
    .modal-right{
        padding: 32px;
    }
    .modal-close {
        top: 39px;
        right: 31px;
    }
    .final-cta .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (min-width: 1024px) and (max-width: 1279.99px) {
    .hero-title {
        font-size: 100px;
    }
        .hero-bg-path{
        bottom: -50px;
        }
        .hero-subtitle{
            font-size: 18px;
            max-width: 800px;
        }
        .container{
            max-width: 1000px;
        }
        .features-images .container{
            max-width: 900px;
        }
        .info-bar{
            width: 970px;
        }
        .info-value{
            font-size: 32px;
        }
        .info-label{
            font-size: 18px;
        }
        .info-logo, .info-logo img {
            width: 70px;
            height: 70px;
        }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-description, .section-subtitle, .steps-description, .benefit-card p, .step-content p, .pricing-features li, .cta-content > p{
        font-size: 16px;
    }
    .pricing-card{
        padding: 24px;
    }
    p.feature-title{
        font-size: 18px;
    }
    .about-title, .steps-title{
        font-size: 64px;
    }
    .info-bar {
        flex-wrap: wrap;
        border-radius: 20px;
        gap: 24px;
    }
    .faq-question{
        font-size: 24px;
    }
    .cta-content{
        width: 50%;
        padding:16px;
    }
    .cta-card{
        background-position-x: 65%;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .modal{
        max-height: 93vh;
    }
    .modal-right{
        padding: 32px;
    }
    .modal-close {
        top: 39px;
        right: 31px;
    }
    .final-cta .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .container{
        width: 1200px;
    }
    .info-bar{
        width: 1200px;
        gap: 30px;
    }
    .cta-content {
        width: 50%;
    }
    .steps-title, .about-title {
        font-size: 64px;
    }
    .cta-card{
     background-position-x:55%;
    }
}

/* Legal Pages (Terms, Privacy) */
.legal-page {
    padding: 80px 0 120px;
    background: #fff;
    min-height: 100vh;
}

.legal-title {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.legal-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.legal-content {
    max-width: 800px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a2e;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    padding: 0;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.legal-content strong {
    color: #1a1a2e;
}

@media (max-width: 767.99px) {
    .legal-page {
        padding: 40px 0 80px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-subtitle {
        font-size: 18px;
    }

    .legal-content h3 {
        font-size: 20px;
        margin-top: 32px;
    }
}

@media (min-width: 2300px) {
.hero-bg-path{
    bottom: -800px;
}
.about-bg-path{
    bottom: -300px;
}
.faq-cta-wrapper {
    overflow: hidden;
}
}

