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

:root {
--primary-color: #1e3a5f;
--secondary-color: #2e5984;
--accent-color: #e8956c;
--text-dark: #1a1a1a;
--text-light: #5a5a5a;
--bg-light: #f7f8fa;
--white: #ffffff;
--border-color: #e0e0e0;
--success-color: #52b788;
--error-color: #e63946;
}

body {
font-family: 'Sora', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
}

h3 {
font-size: 1.3rem;
}

p {
margin-bottom: 1rem;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--white);
padding: 15px 20px;
z-index: 9999;
display: none;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.privacy-content a {
color: var(--accent-color);
text-decoration: underline;
}

.btn-accept {
background: var(--accent-color);
color: var(--white);
border: none;
padding: 8px 24px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}

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

.header {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 0;
position: relative;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 0;
position: relative;
}

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--white);
letter-spacing: -0.5px;
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav-link {
color: var(--white);
font-size: 14px;
font-weight: 400;
padding: 8px 0;
position: relative;
transition: all 0.3s ease;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--accent-color);
transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
cursor: pointer;
padding: 5px;
z-index: 1000;
position: relative;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--white);
transition: all 0.3s ease;
display: block;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 50%, #2e5984 100%);
padding: 0;
position: relative;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
}

.hero-shape {
position: absolute;
background: rgba(255, 255, 255, 0.03);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
width: 500px;
height: 500px;
top: -150px;
right: -100px;
animation-delay: 0s;
}

.hero-shape-2 {
width: 350px;
height: 350px;
bottom: -100px;
left: -50px;
animation-delay: 5s;
}

.hero-shape-3 {
width: 250px;
height: 250px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}

@keyframes float {
0%, 100% {
transform: translate(0, 0) scale(1);
}
33% {
transform: translate(30px, -30px) scale(1.1);
}
66% {
transform: translate(-20px, 20px) scale(0.9);
}
}

.hero-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 2;
padding: 80px 0;
}

.hero-content {
color: var(--white);
}

.hero-badge {
display: inline-block;
background: rgba(244, 162, 97, 0.2);
color: var(--accent-color);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
margin-bottom: 1.5rem;
border: 1px solid rgba(244, 162, 97, 0.3);
letter-spacing: 0.5px;
}

.hero-content h1 {
font-size: 3rem;
margin-bottom: 1.2rem;
line-height: 1.2;
}

.hero-content h1 .highlight {
background: linear-gradient(135deg, var(--accent-color), #f4b088);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
}

.hero-content p {
font-size: 1.15rem;
margin-bottom: 2.5rem;
opacity: 0.9;
line-height: 1.7;
max-width: 550px;
}

.hero-actions {
display: flex;
gap: 15px;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 12px 32px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
border: 2px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
}

.btn-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--white);
transform: translateY(-2px);
}

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
text-align: left;
}

.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--accent-color);
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
margin-bottom: 0.3rem;
}

.stat-label {
font-size: 13px;
opacity: 0.8;
color: var(--white);
}

.hero-visual {
position: relative;
height: 500px;
}

.hero-card {
position: absolute;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
transition: all 0.3s ease;
animation: cardFloat 6s infinite ease-in-out;
}

.hero-card:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-card i {
font-size: 2.5rem;
color: var(--secondary-color);
}

.hero-card span {
font-weight: 600;
color: var(--primary-color);
font-size: 15px;
}

.hero-card-1 {
top: 50px;
left: 50px;
animation-delay: 0s;
}

.hero-card-2 {
top: 200px;
right: 80px;
animation-delay: 2s;
}

.hero-card-3 {
bottom: 80px;
left: 100px;
animation-delay: 4s;
}

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

.btn-primary {
display: inline-block;
background: var(--accent-color);
color: var(--white);
padding: 12px 32px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #e89451;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary-color);
padding: 12px 32px;
border-radius: 6px;
font-weight: 500;
font-size: 15px;
border: 2px solid var(--primary-color);
transition: all 0.3s ease;
}

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

.features {
padding: 70px 0;
background: var(--bg-light);
}

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

.section-header h2 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.section-header p {
color: var(--text-light);
font-size: 1.05rem;
}

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

.feature-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 1rem;
}

.feature-card h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.feature-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.about {
padding: 70px 0;
}

.about-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.about-image img {
border-radius: 10px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-text h2 {
color: var(--primary-color);
margin-bottom: 1.2rem;
}

.about-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
}

.products {
padding: 70px 0;
background: var(--bg-light);
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.product-card {
background: var(--white);
padding: 35px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
border-top: 3px solid var(--secondary-color);
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
border-top-color: var(--accent-color);
}

.product-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.2rem;
}

.product-icon i {
font-size: 1.8rem;
color: var(--white);
}

.product-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.product-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1.2rem;
}

.product-price {
font-size: 1.8rem;
font-weight: 700;
color: var(--accent-color);
margin-bottom: 1.2rem;
}

.btn-product {
display: inline-block;
background: var(--primary-color);
color: var(--white);
padding: 10px 28px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}

.btn-product:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.process {
padding: 70px 0;
}

.process h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
}

.step {
background: var(--bg-light);
padding: 30px;
border-radius: 8px;
position: relative;
transition: all 0.3s ease;
}

.step:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary-color);
opacity: 0.3;
margin-bottom: 0.8rem;
font-family: 'Space Grotesk', sans-serif;
}

.step h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.step p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.cta {
padding: 70px 0;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
text-align: center;
color: var(--white);
}

.cta-content h2 {
color: var(--white);
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-modern {
padding: 80px 0;
background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 100%);
position: relative;
overflow: hidden;
}

.cta-modern-wrapper {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr;
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.cta-modern-content {
color: var(--white);
}

.cta-icon-group {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 2rem;
}

.cta-icon-item {
width: 60px;
height: 60px;
background: rgba(244, 162, 97, 0.15);
border: 2px solid rgba(244, 162, 97, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: iconPulse 3s infinite ease-in-out;
}

.cta-icon-item:nth-child(2) {
animation-delay: 1s;
}

.cta-icon-item:nth-child(3) {
animation-delay: 2s;
}

@keyframes iconPulse {
0%, 100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.4);
}
50% {
transform: scale(1.1);
box-shadow: 0 0 0 10px rgba(244, 162, 97, 0);
}
}

.cta-icon-item i {
font-size: 1.5rem;
color: var(--accent-color);
}

.cta-modern-content h2 {
font-size: 2.2rem;
margin-bottom: 1rem;
color: var(--white);
}

.cta-modern-content > p {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 2rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
}

.cta-features {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 2.5rem;
flex-wrap: wrap;
}

.cta-feature {
display: flex;
align-items: center;
gap: 8px;
color: var(--white);
font-size: 15px;
position: relative;
padding-left: 20px;
}

.cta-feature::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-color);
font-weight: 700;
font-size: 16px;
}

.btn-cta-modern {
display: inline-block;
background: var(--accent-color);
color: var(--white);
padding: 16px 48px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
}

.btn-cta-modern:hover {
background: #e89451;
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(244, 162, 97, 0.4);
}

.cta-modern-visual {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
pointer-events: none;
}

.cta-circle {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
animation: ctaFloat 15s infinite ease-in-out;
}

.cta-circle-1 {
width: 300px;
height: 300px;
top: -100px;
right: -50px;
animation-delay: 0s;
}

.cta-circle-2 {
width: 200px;
height: 200px;
bottom: -50px;
left: 10%;
animation-delay: 5s;
}

.cta-circle-3 {
width: 150px;
height: 150px;
top: 50%;
left: -30px;
animation-delay: 10s;
}

@keyframes ctaFloat {
0%, 100% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(20px, -20px) rotate(120deg);
}
66% {
transform: translate(-15px, 15px) rotate(240deg);
}
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 0;
position: relative;
overflow: hidden;
min-height: 40vh;
display: flex;
align-items: center;
}

.page-hero-content {
text-align: center;
color: var(--white);
position: relative;
z-index: 2;
padding: 60px 0;
}

.page-hero h1 {
font-size: 2.3rem;
margin-bottom: 0.8rem;
color: var(--white);
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
color: var(--white);
}

.content-section {
padding: 70px 0;
}

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

.content-wrapper.reverse {
direction: rtl;
}

.content-wrapper.reverse > * {
direction: ltr;
}

.content-text h2 {
color: var(--primary-color);
margin-bottom: 1.2rem;
}

.content-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
}

.content-image img {
border-radius: 10px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.habits-list {
padding: 70px 0;
background: var(--bg-light);
}

.habits-list h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.habits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.habit-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.habit-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.habit-item i {
font-size: 2.2rem;
color: var(--accent-color);
margin-bottom: 1rem;
}

.habit-item h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.habit-item p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.disclaimer-section {
padding: 50px 0;
}

.disclaimer-box {
background: #fff3e0;
border-left: 4px solid var(--accent-color);
padding: 25px;
border-radius: 6px;
}

.disclaimer-box h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.disclaimer-box p {
color: var(--text-dark);
font-size: 14px;
margin-bottom: 0;
line-height: 1.7;
}

.routine-framework {
padding: 70px 0;
background: var(--bg-light);
}

.routine-framework h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.framework-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.framework-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.framework-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.framework-icon {
width: 60px;
height: 60px;
background: var(--secondary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
}

.framework-icon i {
font-size: 1.5rem;
color: var(--white);
}

.framework-card h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.framework-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.timeline-section {
padding: 70px 0;
}

.timeline-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 2px;
background: var(--border-color);
transform: translateX(-50%);
}

.timeline-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

.timeline-item:nth-child(even) .timeline-marker {
order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
order: 1;
text-align: right;
}

.timeline-marker {
background: var(--secondary-color);
color: var(--white);
padding: 10px 20px;
border-radius: 6px;
font-weight: 600;
text-align: center;
align-self: start;
font-size: 14px;
}

.timeline-content {
background: var(--bg-light);
padding: 25px;
border-radius: 8px;
}

.timeline-content h3 {
color: var(--primary-color);
margin-bottom: 0.8rem;
}

.timeline-content p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
}

.benefits {
padding: 70px 0;
background: var(--white);
}

.benefits h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.benefit-card {
background: var(--bg-light);
padding: 35px;
border-radius: 10px;
border-left: 4px solid var(--secondary-color);
transition: all 0.3s ease;
position: relative;
}

.benefit-card:hover {
transform: translateX(5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
border-left-color: var(--accent-color);
}

.benefit-number {
font-size: 3rem;
font-weight: 700;
color: var(--secondary-color);
opacity: 0.15;
position: absolute;
top: 20px;
right: 30px;
font-family: 'Space Grotesk', sans-serif;
line-height: 1;
}

.benefit-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
position: relative;
z-index: 2;
}

.benefit-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
line-height: 1.7;
position: relative;
z-index: 2;
}

.science-section {
padding: 70px 0;
background: var(--bg-light);
}

.science-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.science-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.science-card {
background: var(--white);
padding: 35px;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.science-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.science-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
position: relative;
font-size: 2rem;
color: var(--white);
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
}

.science-icon::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: inherit;
opacity: 0.3;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.3;
}
50% {
transform: scale(1.2);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 0;
}
}

.science-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.science-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0;
line-height: 1.7;
}

.obstacles-section {
padding: 70px 0;
background: var(--white);
}

.obstacles-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 50px;
}

.obstacles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.obstacle-card {
background: var(--bg-light);
padding: 30px;
border-radius: 10px;
transition: all 0.3s ease;
border-top: 3px solid var(--accent-color);
}

.obstacle-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.obstacle-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 1.2rem;
}

.obstacle-header i {
font-size: 1.5rem;
color: var(--accent-color);
}

.obstacle-header h3 {
color: var(--primary-color);
margin-bottom: 0;
}

.obstacle-card p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 1rem;
line-height: 1.7;
}

.obstacle-card p:last-child {
margin-bottom: 0;
}

.obstacle-card strong {
color: var(--primary-color);
display: block;
margin-bottom: 0.3rem;
}

.contact-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 0;
position: relative;
overflow: hidden;
min-height: 40vh;
display: flex;
align-items: center;
}

.contact-hero h1 {
font-size: 2.3rem;
margin-bottom: 0.8rem;
color: var(--white);
}

.contact-hero p {
font-size: 1.05rem;
opacity: 0.95;
color: var(--white);
}

.contact-section {
padding: 70px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
}

.contact-form-container h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.form-group label {
font-weight: 500;
margin-bottom: 8px;
color: var(--text-dark);
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-color);
box-shadow: 0 0 0 3px rgba(74, 158, 186, 0.1);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
width: 18px;
height: 18px;
}

.checkbox-label a {
color: var(--secondary-color);
text-decoration: underline;
}

.btn-submit {
background: var(--accent-color);
color: var(--white);
padding: 14px 32px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Sora', sans-serif;
}

.btn-submit:hover {
background: #e89451;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.contact-info-container h3 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-info-card {
background: var(--bg-light);
padding: 30px;
border-radius: 8px;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.info-item:last-child {
margin-bottom: 0;
}

.info-item i {
font-size: 1.3rem;
color: var(--secondary-color);
margin-top: 3px;
}

.info-item strong {
display: block;
color: var(--primary-color);
margin-bottom: 5px;
font-size: 15px;
}

.info-item p {
color: var(--text-light);
font-size: 14px;
margin: 0;
}

.map-section {
padding: 70px 0;
background: var(--bg-light);
}

.map-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 40px;
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.thankyou-main,
.error-main {
min-height: calc(100vh - 150px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-section,
.error-section {
padding: 60px 0;
text-align: center;
}

.thankyou-content,
.error-content {
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon {
width: 80px;
height: 80px;
background: var(--success-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.thankyou-icon i {
font-size: 2.5rem;
color: var(--white);
}

.thankyou-content h1 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.thankyou-content p {
color: var(--text-light);
font-size: 1.05rem;
margin-bottom: 2rem;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--secondary-color);
opacity: 0.3;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 1rem;
}

.error-content h1 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.error-content p {
color: var(--text-light);
font-size: 1.05rem;
margin-bottom: 2rem;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 50px 0;
text-align: center;
color: var(--white);
}

.policy-hero h1 {
font-size: 2.2rem;
margin-bottom: 0.5rem;
}

.policy-hero p {
font-size: 14px;
opacity: 0.9;
}

.policy-content {
padding: 60px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
color: var(--primary-color);
margin-top: 2.5rem;
margin-bottom: 1rem;
font-size: 1.6rem;
}

.policy-text h3 {
color: var(--secondary-color);
margin-top: 1.5rem;
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.policy-text p {
color: var(--text-light);
margin-bottom: 1.2rem;
line-height: 1.8;
}

.footer {
background: var(--text-dark);
color: var(--white);
padding: 30px 0;
}

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

.footer-info p {
margin: 0;
font-size: 14px;
opacity: 0.8;
}

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
transition: all 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent-color);
}

@media (max-width: 768px) {
h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.5rem;
}

h3 {
font-size: 1.15rem;
}

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
z-index: 999;
}

.nav.active {
max-height: 300px;
padding: 10px 0;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-link {
padding: 12px 20px;
width: 100%;
}

.hero {
min-height: auto;
padding: 60px 0;
}

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
padding: 60px 0;
}

.hero-content h1 {
font-size: 2rem;
}

.hero-content p {
font-size: 1rem;
}

.hero-visual {
height: 350px;
margin: 0 auto;
max-width: 400px;
}

.hero-card {
padding: 20px;
}

.hero-card-1 {
top: 20px;
left: 20px;
}

.hero-card-2 {
top: 150px;
right: 20px;
}

.hero-card-3 {
bottom: 30px;
left: 30px;
}

.hero-stats {
gap: 25px;
}

.stat-number {
font-size: 1.6rem;
}

.features,
.about,
.products,
.process,
.cta,
.content-section,
.habits-list,
.routine-framework,
.timeline-section,
.contact-section,
.map-section,
.benefits,
.science-section,
.obstacles-section,
.cta-modern {
padding: 50px 0;
}

.about-wrapper,
.content-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.content-wrapper.reverse {
direction: ltr;
}

.products-grid,
.features-grid,
.habits-grid,
.framework-grid,
.benefits-grid,
.science-grid,
.obstacles-grid {
grid-template-columns: 1fr;
}

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

.timeline::before {
left: 20px;
}

.timeline-item {
grid-template-columns: 1fr;
gap: 15px;
padding-left: 50px;
}

.timeline-item:nth-child(even) .timeline-marker {
order: 1;
}

.timeline-item:nth-child(even) .timeline-content {
order: 2;
text-align: left;
}

.timeline-marker {
position: absolute;
left: 0;
width: 40px;
padding: 8px 5px;
font-size: 12px;
}

.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

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

.footer-links {
justify-content: center;
}

.cta-icon-group {
gap: 15px;
}

.cta-icon-item {
width: 50px;
height: 50px;
}

.cta-icon-item i {
font-size: 1.2rem;
}

.cta-features {
gap: 20px;
}

.cta-modern-content h2 {
font-size: 1.8rem;
}

.cta-modern-content > p {
font-size: 1rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 {
font-size: 1.6rem;
}

h2 {
font-size: 1.3rem;
}

.hero-content h1 {
font-size: 1.7rem;
}

.hero-visual {
height: 300px;
}

.hero-card {
padding: 18px;
}

.hero-card i {
font-size: 2rem;
}

.hero-card span {
font-size: 13px;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

.hero-actions a {
width: 100%;
text-align: center;
}

.btn-primary,
.btn-secondary {
padding: 10px 24px;
font-size: 14px;
}

.feature-card,
.product-card,
.habit-item,
.framework-card {
padding: 25px;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}

.cta-features {
gap: 15px;
flex-direction: column;
align-items: center;
}

.cta-feature {
font-size: 14px;
}

.btn-cta-modern {
padding: 14px 36px;
font-size: 15px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

h1 {
font-size: 1.4rem;
line-height: 1.3;
}

h2 {
font-size: 1.2rem;
}

h3 {
font-size: 1.05rem;
}

p {
font-size: 14px;
}

.hero-content h1 {
font-size: 1.5rem;
}

.hero-content p {
font-size: 14px;
}

.hero-badge {
font-size: 11px;
padding: 6px 14px;
}

.hero-stats {
gap: 15px;
}

.stat-number {
font-size: 1.4rem;
}

.stat-label {
font-size: 11px;
}

.hero-visual {
height: 250px;
}

.hero-card {
padding: 15px;
}

.hero-card i {
font-size: 1.6rem;
}

.hero-card span {
font-size: 12px;
}

.hero-actions a {
padding: 10px 20px;
font-size: 13px;
}

.btn-primary,
.btn-secondary,
.btn-product,
.btn-submit {
padding: 10px 20px;
font-size: 13px;
}

.btn-cta-modern {
padding: 12px 28px;
font-size: 14px;
}

.feature-card,
.product-card,
.habit-item,
.framework-card,
.benefit-card,
.science-card,
.obstacle-card {
padding: 20px;
}

.feature-card i,
.habit-item i {
font-size: 2rem;
}

.section-header h2,
.benefits h2,
.science-section h2,
.obstacles-section h2,
.process h2,
.habits-list h2,
.routine-framework h2,
.timeline-section h2 {
font-size: 1.3rem;
}

.section-header p {
font-size: 14px;
}

.product-price {
font-size: 1.5rem;
}

.step-number,
.benefit-number {
font-size: 2rem;
}

.cta-modern-content h2 {
font-size: 1.4rem;
}

.cta-modern-content > p {
font-size: 14px;
}

.cta-features {
gap: 12px;
}

.cta-feature {
font-size: 13px;
padding-left: 18px;
}

.cta-feature::before {
font-size: 14px;
}

.contact-form-container h2,
.contact-info-container h3 {
font-size: 1.3rem;
}

.form-group label {
font-size: 13px;
}

.form-group input,
.form-group textarea {
padding: 10px;
font-size: 13px;
}

.checkbox-label {
font-size: 12px;
}

.info-item strong {
font-size: 14px;
}

.info-item p {
font-size: 13px;
}

.timeline-marker {
width: 35px;
padding: 6px 4px;
font-size: 11px;
}

.timeline-content {
padding: 18px;
}

.error-code {
font-size: 3rem;
}

.thankyou-icon {
width: 60px;
height: 60px;
}

.thankyou-icon i {
font-size: 2rem;
}

.footer {
padding: 25px 0;
}

.footer-info p,
.footer-links a {
font-size: 12px;
}

.policy-hero h1 {
font-size: 1.6rem;
}

.policy-text h2 {
font-size: 1.4rem;
}

.policy-text h3 {
font-size: 1.1rem;
}

.policy-text p {
font-size: 14px;
line-height: 1.7;
}
}
