/*
 * Theme Name: Clean Theme
 * Description: Clean Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --primary: #0ea5e9;
    --primary-dark: #0da5e7;
    --secondary: #f97316;
    --accent: #06b6d4;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f7f9fe;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: #f97316;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.5);*/
}

.btn-cta {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
    gap: 15px;
}

.btn-cta:hover {
    /*background-color: #ea580c;*/
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.5);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #f7f9fe;
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    height: 70px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 40px;
    border-radius: 100px;
    box-shadow: 0px 0px 10px hsl(0deg 0% 0% / 7.06%);
}

.nav-inner .btn-primary{
    padding: 12px 28px; 
    font-size: 0.9rem;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo img{
    width: 42px;
    transform: rotate(-11deg);
    position: relative;
    top: 2px;
}

.logo i{
    font-style: normal;
    color: #f97316;
}

.logo strong{
	display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: -6px;
	text-align: left;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    /*background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);*/
    background: #f7f9fe;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    line-height: 73px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 400;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    /*height: 550px;*/
    border-radius: 3rem;
    object-fit: cover;
    /*box-shadow: var(--shadow-lg);
    background-color: #e2e8f0; /* Fallback color */
    animation: float 5s ease-in-out infinite;
}

.hero-content ul{
    list-style: none;
    margin:0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.hero-content ul li{
color: #64748b;
font-size: 18px;
font-weight: 400;
display: flex;
gap: 20px;
}

.hero-content ul li span{
    display: flex;
    align-items: center;
    gap: 10px;
    background: hsl(121.82deg 50% 74.12% / 4%);
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid #9be09f;
}

.mini-btn{
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.trust-parents{
    gap: 15px;
    align-items: center;
    display: flex;
    margin-right: 80px;
}

.trust-avatar{
    display: flex;
    align-items: center;
}

.trust-avatar img{
    width: 40px;
    border-radius: 100px;
    margin-left: -20px;
    border: 3px solid #fff;
}

.trust-text{
    margin-bottom: 0 !important;
}

.trust-text span{
    display: block;
    font-size: 14px;
    color: #2b3243;
    font-weight: 700;
    margin-bottom: -10px;
}

.trust-text i{
    font-style: normal;
    font-size: 14px;
    color: #64748b;
}

.floating-info {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    padding: 24px;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 5s ease-in-out infinite;
    border: 1px solid var(--border);
}

.floating-info span{
    background: #f97316; 
    color: white; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900;
}

.floating-info div i:nth-child(1){
    font-weight: 800; 
    font-size: 1rem;
    font-style: normal;
    display: block;
}

.floating-info div i:nth-child(2){
    font-size: 0.8rem; 
    color: var(--text-muted);
    font-style: normal;
}

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

/* Audience */
.audience {
    background-color: var(--bg-white);
    padding: 100px 0 130px;
}

.audience-card h3{
    margin-bottom: 16px;
    line-height: 24px;
}

.audience-card p{
    color: #64748b;
    line-height: 25px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 63px;
}

.section-header p{
    font-size: 21px;
    color: #64748b;
    max-width: 568px;
    margin: 25px auto 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}

.audience-card {
    /*background: #f0f9ff;*/
    padding: 20px 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    display: flex;
    gap: 15px;
}

.audience-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.bottom-wave{
    position: absolute;
    bottom: -78px;
    width: 100%;
    transform: rotate(180deg);
	z-index: 1;
}

.top-wave{
    position: absolute;
    top: -70px;
    width: 100%;
	z-index: 1;
}

.icon-box {
    margin-bottom: px;
}

.icon-box img{
    max-height: 130px;
    display: block;
    margin: 0 auto;
    background: #dedede;
    border-radius: 20px;
}

.sick-container{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
    padding: 0;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
    
.sick-list{
    
}

.diagnosis .section-header{
	text-align:left;
	margin-bottom: 50px;
}

.sick-list h3{
    margin-bottom: 35px;
    font-size: 30px;
    line-height: 60px;
}

.sick-list h3 span{
    color: #0ea5e9;
}

.sick-icon{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sick-icon .sick-check{
    width: 30px;
    height: 30px;
}

.sick-content{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 15px 15px;
    flex-direction: column;
    text-align: left;
}

.sick-content span{
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-top: 0px;
}

.sick-list-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sick-content p{
	font-size: 15px;
}

.sick-img img{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    width: 45%;
    object-fit: cover;
}

.diagnosis{
	position:relative;
	background: #f7f9fe;
	padding: 70px 0px;
}

.diagnosis .badge{
	background:#fff;
}

/* Importance Section */
.importance {
    background: #fff;
    color: white;
    padding: 120px 0;
    position: relative;
}

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

.accent-box{
    background: #ffffff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 22%);
    padding: 15px;
    border-radius: 20px;
    margin-top: 20px;
}

.importance .accent-box h4{
    color: #64748b;
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.importance .accent-box h4 img{
    width: 45px;
    height: 45px
}

.importance .accent-box p{
    font-size: 16px;
    margin-bottom: 0;
}

.importance h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.2;
    color: #0f172a;
}

.importance p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 20px;
}

.importance-img img{
    width: 100%;
    border-radius: 20px;
}

.quote-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 2rem;
    border-left: 6px solid var(--primary);
    backdrop-filter: blur(10px);
}

/* Features */

#program{
	background: #f7f9fe;
	position:relative;
}

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

.features-last-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
}

.live-card{
	border: 1px solid #f97316;
    background: rgb(249 115 22 / 5%);
}

.feature-card img{
    width:60px;
    margin-bottom: 10px;
}

.feature-card h4{
    margin-bottom: 12px; 
    font-size: 1.3rem;
}

.feature-card p{
    color: #64748b; 
    font-size: 0.95rem;
}

.step-box img{
    height: 180px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgb(14 165 233 / 30%);
}

#study{
    background: linear-gradient(to bottom, #fff 0%, #f7f9fe 100%);
    position: relative;
    padding: 100px 0;
}

#study .section-header{
	margin: 0 auto 55px;
}

.study{
    margin-top: 50px;
    padding: 60px;
    background: transparent;
    border-radius: 4rem;
    text-align: center;
    box-shadow: 0px 0px 20px hsl(0deg 0% 0% / 4%);
}

.section-header .study-alert{
	display: flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
    background: hsl(198.63deg 88.66% 48.43% / 4%);
    border-radius: 30px;
    padding: 10px 15px;
    max-width: 585px;
    border: 1px solid #0ea5e9;
    color: #64748b;
    font-weight: 400;
    font-size: 20px;
    justify-content: center;
    margin-top: 80px;
}

.study h3{
    font-size: 2rem; 
    margin-bottom: 20px;
}

.regular{
    margin-bottom: 40px; 
    color: var(--text-muted);
}

.steps-container{
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 40px;
}

.step-box{
    flex: 1; 
    min-width: 200px;
    position: relative;
}

.step-box h5{
    font-size: 1.1rem; 
    margin-bottom: 10px;
}

.step-box p{
    font-size: 0.9rem; 
    color: #64748b;
}

.step-box.active:after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step-num{
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    background: #0ea5e9;
    width: 75px;
    height: 75px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    z-index: 9;
    position: relative;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 15%);
    border: 4px solid #FFF;
}



/* Author Section */
.author {
    background: #fff;
    overflow: hidden;
    padding: 100px 0 100px;
}

.author-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    background: white;
    padding: 35px;
    border-radius: 4rem;
    align-items: center;
    box-shadow: var(--shadow);
}

.social{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    align-items: center;
    text-align: center;
}


.social a{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.social a:hover{
    transform: translateY(-2px);
    transition: 0.4s;
}
    

.social a img{
    width:24px;
}

.author-card h2{
    font-size: 3.5rem; 
    margin-bottom: 5px;
    font-weight: 900;
}

.author-img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background-color: #cbd5e1;
}

.auth-desc{
    font-size: 1.3rem; 
    font-weight: 600; 
    color: var(--primary); 
    margin-bottom: 16px;
}

.auth-off{
    font-size: 1.1rem; 
    color: #64748b; 
    margin-bottom: 40px;
}

.auth-img-block{
    position: relative;
}

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

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.bonus{
    background: hsl(222.86deg 77.78% 98.24%);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.bonus img{
    width: 50px;
    position: relative;
    top: -4px;
}

.bonus h4{
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus h4 span{
    background: #f97316;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 26px;
}

.bonus p{
    color: #64748b;
    font-size: 1rem; 
    margin-bottom: 0;
}

/* FAQ */

#faq{
    padding: 0 0 100px 0;
}

#faq .section-header{
	margin-bottom:60px;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s;
}

.faq-btn:hover {
    color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    padding: 0 40px;
    font-size: 1.1rem;
}

.faq-item.active {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 32px;
}

/* Reviews */
.reviews-section { 
	background-color: #f7f9fe;
	padding:100px 0;
	position:relative;
}

.review-item {
	background-color: #fff;
    padding: 50px 40px 30px 40px;
    border-radius: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 950px;
    margin: 0 auto;
    border-bottom: 1px solid #0da5e7;
}

.quote-icon {
	position: absolute;
    top: 0px;
    right: 40px;
    font-size: 3.5rem;
    color: #0da5e7;
    transition: opacity 0.3s;
}

.stars { 
	color: #f97316; 
	margin-bottom: 1.25rem; 
	font-size: 0.875rem; 
	display: flex; 
	gap: 0.25rem; 
}


.review-text { 
	font-size: 18px;
    line-height: 31px;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    color: #64748b;
}

.review-author { 
	font-weight: 800; 
	color: #0f172a; 
	font-size: 1.125rem; 
	margin-bottom: 0.25rem; 
}

.review-role { 
	font-size: 0.875rem; 
	color: #0f172a; 
	font-weight: 600; 
}
        
.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	background: #cbd5e1!important;
	transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
	background: #64748b!important;
	width: 30px;
}

/* Pricing */
.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.price {
    font-size: 6rem;
    font-weight: 950;
    margin: 0px 0;
    color: #64748b;
    letter-spacing: -2px;
    line-height: 74px;
}

.price span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.old-price{
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #cbd5e1;
    font-size: 40px;
    font-weight: 600;
}

.pricing-box h3{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
}

.pricing-box h4{
    margin: 25px 0 40px;
    font-size: 18px;
    color: #0f172a;
    margin: 25px auto 40px;
}

#pricing{
    position: relative;
    background: #fff;
}

.pricing-box p{
    margin-top: 24px; 
    font-size: 0.85rem; 
    color: #64748b;
}

.pricing-box ul{
    list-style: none;
    text-align: left;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pricing-box ul li{
    color: #64748b;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.pricing-box .btn-cta{
    width: 100%; 
    font-size: 1.2rem;
}

.wfp{
    width: 200px;
    margin-top: 15px;
}

.safe-pay{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px !important;
}

.safe-pay img{
    width: 15px;
}

.sale{
    position: absolute;
    right: -47px;
    top: 35px;
    background: #f97316;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 90px;
    transform: rotate(39deg)
}

.timer-container {
    margin-bottom: 35px;
    background: #f7f9fe;
    padding: 20px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.timer-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
}

.timer-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--white);
    width: 100%;
    padding: 10px 0;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-variant-numeric: tabular-nums;
}

.timer-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
}

.timer-separator {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}

.sticky-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 10px 10px 30px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    border: 1px solid white;
    transition: var(--transition);
    width: max-content;
    transition: 0.4s;
}

.sticky-bar.visible { 
    transform: translateX(-50%) translateY(0);
    transition: 0.4s;
}

.sticky-bar h3{
    font-size: 0.8rem; 
    font-weight: 800; 
    color: var(--secondary-pink); 
    text-transform: uppercase;
    color: #f97316;
}

.sticky-bar p{
    font-weight: 800; 
    font-size: 1.2rem;
    color: #64748b;
}

.sticky-bar p span{
    font-size: 0.9rem; 
    color: var(--text-gray); 
    text-decoration: line-through; 
    margin-left: 5px;
    color: #cbd5e1;
}

.sticky-bar a{
    padding: 12px 30px;
    background: #f97316;
    color: #fff;
    font-size: 14px;
}


footer {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
	background: #f7f9fe;
}

.footer-container{
	display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e6ee;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

footer .logo{
    justify-content: center;
}



#chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: 0.4s;
}

#chat-widget-container.visible{
    bottom:140px;
    transition: 0.4s;
}

#chat-button {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #0da5e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

#chat-button:hover {
    transform: scale(1.1);
}

/* Стилі хвиль */
.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0da5e7;
    opacity: 0.4;
    animation: pulse-wave 4s infinite ease-out;
}

.wave-2 { 
    animation-delay: 2s; 
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.mob-on{
    display: none;
}

.auth-mob{
    display: none;
}

.privacy{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.privacy a{
	color: var(--text-muted);
    font-size: 0.9rem;
}

.info{
	padding:50px 0;
}

.info-container{
	max-width: 800px;
	margin:0 auto;
}

.info-container h1{
	text-align: center;
    margin-bottom: 30px;
    line-height: 38px;
    font-weight: 400;
    font-size: 28px;
    max-width: 550px;
    margin: 55px auto 30px;
}

.info-container h2{
    margin: 35px 0 15px;
    line-height: 30px;
    font-weight: 500;
    font-size: 24px;
}

.info-container h3{
	margin: 35px 0 15px;
    line-height: 27px;
    font-weight: 500;
    font-size: 20px;
}

.info-container p{
	color: #64748b;
    font-size: 18px;
    margin-bottom: 20px;
	font-weight: 300;
}

.info-container p b{
	font-weight:500;
	color: var(--text-main);
}

.info-container ul{
	margin:0 0 20px 20px;
	padding:0;
	color: #64748b;
    font-size: 18px;
	display:flex;
	flex-direction:column;
	gap:15px;
	font-weight: 300;
}

.info-container ol{
	margin:0 0 20px 20px;
	padding:0;
	color: #64748b;
    font-size: 18px;
	display:flex;
	flex-direction:column;
	gap:15px;
	font-weight: 300;
}

.lang-switch ul {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.lang-switch li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.lang-switch li.current-lang a {
    color: #ff6b00;
}

.lang-switch img.pll_flag {
    margin-right: 5px;
    width: 18px;
    vertical-align: middle;
}

.switch{
	display: flex;
    align-items: center;
    gap: 25px;
}

.lang-switch{
	display: flex;
    flex-direction: column;
    gap: 5px;
}

.lang-switch li{
	list-style:none;
}

.lang-switch li a{
	color:#0f172a;
}

.lang-switch li.current-lang a {
    color:#0f172a;
}

.lang-item{
	position:relative;
	list-style: none;
}

.lang-item:before{
	content: '';
    position: absolute;
    right: -9px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f97316;
    border-radius: 10px;
	transition:0.4s;
	opacity:0;
	transition:0.2s;
}

.lang-item:hover:before {
	content: '';
    position: absolute;
    right: -9px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f97316;
    border-radius: 10px;
	transition:0.2s;
	opacity: 1;
}

.lang-item.current-lang:before{
	content: '';
    position: absolute;
    right: -9px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #f97316;
    border-radius: 10px;
	opacity: 1;
}

.mobile-lang-switcher {
    display: none;
}

@media(max-width:1700px){
    .hero h1 {
        font-size: 60px;
        line-height: 70px;
    }
}

@media(max-width:1550px){
    .bottom-wave{bottom:-73px;}
}

@media(max-width:1400px){
    .hero h1 {font-size: 55px;line-height: 62px;}
    .bottom-wave{bottom:-60px;}
    .top-wave{top: -60px;}
}

@media(max-width:1200px){
    .hero h1 {font-size: 50px;line-height: 60px;}
    .trust-parents{margin-right: 0;}
    .mini-btn a{padding: 18px 30px;}
    .floating-info{bottom:0;}
    .audience-card{flex-direction: column;text-align: center;gap:20px;}
    .audience-card h3{margin-bottom: 10px;}
    .top-wave{top: -50px;}
    .bottom-wave {bottom: -50px;}
	.nav-links {display: flex;gap: 20px;}
}

@media (max-width: 991px) {
    .hero-grid, .importance-grid, .author-card {grid-template-columns: 1fr;gap: 40px;text-align: center;}
    .hero::before{display: none;}
    .hero h1 {font-size: 45px;line-height: 53px; }
    .hero p, .hero-content { margin: 0 auto; }
    .hero-content ul{align-items: center;margin-top: 50px;}
    .mini-btn{justify-content:center;}
    .trust-parents{display: none;}
    .author-img {width: 100%;height: auto;}
    .author-card {padding: 0px;box-shadow: none; }
    .hero-image { height: 450px; }
    .nav-links { display: none; }
    .importance { margin: 0; border-radius: 0; }
    .desk-on{display: none;}
    .mob-on{display: flex;}
    .floating-info {position: relative;bottom: 0;left: 0;justify-content: center;max-width: 320px;margin: 0 auto;animation: none;padding: 15px;}
    .bottom-wave {bottom: -40px;}
    .top-wave{top: -40px;}
    .audience-grid{grid-template-columns: repeat(1, 1fr);}
    .sick-container{grid-template-columns: 1fr;gap: 20px;}
    .sick-img img{width: auto;max-height: 130px;}
    .sick-list h3 {margin-bottom: 25px;font-size: 26px;line-height: 60px;text-align: center;}
    .features-grid{grid-template-columns: repeat(1, 1fr);}
    .features-last-grid{grid-template-columns: repeat(1, 1fr);}
    .step-box.active:after{top: 2rem;left: 27px;width: 2px;height: 100%;background: #e2e8f0;z-index: 0;}
    .steps-container{flex-direction: column;gap:0;}
    .step-num{margin: 0 0 0px 0;font-size: 25px;width: 55px;height: 55px;margin-left: -55px;}
    .step-box{padding-left: 55px;}
    .step-box.active{padding-bottom: 48px;}
    .step-box img{margin-top: -50px;height: 130px;}
    .nav-inner{padding: 10px 15px;}
    .section-header h2{font-size: 40px;line-height: 50px;}
    .author-card h2{font-size: 40px;line-height: 50px;}
    .importance h2{font-size: 40px;line-height: 50px;}
    .study{padding: 0px;box-shadow: none;}
    .auth-desk{display: none;}
    .auth-mob{display: block;margin: 35px 0;}
    .auth-desc {font-size: 20px;color: var(--primary);max-width: 270px;margin: 15px auto 0;line-height: 28px;}
    .bonus h4{flex-direction: column;}
    .importance .accent-box h4{flex-direction: column;}
    .audience{padding: 80px 0;}
    .importance{padding: 80px 0;}
    #program{padding: 80px 0;}
    #study {padding: 80px 0;}
    .author{padding: 80px 0;}
    #faq {padding: 0 0 80px 0;}
    #pricing{padding: 80px 0;}
	.reviews-section{padding: 80px 0;}
	.review-item{padding: 50px 20px 30px 20px;}
	.review-text {font-size: 16px;}
	.sick-img{display:none;}
	.diagnosis .section-header{text-align:center;}
	.importance p{font-size:16px;}
	.section-header .study-alert{flex-direction: column;padding: 15px 15px;gap: 15px;font-size: 18px;}
	.info-container h1{line-height: 32px;font-size: 22px;}
	.info-container p{font-size:16px;}
	.info-container h2{line-height: 29px;font-size: 20px;}
	.info-container h3{font-size: 18px;line-height: 26px;}
	.info {padding: 10px 0 50px;}
	.switch {gap: 6px;flex-direction: column;}
	.lang-switch {flex-direction: row;gap: 25px;}
	.mobile-lang-switcher {display: block;position: fixed;right: 0;top: 50%;transform: translateY(-50%);z-index: 9999;}
    .mobile-lang-switcher ul {list-style: none;margin: 0;padding: 0;display: flex;flex-direction: column;gap: 2px;}
    .mobile-lang-switcher li a {display: flex;align-items: center;justify-content: center;width: 40px;height: 40px;background: #f4f4f4;color: #333;text-decoration: none;text-transform: uppercase;font-size: 12px;font-weight: bold;border-radius: 4px 0 0 4px;box-shadow: -2px 2px 5px rgba(0,0,0,0.1);transition: all 0.3s ease;}
    .mobile-lang-switcher li.current-lang a {background: #ff6b00;color: #fff;}
	.mobile-lang-switcher li a:active {transform: scale(0.9);}
	.lang-switch{display:none;}
}

@media (max-width: 767px) {
    .sick-list-content{grid-template-columns: repeat(1, 1fr);}
    .nav-inner .btn-primary {padding: 8px 15px;font-size: 0.9rem;}
    .logo span span{display: flex;gap: 0;line-height: 20px;font-weight: 700;font-size: 20px;}
	.logo strong {margin-top: -2px;}
    .logo img{width:38px;}
    .hero-content ul li{flex-direction: column;}
    .bottom-wave {bottom: -25px;}
    .top-wave {top: -25px;}
    .section-header h2{font-size: 30px;line-height: 40px;font-weight: 700;}
    .author-card h2{font-size: 30px;line-height: 40px;font-weight: 700;}
    .importance h2{font-size: 30px;line-height: 40px;font-weight: 700;}
}

@media (max-width: 576px) {
    .hero-grid .mob-on{display: none;}
    .hero h1 {font-size: 38px;line-height: 45px;font-weight: 700;}
    .hero p{font-size: 18px;}
    .hero-content ul li{width: 100%;font-size: 15px;}
    .hero-content ul li span{text-align: left;}
    .audience-card{padding: 20px 20px;}
    .sick-container{padding: 20px;}
    .sick-list h3 {font-size: 20px;line-height: 28px;max-width: 280px;margin: 0 auto 25px;}
    .sick-icon img{height: 40px;}
    .sick-icon .sick-check{width: 25px;height: 25px;}
    .sick-content {text-align: left;line-height: 20px;}
    .feature-card{text-align: center;padding: 20px;}
    .faq-btn{gap: 10px;font-size: 16px;padding: 20px 20px;}
    .faq-content{padding: 0 20px;font-size: 15px;}
    .faq-item.active .faq-content {padding-bottom: 20px;}
    .pricing-box{padding: 40px 20px;}
    .pricing-box h3 {margin-bottom: 25px;font-size: 22px;line-height: 33px;font-weight: 600;color: #0f172a;}
    .pricing-box ul{grid-template-columns: repeat(1, 1fr);margin: 0 auto 40px;}
    .sale {right: -80px;top: 7px;font-size: 14px;}
    .pricing-box .badge{font-size: 10px;margin-bottom: 15px;}
    .old-price{font-size: 30px;}
    .price{line-height: 55px;font-size: 60px;}
    .pricing-box h4 {margin: 15px auto 30px;font-size: 16px;color: #0f172a;}
    .pricing-box ul li{font-size: 15px;}
    .timer-title{font-size: 11px;}
    .timer-display{gap: 10px;}
    .timer-num{font-size: 18px;}
    .timer-separator{font-size: 20px;margin-bottom: 26px;}
    .timer-label{font-size: 10px;margin-top: 13px;}
    .pricing-box .btn-cta {width: 100%;font-size: 16px;padding: 18px 20px;}
    .pricing-box p{font-size: 12px;}
    .safe-pay img {width: 15px;position: relative;top: -1px;}
    .wfp{width:170px;}
    .section-header h2{font-size: 28px;line-height: 41px;font-weight: 700;}
    .author-card h2{font-size: 28px;line-height: 41px;font-weight: 700;}
    .importance h2{font-size: 28px;line-height: 41px;font-weight: 700;}
    .badge{font-size: 10px;}
    .section-header p{font-size: 18px;margin: 20px auto 0;}

}

@media (max-width: 480px) {
    .hero h1 {font-size: 30px;line-height: 38px;}
    .hero p{font-size: 16px;}
    .bottom-wave {bottom: -15px;}
    .top-wave {top: -15px;}
    .section-header h2{font-size: 26px;line-height: 37px;font-weight: 700;}
    .author-card h2{font-size: 26px;line-height: 37px;font-weight: 700;}
    .importance h2{font-size: 26px;line-height: 37px;font-weight: 700;}
}

@media (max-width: 380px) {
}

@media (max-width: 360px) {
    .hero h1 {font-size: 26px;line-height: 36px;}
	.nav-inner .btn-primary{padding: 8px 10px;font-size: 11px;}
	.logo span span{font-size: 18px;}
}


@media(min-width:576px){
    .container{
        max-width: 540px;
    }
}

@media(min-width:768px){
    .container{
        max-width: 720px;
    }
}

@media(min-width:992px){
    .container{
        max-width: 960px;
    }
}

@media(min-width:1200px){
    .container{
        max-width: 1140px;
    }
}

@media(min-width:1400px){
    .container{
        max-width: 1320px;
    }
}

@media(min-width:1550px){
    .container{
        max-width: 1450px;
    } 
}

@media(min-width:1700px){
    .container{
        max-width: 1600px;
    }
}