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

:root {
--primary: #4f46e5;
--primary-dark: #4338ca;
--secondary: #06b6d4;
--accent: #10b981;
--text: #1e293b;
--text-light: #64748b;
--bg: #ffffff;
--bg-alt: #f8fafc;
--border: #e2e8f0;
--success: #10b981;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text);
background: var(--bg);
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.4rem; }
h4 { font-size: 1.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);
color: white;
padding: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

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

.privacy-content p {
margin: 0;
font-size: 14px;
}

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

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

.btn-accept:hover {
background: var(--primary-dark);
}

.header {
background: var(--bg);
padding: 16px 0;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

.header.hidden {
transform: translateY(-100%);
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 600;
color: var(--primary);
}

.nav {
display: flex;
gap: 28px;
}

.nav a {
font-size: 14px;
font-weight: 500;
color: var(--text);
position: relative;
}

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

.nav a:hover::after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--text);
transition: all 0.3s ease;
}

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

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

.floating-shape {
position: absolute;
background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
left: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 300px;
height: 300px;
top: 50%;
right: -50px;
animation-delay: 5s;
}

.shape-3 {
width: 250px;
height: 250px;
bottom: -50px;
left: 30%;
animation-delay: 10s;
}

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

.hero-wrapper {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
margin: 0 auto;
padding: 100px 0;
}

.hero-badge {
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 10px 20px;
border-radius: 50px;
color: white;
font-size: 13px;
font-weight: 500;
margin-bottom: 30px;
animation: fadeInDown 0.8s ease;
}

.hero-badge i {
font-size: 16px;
color: #a78bfa;
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-title {
font-size: 4rem;
font-weight: 700;
color: white;
line-height: 1.2;
margin-bottom: 25px;
animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
background: linear-gradient(135deg, #4f46e5, #06b6d4, #10b981);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: inline-block;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-description {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 40px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.8;
animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 60px;
flex-wrap: wrap;
animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
display: inline-flex;
align-items: center;
gap: 12px;
background: linear-gradient(135deg, #4f46e5, #06b6d4);
color: white;
padding: 16px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

.btn-hero-primary i {
font-size: 18px;
transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
transform: translateX(5px);
}

.btn-hero-secondary {
display: inline-flex;
align-items: center;
gap: 12px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
color: white;
padding: 16px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
transform: translateY(-3px);
}

.hero-stats {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
animation: fadeInUp 0.8s ease 0.8s both;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: white;
line-height: 1;
margin-bottom: 8px;
font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
}

.stat-divider {
width: 1px;
height: 50px;
background: rgba(255, 255, 255, 0.2);
}

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

.hero-text h1 {
font-size: 2.8rem;
margin-bottom: 20px;
color: var(--text);
}

.hero-text p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 30px;
}

.hero-visual {
display: flex;
align-items: center;
justify-content: center;
}

.hero-visual i {
font-size: 180px;
color: var(--primary);
opacity: 0.2;
}

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

.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

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

.features {
padding: 80px 0;
}

.features h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 50px;
}

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

.feature-card {
padding: 35px;
background: var(--bg-alt);
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card i {
font-size: 48px;
color: var(--primary);
margin-bottom: 20px;
}

.feature-card h3 {
margin-bottom: 12px;
}

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

.solutions {
padding: 80px 0;
background: var(--bg-alt);
}

.solutions-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
align-items: center;
}

.solutions-image {
display: flex;
align-items: center;
justify-content: center;
}

.solutions-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solutions-image i {
font-size: 160px;
color: var(--secondary);
opacity: 0.15;
}

.solutions-content h2 {
margin-bottom: 30px;
}

.solution-item {
display: flex;
gap: 18px;
margin-bottom: 25px;
}

.solution-item i {
font-size: 22px;
color: var(--success);
flex-shrink: 0;
margin-top: 2px;
}

.solution-item h4 {
margin-bottom: 6px;
}

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

.solutions-content .btn-secondary {
margin-top: 20px;
}

.products {
padding: 80px 0;
}

.products h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 50px;
}

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

.product-card {
background: white;
border: 1px solid var(--border);
border-radius: 12px;
padding: 35px;
text-align: center;
transition: all 0.3s ease;
}

.product-card:hover {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

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

.product-icon i {
font-size: 36px;
color: white;
}

.product-card h3 {
margin-bottom: 12px;
}

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

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

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

.btn-product:hover {
background: var(--primary);
color: white;
}

.testimonials {
padding: 80px 0;
background: var(--bg-alt);
}

.testimonials h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 50px;
}

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

.testimonial-card {
background: white;
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

.testimonial-card p {
font-style: italic;
color: var(--text-light);
margin-bottom: 15px;
font-size: 14px;
}

.testimonial-author {
font-weight: 600;
color: var(--text);
font-size: 14px;
}

.testimonial-disclaimer {
text-align: center;
font-size: 13px;
color: var(--text-light);
margin-top: 30px;
font-style: italic;
}

.how-it-works {
padding: 80px 0;
background: var(--bg);
}

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

.section-badge {
display: inline-block;
background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
color: var(--primary);
padding: 8px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

.section-header h2 {
margin-bottom: 15px;
}

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

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

.step-card {
background: white;
padding: 40px 30px;
border-radius: 16px;
border: 2px solid var(--border);
text-align: center;
transition: all 0.4s ease;
position: relative;
}

.step-card:hover {
border-color: var(--primary);
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.step-icon {
position: relative;
width: 90px;
height: 90px;
margin: 0 auto 25px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.step-icon i {
font-size: 36px;
color: white;
z-index: 2;
}

.step-num {
position: absolute;
top: -10px;
right: -10px;
width: 35px;
height: 35px;
background: white;
color: var(--primary);
border-radius: 50%;
font-weight: 700;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

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

.benefits {
padding: 80px 0;
background: var(--bg-alt);
}

.benefits-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}

.benefits-content .section-badge {
margin-bottom: 15px;
}

.benefits-content h2 {
margin-bottom: 15px;
}

.benefits-content > p {
color: var(--text-light);
margin-bottom: 35px;
font-size: 1.05rem;
}

.benefits-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.benefit-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.benefit-icon {
width: 50px;
height: 50px;
flex-shrink: 0;
background: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-icon i {
font-size: 22px;
color: var(--primary);
}

.benefit-text h4 {
margin-bottom: 6px;
font-size: 1.1rem;
}

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

.benefits-visual {
position: relative;
}

.benefits-visual img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefits-visual.old-style {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
position: relative;
}

.visual-card {
background: white;
padding: 30px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
text-align: center;
transition: all 0.3s ease;
}

.visual-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.visual-card i {
font-size: 42px;
color: var(--primary);
}

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

.visual-card.card-1 {
animation: floatCard 3s ease-in-out infinite;
}

.visual-card.card-2 {
animation: floatCard 3s ease-in-out 0.5s infinite;
}

.visual-card.card-3 {
animation: floatCard 3s ease-in-out 1s infinite;
}

.visual-card.card-4 {
animation: floatCard 3s ease-in-out 1.5s infinite;
}

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

.faq {
padding: 80px 0;
background: var(--bg);
}

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

.faq-item {
background: var(--bg-alt);
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--primary);
transition: all 0.3s ease;
}

.faq-item:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transform: translateX(5px);
}

.faq-question {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.faq-question i {
font-size: 22px;
color: var(--primary);
flex-shrink: 0;
}

.faq-question h4 {
margin: 0;
font-size: 1.05rem;
}

.faq-item p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
margin: 0;
padding-left: 34px;
}

.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #10b981 100%);
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
opacity: 0.3;
}

.final-cta-wrapper {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.final-cta-wrapper h2 {
font-size: 2.5rem;
color: white;
margin-bottom: 20px;
}

.final-cta-wrapper > p {
font-size: 1.15rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 40px;
line-height: 1.8;
}

.cta-buttons {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.btn-cta-primary {
display: inline-flex;
align-items: center;
gap: 12px;
background: white;
color: var(--primary);
padding: 16px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
display: inline-flex;
align-items: center;
gap: 12px;
background: transparent;
color: white;
padding: 16px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
border: 2px solid rgba(255, 255, 255, 0.5);
transition: all 0.3s ease;
}

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

.cta-note {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
}

.cta-note i {
font-size: 16px;
}

.cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content {
text-align: center;
color: white;
}

.cta-content h2 {
font-size: 2.2rem;
margin-bottom: 15px;
color: white;
}

.cta-content p {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.95;
}

.cta .btn-primary {
background: white;
color: var(--primary);
}

.cta .btn-primary:hover {
background: var(--bg-alt);
}

.intro-section {
padding: 60px 0;
background: var(--bg-alt);
}

.intro-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.intro-text {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-light);
margin: 0;
}

.intro-content p {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-light);
margin: 0;
}

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

.habit-card {
background: white;
padding: 30px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.habit-card:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.habit-card i {
font-size: 42px;
color: var(--primary);
margin-bottom: 15px;
}

.habit-card h4 {
margin-bottom: 10px;
}

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

.tools-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
margin-top: 30px;
}

.tool-card {
background: var(--bg-alt);
padding: 30px 25px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.tool-card:hover {
background: white;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transform: translateY(-5px);
}

.tool-card i {
font-size: 38px;
color: var(--secondary);
margin-bottom: 15px;
}

.tool-card h4 {
margin-bottom: 10px;
font-size: 1.05rem;
}

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

.page-hero {
padding: 60px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
text-align: center;
}

.page-hero h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.1rem;
color: var(--text-light);
}

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

.content-section.alt {
background: var(--bg-alt);
}

.content-section h2 {
margin-bottom: 25px;
}

.content-section p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.content-layout {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 50px;
}

.content-main h2 {
margin-bottom: 20px;
}

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

.technique-item {
background: var(--bg-alt);
padding: 25px;
border-radius: 10px;
}

.technique-item i {
font-size: 32px;
color: var(--primary);
margin-bottom: 12px;
}

.technique-item h4 {
margin-bottom: 8px;
}

.technique-item p {
font-size: 14px;
margin: 0;
}

.sidebar-card {
background: var(--primary);
color: white;
padding: 30px;
border-radius: 12px;
position: sticky;
top: 100px;
}

.sidebar-card i {
font-size: 36px;
margin-bottom: 15px;
}

.sidebar-card h3 {
color: white;
margin-bottom: 12px;
}

.sidebar-card p {
color: white;
opacity: 0.95;
font-size: 14px;
margin: 0;
}

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

.movement-card {
background: white;
padding: 30px;
border-radius: 10px;
border: 1px solid var(--border);
text-align: center;
}

.movement-card i {
font-size: 42px;
color: var(--secondary);
margin-bottom: 15px;
}

.movement-card h4 {
margin-bottom: 10px;
}

.movement-card p {
font-size: 14px;
margin: 0;
}

.practices-list {
margin-top: 30px;
}

.practice-item {
display: flex;
gap: 25px;
margin-bottom: 30px;
padding: 30px;
background: var(--bg-alt);
border-radius: 10px;
}

.practice-number {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
opacity: 0.3;
flex-shrink: 0;
}

.practice-content h4 {
margin-bottom: 8px;
}

.practice-content p {
font-size: 14px;
margin: 0;
}

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

.priority-card {
background: white;
padding: 30px;
border-radius: 10px;
border: 1px solid var(--border);
text-align: center;
}

.priority-icon {
width: 60px;
height: 60px;
margin: 0 auto 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
}

.priority-icon.urgent {
background: rgba(239, 68, 68, 0.1);
color: #ef4444;
}

.priority-icon.important {
background: rgba(99, 102, 241, 0.1);
color: var(--primary);
}

.priority-icon.low {
background: rgba(100, 116, 139, 0.1);
color: var(--text-light);
}

.priority-card h4 {
margin-bottom: 10px;
}

.priority-card p {
font-size: 14px;
margin: 0;
}

.time-blocks {
margin-top: 30px;
}

.time-block {
display: flex;
gap: 25px;
margin-bottom: 20px;
padding: 25px;
background: white;
border-radius: 10px;
border-left: 4px solid var(--primary);
}

.time-label {
font-weight: 700;
color: var(--primary);
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
flex-shrink: 0;
width: 100px;
}

.time-content h4 {
margin-bottom: 6px;
}

.time-content p {
font-size: 14px;
margin: 0;
}

.boundary-list {
margin-top: 30px;
}

.boundary-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
}

.boundary-item i {
font-size: 28px;
color: var(--secondary);
flex-shrink: 0;
margin-top: 2px;
}

.boundary-item h4 {
margin-bottom: 6px;
}

.boundary-item p {
font-size: 14px;
margin: 0;
}

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

.review-step {
background: white;
padding: 30px;
border-radius: 10px;
text-align: center;
}

.step-number {
display: inline-block;
width: 50px;
height: 50px;
background: var(--primary);
color: white;
border-radius: 50%;
font-size: 1.5rem;
font-weight: 700;
line-height: 50px;
margin-bottom: 20px;
}

.review-step h4 {
margin-bottom: 10px;
}

.review-step p {
font-size: 14px;
margin: 0;
}

.contact-hero {
padding: 60px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.contact-hero-text h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.contact-hero-text p {
font-size: 1.1rem;
color: var(--text-light);
}

.contact-hero-icon {
display: flex;
align-items: center;
justify-content: center;
}

.contact-hero-icon i {
font-size: 140px;
color: var(--primary);
opacity: 0.2;
}

.contact-hero-image {
display: flex;
align-items: center;
justify-content: center;
}

.contact-hero-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-main {
padding: 80px 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
}

.contact-form-wrapper h2 {
margin-bottom: 30px;
}

.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;
font-size: 14px;
color: var(--text);
}

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

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

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

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

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

.checkbox-label span {
color: var(--text-light);
}

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

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

.btn-submit:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-info-card {
background: var(--bg-alt);
padding: 35px;
border-radius: 12px;
}

.contact-info-card h3 {
margin-bottom: 25px;
}

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

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

.info-item i {
font-size: 22px;
color: var(--primary);
flex-shrink: 0;
margin-top: 2px;
}

.info-item strong {
display: block;
margin-bottom: 4px;
font-size: 14px;
}

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

.contact-hours {
background: var(--primary);
color: white;
padding: 25px;
border-radius: 12px;
}

.contact-hours h4 {
color: white;
margin-bottom: 8px;
}

.contact-hours p {
color: white;
opacity: 0.95;
font-size: 14px;
margin: 0;
}

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

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
padding: 100px 0;
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
}

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

.thankyou-icon,
.error-icon {
margin-bottom: 30px;
}

.thankyou-icon i {
font-size: 80px;
color: var(--success);
}

.error-icon i {
font-size: 80px;
color: #ef4444;
}

.thankyou-content h1,
.error-content h1 {
font-size: 2rem;
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 35px;
}

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

.policy-hero {
padding: 60px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
text-align: center;
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.policy-hero p {
color: var(--text-light);
font-size: 14px;
}

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

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

.policy-text h2 {
margin-top: 40px;
margin-bottom: 20px;
padding-top: 20px;
border-top: 1px solid var(--border);
}

.policy-text h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}

.policy-text h3 {
margin-top: 30px;
margin-bottom: 15px;
color: var(--primary);
}

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

.footer {
background: var(--text);
color: 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.9;
}

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

.footer-links a {
color: white;
font-size: 14px;
opacity: 0.9;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
}

@media (max-width: 992px) {
h1 { font-size: 1.9rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

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

.hero-title {
font-size: 2.8rem;
}

.hero-description {
font-size: 1.1rem;
}

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

.hero-stats {
gap: 25px;
}

.stat-divider {
height: 40px;
}

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

.benefits-layout {
grid-template-columns: 1fr;
gap: 50px;
}

.benefits-visual {
order: -1;
}

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

.tools-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.final-cta-wrapper h2 {
font-size: 2rem;
}

.final-cta-wrapper > p {
font-size: 1rem;
}

.hero-grid,
.solutions-layout,
.contact-hero-content,
.contact-grid,
.content-layout {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-visual,
.solutions-image,
.contact-hero-icon,
.contact-hero-image {
display: none;
}

.features-grid,
.products-grid,
.testimonials-grid,
.movement-grid,
.priority-grid,
.review-steps {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

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

.sidebar-card {
position: static;
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
gap: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: flex;
}

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

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

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

.hero-wrapper {
padding: 60px 0;
}

.hero-title {
font-size: 2.2rem;
}

.hero-description {
font-size: 1rem;
}

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

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
justify-content: center;
}

.hero-stats {
gap: 20px;
}

.stat-divider {
display: none;
}

.cta-buttons {
flex-direction: column;
width: 100%;
}

.btn-cta-primary,
.btn-cta-outline {
width: 100%;
justify-content: center;
}

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

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

.features-grid,
.products-grid,
.testimonials-grid,
.movement-grid,
.priority-grid,
.review-steps,
.tools-grid {
grid-template-columns: 1fr;
}

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

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

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.05rem; }
h4 { font-size: 0.95rem; }

body {
font-size: 14px;
}

.hero-wrapper {
padding: 40px 0;
}

.hero-title {
font-size: 1.6rem;
line-height: 1.3;
}

.hero-description {
font-size: 0.9rem;
margin-bottom: 30px;
}

.hero-badge {
font-size: 11px;
padding: 8px 16px;
}

.hero-badge i {
font-size: 1.5rem;
}

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

.hero-stats {
gap: 15px;
margin-bottom: 40px;
}

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

.floating-shape {
display: none;
}

.section-header h2 {
font-size: 1.4rem;
}

.section-header p {
font-size: 0.95rem;
}

.section-badge {
font-size: 11px;
padding: 6px 16px;
}

.step-card {
padding: 25px 20px;
}

.step-icon {
width: 65px;
height: 65px;
}

.step-icon i {
font-size: 26px;
}

.step-num {
width: 30px;
height: 30px;
font-size: 12px;
}

.feature-card,
.product-card,
.testimonial-card,
.faq-item {
padding: 20px;
}

.feature-card i,
.product-icon i {
font-size: 36px;
}

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

.visual-card {
padding: 20px 15px;
}

.visual-card i {
font-size: 28px;
}

.btn-cta-primary,
font-size: 1.4rem;
}

.final-cta-wrapper > p {
font-size: 0.9rem;
}

.btn-cta-primary,
.btn-cta-outline {
padding: 12px 24px;
font-size: 14px;
}

.cta-note {
font-size: 12px;
}

.intro-text {
font-size: 1rem;
}

.technique-item,
.movement-card,
.priority-card,
.habit-card,
.tool-card {
padding: 20px 15px;
}

.technique-item i,
.movement-card i,
.habit-card i {
font-size: 32px;
}

.tool-card i {
font-size: 32px;
}

.practice-number {
font-size: 1.5rem;
}

.time-label {
font-size: 12px;
width: 80px;
}

.boundary-item i {
font-size: 24px;
}

.step-number {
width: 40px;
height: 40px;
font-size: 1.2rem;
line-height: 40px;
}

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

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

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

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

.info-item i {
font-size: 20px;
}

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

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

.contact-hours {
padding: 20px;
}

.contact-hours h4 {
font-size: 1rem;
}

.contact-hours p {
font-size: 13px;
}

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

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

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

.footer {
padding: 25px 0;
}

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

.hero,
.features,
.solutions,
.products,
.testimonials,
.how-it-works,
.benefits,
.faq,
.final-cta,
.content-section,
.contact-main,
.map-section {
padding: 40px 0;
}

.page-hero,
.contact-hero,
.policy-hero {
padding: 35px 0;
}

.intro-section {
padding: 40px 0;
}

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

.thankyou-icon i,
.error-icon i {
font-size: 50px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 1.5rem;
}

.thankyou-content p,
.error-content p {
font-size: 0.95rem;
}
}

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

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }

.hero-title {
font-size: 1.5rem;
}

.hero-description {
font-size: 0.85rem;
}

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

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

.btn-hero-primary,
.btn-hero-secondary {
padding: 11px 20px;
font-size: 13px;
}

.section-header h2 {
font-size: 1.3rem;
}

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

.step-icon i {
font-size: 24px;
}

.feature-card,
.product-card,
.testimonial-card,
.faq-item,
.step-card {
padding: 18px 15px;
}

.final-cta-wrapper h2 {
font-size: 1.3rem;
}

.cta-icon-group {

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

h1 { font-size: 1.3rem; }
h2 { font-size: 1.15rem; }
h3 { font-size: 1rem; }
h4 { font-size: 0.9rem; }

body {
font-size: 13px;
}

.hero-wrapper {
padding: 35px 0;
}

.hero-title {
font-size: 1.4rem;
}

.hero-description {
font-size: 0.8rem;
margin-bottom: 25px;
}

.hero-badge {
font-size: 10px;
padding: 7px 14px;
}

.hero-badge i {
font-size: 1.2rem;
}

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

.hero-stats {
gap: 12px;
margin-bottom: 30px;
}

.btn-hero-primary,
.btn-hero-secondary {
padding: 10px 18px;
font-size: 12px;
gap: 8px;
}

.section-header h2 {
font-size: 1.2rem;
}

.section-header p {
font-size: 0.85rem;
}

.section-badge {
font-size: 10px;
padding: 5px 14px;
}

.step-card {
padding: 20px 15px;
}

.step-icon {
width: 55px;
height: 55px;
margin-bottom: 20px;
}

.step-icon i {
font-size: 22px;
}

.step-num {
width: 28px;
height: 28px;
font-size: 11px;
top: -8px;
right: -8px;
}

.feature-card,
.product-card,
.testimonial-card,
.faq-item {
padding: 16px 12px;
}

.feature-card i {
font-size: 32px;
margin-bottom: 15px;
}

.product-icon {
width: 65px;
height: 65px;
margin-bottom: 15px;
}

.product-icon i {
font-size: 28px;
}

.product-price {
font-size: 1.4rem;
margin-bottom: 15px;
}

.testimonial-card p {
font-size: 13px;
}

.testimonial-author {
font-size: 12px;
}

.faq-question i {
font-size: 18px;
}

.faq-question h4 {
font-size: 0.9rem;
}

.faq-item p {
font-size: 12px;
padding-left: 28px;
}

.final-cta-wrapper h2 {
font-size: 1.2rem;
margin-bottom: 15px;
}

.final-cta-wrapper > p {
font-size: 0.85rem;
margin-bottom: 30px;
}

.btn-cta-primary,
.btn-cta-outline {
padding: 11px 20px;
font-size: 13px;
gap: 8px;
}

.cta-note {
font-size: 11px;
}

.cta-note i {
font-size: 14px;
}

.intro-text {
font-size: 0.9rem;
line-height: 1.7;
}

.technique-item,
.movement-card,
.priority-card,
.habit-card,
.tool-card {
padding: 18px 12px;
}

.technique-item i,
.movement-card i,
.habit-card i,
.tool-card i {
font-size: 28px;
margin-bottom: 12px;
}

.practice-item {
padding: 20px 15px;
gap: 15px;
}

.practice-number {
font-size: 1.3rem;
}

.time-block {
padding: 18px 15px;
gap: 15px;
flex-direction: column;
}

.time-label {
font-size: 11px;
width: auto;
}

.boundary-item {
gap: 15px;
}

.boundary-item i {
font-size: 22px;
}

.review-step {
padding: 20px 15px;
}

.step-number {
width: 38px;
height: 38px;
font-size: 1.1rem;
line-height: 38px;
margin-bottom: 15px;
}

.contact-hero-text h1 {
font-size: 1.4rem;
}

.contact-hero-text p {
font-size: 0.9rem;
}

.contact-form-wrapper h2,
.contact-info-card h3 {
font-size: 1.2rem;
margin-bottom: 20px;
}

.contact-form {
gap: 16px;
}

.form-group label {
font-size: 12px;
margin-bottom: 6px;
}

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

.checkbox-label {
font-size: 11px;
gap: 8px;
}

.btn-submit {
padding: 11px 24px;
font-size: 13px;
}

.contact-info-card {
padding: 25px 18px;
}

.info-item {
gap: 14px;
margin-bottom: 20px;
}

.info-item i {
font-size: 18px;
}

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

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

.contact-hours {
padding: 18px;
}

.contact-hours h4 {
font-size: 0.95rem;
}

.contact-hours p {
font-size: 12px;
}

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

.policy-hero p {
font-size: 12px;
}

.policy-text h2 {
font-size: 1.2rem;
margin-top: 30px;
margin-bottom: 15px;
}

.policy-text h3 {
font-size: 1.05rem;
margin-top: 25px;
margin-bottom: 12px;
}

.policy-text p {
font-size: 13px;
line-height: 1.7;
margin-bottom: 12px;
}

.footer {
padding: 20px 0;
}

.footer-content {
gap: 15px;
}

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

.footer-links {
gap: 18px;
}

.hero,
.features,
.solutions,
.products,
.testimonials,
.how-it-works,
.benefits,
.faq,
.final-cta {
padding: 35px 0;
}

.content-section,
.contact-main,
.map-section {
padding: 35px 0;
}

.page-hero,
.contact-hero,
.policy-hero {
padding: 30px 0;
}

.intro-section {
padding: 35px 0;
}

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

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-product {
padding: 9px 18px;
font-size: 12px;
}

.thankyou-section,
.error-section {
padding: 60px 0;
min-height: calc(100vh - 180px);
}

.thankyou-icon i,
.error-icon i {
font-size: 45px;
margin-bottom: 20px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 1.3rem;
margin-bottom: 15px;
}

.thankyou-content p,
.error-content p {
font-size: 0.85rem;
margin-bottom: 25px;
}

.thankyou-actions,
.error-actions {
gap: 12px;
}

.logo {
font-size: 1.1rem;
}

.nav a {
font-size: 13px;
}

.privacy-content {
flex-direction: column;
gap: 15px;
text-align: center;
}

.privacy-content p {
font-size: 12px;
}

.btn-accept {
padding: 9px 20px;
font-size: 12px;
width: 100%;
}
}
