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

:root {
--primary-color: #6366f1;
--secondary-color: #1e293b;
--accent-color: #10b981;
--light-color: #f8fafc;
--text-color: #334155;
--border-color: #e2e8f0;
--shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

body {
font-family: 'Sora', sans-serif;
color: var(--text-color);
line-height: 1.6;
font-size: 14px;
background: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
color: var(--secondary-color);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--secondary-color);
color: white;
padding: 15px 0;
z-index: 10000;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
transform: translateY(100%);
transition: transform 0.3s ease;
}

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

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

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

.privacy-actions {
display: flex;
gap: 12px;
align-items: center;
}

.privacy-actions a {
color: var(--primary-color);
text-decoration: none;
font-size: 13px;
}

.privacy-actions button {
background: var(--primary-color);
color: white;
border: none;
padding: 8px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: background 0.3s;
}

.privacy-actions button:hover {
background: var(--secondary-color);
}

.header {
background: white;
padding: 12px 0;
box-shadow: var(--shadow);
position: relative;
z-index: 1000;
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s;
}

.logo:hover {
color: var(--secondary-color);
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--secondary-color);
margin: 3px 0;
transition: 0.3s;
}

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

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

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

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

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

.hero {
position: relative;
background: linear-gradient(135deg, #6366f1 0%, #1e293b 100%);
color: white;
padding: 100px 0 80px;
text-align: center;
overflow: hidden;
min-height: 600px;
display: flex;
align-items: center;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}

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

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

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

.hero-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 .container {
position: relative;
z-index: 2;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 50px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
border: 1px solid rgba(255, 255, 255, 0.3);
animation: fadeInDown 0.8s ease;
}

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

.hero-content h1 {
color: white;
margin-bottom: 20px;
font-size: 3rem;
line-height: 1.2;
animation: fadeInUp 1s ease;
}

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

.hero-highlight {
position: relative;
display: inline-block;
background: linear-gradient(to right, #fff, #f0f0f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 700;
}

.hero-content p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
animation: fadeInUp 1.2s ease;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
animation: fadeInUp 1.4s ease;
}

.btn-primary, .btn-secondary, .btn-outline {
display: inline-block;
padding: 14px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
}

.btn-primary {
background: white;
color: var(--primary-color);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-outline {
background: transparent;
color: white;
border: 2px solid rgba(255, 255, 255, 0.5);
backdrop-filter: blur(10px);
}

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

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

.stat-item {
text-align: center;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.1);
padding: 20px 30px;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s;
}

.stat-item:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
}

.stat-number {
font-size: 2rem;
font-weight: 700;
color: white;
margin-bottom: 5px;
font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
font-size: 12px;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 1px;
}

.btn-secondary {
background: transparent;
color: var(--secondary-color);
border: 2px solid var(--secondary-color);
}

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

.features {
padding: 60px 0;
background: white;
}

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

.feature-card {
padding: 25px;
background: var(--light-color);
border-radius: 12px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.feature-card i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 15px;
}

.feature-card h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.feature-card p {
font-size: 13px;
line-height: 1.6;
}

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

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

.science-text h2 {
margin-bottom: 15px;
}

.science-text p {
margin-bottom: 15px;
font-size: 14px;
}

.science-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.break-types {
padding: 60px 0;
background: white;
text-align: center;
}

.break-types h2 {
margin-bottom: 15px;
}

.section-intro {
max-width: 800px;
margin: 0 auto 40px;
font-size: 14px;
line-height: 1.7;
color: var(--text-color);
}

.types-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 25px;
margin-top: 30px;
}

.type-item {
padding: 25px;
background: var(--light-color);
border-radius: 12px;
transition: all 0.3s;
}

.type-item:hover {
background: var(--primary-color);
color: white;
transform: translateY(-5px);
}

.type-item i {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 12px;
}

.type-item:hover i {
color: white;
}

.type-item h4 {
margin-bottom: 10px;
}

.type-item:hover h4 {
color: white;
}

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

.implementation {
padding: 60px 0;
background: var(--light-color);
}

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

.implementation-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.implementation-text h2 {
margin-bottom: 20px;
}

.implementation-list {
list-style: none;
margin-bottom: 25px;
}

.implementation-list li {
padding: 10px 0;
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 14px;
}

.implementation-list i {
color: var(--accent-color);
margin-top: 3px;
}

.cta-section {
padding: 70px 0;
background: linear-gradient(135deg, #6366f1 0%, #1e293b 100%);
position: relative;
overflow: hidden;
}

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

.cta-wrapper {
position: relative;
z-index: 2;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 50px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-content {
text-align: center;
margin-bottom: 35px;
}

.cta-icon {
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
font-size: 2.5rem;
color: white;
}

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

.cta-content p {
color: white;
font-size: 1.05rem;
opacity: 0.95;
margin-bottom: 25px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
}

.btn-cta {
display: inline-block;
background: white;
color: var(--primary-color);
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cta-feature {
display: flex;
align-items: center;
gap: 10px;
color: white;
font-size: 14px;
font-weight: 500;
}

.cta-feature i {
font-size: 1.2rem;
color: var(--accent-color);
}

.page-hero {
position: relative;
background: linear-gradient(135deg, #6366f1 0%, #1e293b 100%);
color: white;
padding: 80px 0;
text-align: center;
overflow: hidden;
min-height: 400px;
display: flex;
align-items: center;
}

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

.page-hero h1 {
color: white;
margin-bottom: 12px;
font-size: 2.5rem;
animation: fadeInUp 1s ease;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
animation: fadeInUp 1.2s ease;
}

.techniques {
padding: 60px 0;
background: white;
}

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

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

.technique-card {
padding: 25px;
background: var(--light-color);
border-radius: 12px;
transition: all 0.3s;
}

.technique-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-3px);
}

.technique-icon {
width: 50px;
height: 50px;
background: var(--primary-color);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.technique-icon i {
font-size: 1.5rem;
color: white;
}

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

.technique-card p {
font-size: 13px;
line-height: 1.6;
}

.products-section {
padding: 60px 0;
background: var(--light-color);
}

.products-section h2 {
text-align: center;
margin-bottom: 15px;
}

.products-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 40px;
font-size: 14px;
}

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

.product-card {
background: white;
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
transition: all 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.product-icon {
width: 70px;
height: 70px;
background: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.product-icon i {
font-size: 2rem;
color: white;
}

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

.product-card p {
font-size: 13px;
margin-bottom: 20px;
line-height: 1.6;
}

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

.btn-product {
display: inline-block;
padding: 10px 25px;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 13px;
transition: all 0.3s;
}

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

.implementation-tips {
padding: 60px 0;
background: white;
}

.tips-content h2 {
text-align: center;
margin-bottom: 40px;
}

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

.tip-item {
padding: 25px;
background: var(--light-color);
border-radius: 12px;
border-left: 4px solid var(--primary-color);
}

.tip-item h4 {
margin-bottom: 10px;
color: var(--primary-color);
}

.tip-item p {
font-size: 13px;
line-height: 1.6;
}

.recovery-methods {
padding: 60px 0;
background: white;
}

.recovery-methods h2 {
text-align: center;
margin-bottom: 40px;
}

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

.recovery-card {
padding: 25px;
background: var(--light-color);
border-radius: 12px;
text-align: center;
transition: all 0.3s;
}

.recovery-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-3px);
}

.recovery-card i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 15px;
}

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

.recovery-card p {
font-size: 13px;
line-height: 1.6;
}

.science-deep {
padding: 60px 0;
background: var(--light-color);
}

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

.science-text-block h2 {
margin-bottom: 20px;
}

.science-text-block p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.science-image-block img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.benefits-section {
padding: 60px 0;
background: white;
}

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

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

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

.benefit-item {
padding: 20px;
background: var(--light-color);
border-radius: 12px;
display: flex;
gap: 15px;
}

.benefit-item i {
font-size: 1.8rem;
color: var(--primary-color);
flex-shrink: 0;
}

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

.benefit-item p {
font-size: 13px;
line-height: 1.6;
}

.practical-integration {
padding: 60px 0;
background: var(--light-color);
}

.practical-integration h2 {
text-align: center;
margin-bottom: 40px;
}

.integration-steps {
max-width: 800px;
margin: 0 auto;
}

.step-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
align-items: flex-start;
}

.step-number {
width: 45px;
height: 45px;
background: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
flex-shrink: 0;
}

.step-text h4 {
margin-bottom: 8px;
}

.step-text p {
font-size: 13px;
line-height: 1.6;
}

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

.contact-hero h1 {
color: white;
margin-bottom: 12px;
}

.contact-hero p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.contact-main {
padding: 60px 0;
background: white;
}

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

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

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

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

.form-group label {
margin-bottom: 6px;
font-weight: 600;
font-size: 13px;
color: var(--dark-color);
}

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

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

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

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

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

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

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

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

.btn-submit {
padding: 14px 30px;
background: var(--primary-color);
color: white;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.3s;
}

.btn-submit:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

.info-item h4 {
margin-bottom: 5px;
font-size: 1rem;
}

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

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

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

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

.disclaimer-section {
padding: 40px 0;
background: white;
}

.disclaimer-box {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 20px;
border-radius: 8px;
}

.disclaimer-box h3 {
margin-bottom: 10px;
color: #856404;
}

.disclaimer-box p {
font-size: 13px;
line-height: 1.6;
color: #856404;
}

.thankyou-main, .error-main {
min-height: calc(100vh - 120px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
background: var(--light-color);
}

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

.thankyou-icon {
font-size: 5rem;
color: var(--accent-color);
margin-bottom: 20px;
font-weight: 700;
}

.thankyou-icon i {
animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}

.thankyou-content h1, .error-content h1 {
margin-bottom: 15px;
}

.thankyou-content p, .error-content p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

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

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary-color);
line-height: 1;
margin-bottom: 20px;
}

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

.policy-hero h1 {
color: white;
margin-bottom: 10px;
}

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

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

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

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

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

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

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

.policy-text ul {
margin-bottom: 15px;
padding-left: 25px;
}

.policy-text li {
margin-bottom: 8px;
font-size: 14px;
line-height: 1.7;
}

.footer {
background: var(--secondary-color);
color: white;
padding: 25px 0;
margin-top: auto;
}

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

.footer-info p {
font-size: 13px;
margin: 0;
}

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

.footer-links a {
color: white;
text-decoration: none;
font-size: 12px;
transition: color 0.3s;
}

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

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 0;
right: -100%;
width: 70%;
max-width: 300px;
height: 100vh;
background: white;
flex-direction: column;
padding: 80px 30px 30px;
box-shadow: -2px 0 10px rgba(0,0,0,0.1);
transition: right 0.3s;
align-items: flex-start;
gap: 20px;
}

.nav.active {
right: 0;
}

.science-content,
.implementation-content,
.science-layout,
.benefits-layout,
.contact-layout {
grid-template-columns: 1fr;
}

.implementation-content {
grid-template-columns: 1fr;
}

.implementation-content .implementation-image {
order: -1;
}

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

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

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

.hero-stats {
gap: 20px;
}

.stat-item {
padding: 15px 20px;
}

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

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

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

.cta-wrapper {
padding: 35px 25px;
}

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

.cta-features {
gap: 20px;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }

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

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

.error-number {
font-size: 5rem;
}
}

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

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

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

.hero-content p {
font-size: 0.95rem;
line-height: 1.6;
}

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

.btn-primary, .btn-secondary, .btn-outline, .btn-product, .btn-cta {
width: 100%;
text-align: center;
padding: 12px 25px;
font-size: 13px;
}

.hero-stats {
flex-direction: column;
gap: 12px;
}

.stat-item {
width: 100%;
padding: 15px 20px;
}

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

.page-hero {
min-height: 280px;
padding: 50px 0;
}

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

.page-hero p {
font-size: 0.95rem;
}

.cta-wrapper {
padding: 25px 15px;
}

.cta-content h2 {
font-size: 1.3rem;
line-height: 1.3;
}

.cta-content p {
font-size: 0.95rem;
line-height: 1.6;
}

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

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

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

.features, .techniques, .products-section, .recovery-methods,
.break-types, .implementation, .science-section, .science-deep,
.benefits-section, .practical-integration, .contact-main,
.map-section, .implementation-tips, .recovery-showcase {
padding: 35px 0;
}

.features-grid, .techniques-grid, .products-grid, .recovery-grid,
.types-grid, .tips-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.feature-card, .technique-card, .product-card, .recovery-card,
.type-item, .tip-item {
padding: 20px;
}

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

.technique-icon, .product-icon {
width: 45px;
height: 45px;
}

.technique-icon i {
font-size: 1.3rem;
}

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

.product-icon i {
font-size: 1.6rem;
}

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

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

.btn-primary, .btn-secondary, .btn-product {
width: 100%;
text-align: center;
}

.implementation-list li {
font-size: 13px;
padding: 8px 0;
}

.recovery-stats {
flex-direction: column;
gap: 12px;
}

.stat-box {
min-width: 100%;
padding: 12px 15px;
}

.stat-value {
font-size: 1.2rem;
}

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

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

.step-text h4 {
font-size: 1rem;
}

.step-text p {
font-size: 12px;
}

.benefit-item {
padding: 15px;
}

.benefit-item i {
font-size: 1.5rem;
}

.contact-layout {
gap: 30px;
}

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

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

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

.btn-submit {
padding: 12px 25px;
font-size: 13px;
}

.info-item {
flex-direction: column;
align-items: flex-start;
}

.info-item i {
font-size: 1.3rem;
}

.info-item h4 {
font-size: 0.95rem;
}

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

.contact-info-card {
padding: 20px;
}

.disclaimer-box {
padding: 15px;
}

.disclaimer-box h3 {
font-size: 1rem;
}

.disclaimer-box p {
font-size: 12px;
}

.policy-text h2 {
font-size: 1.3rem;
margin-top: 25px;
}

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

.policy-text p,
.policy-text li {
font-size: 13px;
}

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

.footer-links {
justify-content: center;
flex-wrap: wrap;
gap: 12px;
}

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

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

@media (max-width: 320px) {
body {
font-size: 12px;
}

.container {
padding: 0 12px;
}

.hero {
min-height: 350px;
padding: 50px 0 35px;
}

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

.hero-content p {
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 25px;
}

.hero-badge {
font-size: 10px;
padding: 6px 15px;
margin-bottom: 15px;
}

.hero-buttons {
gap: 10px;
margin-bottom: 30px;
}

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

.hero-stats {
gap: 10px;
}

.stat-item {
padding: 12px 15px;
}

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

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

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
h3 { font-size: 1.05rem; }
h4 { font-size: 0.95rem; }

.logo {
font-size: 1rem;
}

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

.page-hero {
min-height: 250px;
padding: 40px 0;
}

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

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

.hero-badge {
font-size: 10px;
padding: 6px 15px;
}

.section-intro {
font-size: 13px;
margin-bottom: 30px;
}

.features, .techniques, .products-section, .recovery-methods,
.break-types, .implementation, .science-section,
.benefits-section, .practical-integration, .contact-main,
.map-section, .implementation-tips, .recovery-showcase {
padding: 30px 0;
}

.features-grid, .techniques-grid, .products-grid, .recovery-grid,
.types-grid, .tips-grid {
gap: 15px;
}

.feature-card, .technique-card, .product-card, .recovery-card,
.type-item, .tip-item {
padding: 15px;
}

.feature-card h3,
.technique-card h3,
.product-card h3,
.recovery-card h3 {
font-size: 1rem;
margin-bottom: 8px;
}

.feature-card p,
.technique-card p,
.product-card p,
.recovery-card p,
.type-item p,
.tip-item p {
font-size: 12px;
line-height: 1.5;
}

.feature-card i {
font-size: 1.8rem;
margin-bottom: 12px;
}

.technique-icon {
width: 40px;
height: 40px;
margin-bottom: 12px;
}

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

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

.product-icon i {
font-size: 1.5rem;
}

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

.btn-product, .btn-cta {
padding: 10px 20px;
font-size: 12px;
}

.recovery-card i {
font-size: 1.8rem;
margin-bottom: 12px;
}

.type-item i {
font-size: 2rem;
}

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

.science-text p,
.implementation-text p,
.recovery-details p,
.workspace-content p,
.rhythm-content p {
font-size: 12px;
line-height: 1.6;
margin-bottom: 12px;
}

.implementation-list li {
font-size: 12px;
padding: 6px 0;
gap: 10px;
}

.implementation-list i {
font-size: 0.9rem;
}

.cta-wrapper {
padding: 20px 12px;
border-radius: 15px;
}

.cta-icon {
width: 55px;
height: 55px;
margin-bottom: 15px;
}

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

.cta-content h2 {
font-size: 1.2rem;
margin-bottom: 12px;
}

.cta-content p {
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 20px;
}

.cta-features {
gap: 10px;
}

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

.cta-feature i {
font-size: 1rem;
}

.recovery-stats {
margin: 20px 0;
gap: 10px;
}

.stat-box {
padding: 10px 12px;
}

.stat-box i {
font-size: 1.6rem;
}

.stat-value {
font-size: 1.1rem;
}

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

.step-item {
gap: 12px;
margin-bottom: 20px;
}

.step-number {
width: 35px;
height: 35px;
font-size: 1rem;
}

.step-text h4 {
font-size: 0.95rem;
margin-bottom: 6px;
}

.step-text p {
font-size: 11px;
line-height: 1.5;
}

.benefit-item {
padding: 12px;
gap: 12px;
}

.benefit-item i {
font-size: 1.4rem;
}

.benefit-item h4 {
font-size: 0.95rem;
margin-bottom: 6px;
}

.benefit-item p {
font-size: 11px;
}

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

.contact-hero h1 {
font-size: 1.4rem;
margin-bottom: 10px;
}

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

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

.contact-form {
gap: 15px;
}

.form-group label {
font-size: 11px;
margin-bottom: 5px;
}

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

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

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

.btn-submit {
padding: 11px 20px;
font-size: 12px;
}

.contact-info-card {
padding: 15px;
}

.contact-info-card h3 {
font-size: 1.1rem;
margin-bottom: 20px;
}

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

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

.info-item h4 {
font-size: 0.9rem;
margin-bottom: 4px;
}

.info-item p {
font-size: 11px;
line-height: 1.5;
}

.map-section h2 {
font-size: 1.2rem;
margin-bottom: 20px;
}

.disclaimer-box {
padding: 12px;
}

.disclaimer-box h3 {
font-size: 0.95rem;
margin-bottom: 8px;
}

.disclaimer-box p {
font-size: 11px;
line-height: 1.5;
}

.thankyou-icon,
.error-number {
font-size: 3.5rem;
margin-bottom: 15px;
}

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

.thankyou-content p,
.error-content p {
font-size: 12px;
line-height: 1.6;
margin-bottom: 12px;
}

.thankyou-actions,
.error-actions {
margin-top: 20px;
gap: 10px;
}

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

.policy-hero h1 {
font-size: 1.4rem;
margin-bottom: 8px;
}

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

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

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

.policy-text h3 {
font-size: 1rem;
margin-top: 15px;
margin-bottom: 10px;
}

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

.policy-text ul {
margin-bottom: 12px;
padding-left: 20px;
}

.policy-text li {
font-size: 12px;
line-height: 1.6;
margin-bottom: 6px;
}

.footer {
padding: 20px 0;
}

.footer-content {
gap: 12px;
}

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

.footer-links {
gap: 10px;
}

.footer-links a {
font-size: 10px;
}

.privacy-popup {
padding: 12px 0;
}

.privacy-content {
padding: 0 12px;
gap: 15px;
}

.privacy-content p {
font-size: 11px;
min-width: 200px;
}

.privacy-actions {
gap: 10px;
flex-wrap: wrap;
}

.privacy-actions a {
font-size: 11px;
}

.privacy-actions button {
padding: 7px 15px;
font-size: 11px;
}
}

.recovery-showcase {
padding: 60px 0;
background: white;
}

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

.recovery-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.recovery-details h2 {
margin-bottom: 20px;
}

.recovery-details p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.recovery-stats {
display: flex;
gap: 20px;
margin: 25px 0;
flex-wrap: wrap;
}

.stat-box {
display: flex;
align-items: center;
gap: 12px;
background: var(--light-color);
padding: 15px 20px;
border-radius: 10px;
flex: 1;
min-width: 200px;
}

.stat-box i {
font-size: 2rem;
color: var(--primary-color);
}

.stat-info {
display: flex;
flex-direction: column;
}

.stat-value {
font-size: 1.4rem;
font-weight: 700;
color: var(--secondary-color);
font-family: 'Space Grotesk', sans-serif;
}

.stat-text {
font-size: 12px;
color: var(--text-color);
}

.workspace-optimization {
padding: 60px 0;
background: var(--light-color);
}

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

.workspace-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

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

.workspace-content p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.workspace-checklist {
margin: 25px 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.checklist-item {
display: flex;
align-items: center;
gap: 12px;
padding: 10px;
background: white;
border-radius: 8px;
font-size: 14px;
}

.checklist-item i {
color: var(--accent-color);
font-size: 1.2rem;
}

.productivity-rhythm {
padding: 60px 0;
background: var(--light-color);
}

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

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

.rhythm-content p {
margin-bottom: 15px;
font-size: 14px;
line-height: 1.7;
}

.rhythm-visual img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.rhythm-tips {
display: flex;
flex-direction: column;
gap: 15px;
margin: 25px 0;
}

.tip-box {
display: flex;
gap: 15px;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: var(--shadow);
}

.tip-box i {
font-size: 2rem;
color: var(--primary-color);
flex-shrink: 0;
}

.tip-content h4 {
margin-bottom: 8px;
color: var(--primary-color);
}

.tip-content p {
font-size: 13px;
line-height: 1.6;
margin: 0;
}

@media (max-width: 768px) {
.recovery-layout,
.workspace-layout,
.rhythm-layout {
grid-template-columns: 1fr;
}

.workspace-layout .workspace-image {
order: -1;
}

.recovery-stats {
flex-direction: column;
}

.stat-box {
min-width: 100%;
}
}

.feature-icon,
.type-icon,
.stat-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}

.type-icon {
font-size: 2.2rem;
margin-bottom: 12px;
}

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

.cta-icon {
font-size: 3rem;
}

.cta-check {
font-size: 1.2rem;
color: var(--accent-color);
font-weight: 700;
}

.stat-box {
display: flex;
align-items: center;
gap: 12px;
background: var(--light-color);
padding: 15px 20px;
border-radius: 10px;
flex: 1;
min-width: 200px;
}

@media (max-width: 480px) {
.feature-icon,
.type-icon {
font-size: 2rem;
margin-bottom: 12px;
}

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

.cta-icon {
font-size: 2.5rem;
}

.cta-check {
font-size: 1rem;
}
}

@media (max-width: 320px) {
.feature-icon {
font-size: 1.8rem;
margin-bottom: 10px;
}

.type-icon {
font-size: 1.8rem;
margin-bottom: 10px;
}

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

.cta-icon {
font-size: 2.2rem;
}

.cta-check {
font-size: 0.9rem;
}
}

.recovery-icon,
.benefit-icon,
.product-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}

.recovery-card .recovery-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.product-card .product-icon {
font-size: 2.5rem;
margin: 0 auto 20px;
width: auto;
height: auto;
background: none;
border-radius: 0;
display: block;
text-align: center;
}

.benefit-item {
display: flex;
gap: 15px;
padding: 20px;
background: var(--light-color);
border-radius: 12px;
align-items: flex-start;
}

.benefit-icon {
font-size: 1.8rem;
flex-shrink: 0;
margin: 0;
}

@media (max-width: 480px) {
.recovery-icon,
.product-icon {
font-size: 2rem;
margin-bottom: 12px;
}

.benefit-icon {
font-size: 1.5rem;
}
}

@media (max-width: 320px) {
.recovery-icon {
font-size: 1.8rem;
margin-bottom: 10px;
}

.product-icon {
font-size: 1.8rem;
margin-bottom: 15px;
}

.benefit-icon {
font-size: 1.4rem;
}
}

.info-icon {
font-size: 1.5rem;
flex-shrink: 0;
margin-top: 3px;
}

@media (max-width: 480px) {
.info-icon {
font-size: 1.3rem;
}
}

@media (max-width: 320px) {
.info-icon {
font-size: 1.2rem;
}
}
