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

:root {
--primary: #2D5F5D;
--secondary: #7FA99B;
--accent: #F4A261;
--dark: #1A1A1A;
}

body {
font-family: 'Sora', sans-serif;
font-size: 15px;
line-height: 1.6;
color: #333;
background: #F8F9FA;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
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.2rem; }

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(--dark);
color: white;
padding: 15px 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;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

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

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

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--accent);
color: white;
}

.btn-accept:hover {
background: #E89451;
}

.btn-learn {
background: transparent;
color: white;
border: 1px solid white;
}

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

.header {
background: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: relative;
z-index: 1000;
}

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

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

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

.nav-link {
font-size: 14px;
color: #333;
padding: 8px 0;
position: relative;
}

.nav-link:hover, .nav-link.active {
color: var(--primary);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: var(--accent);
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--primary);
cursor: pointer;
}

.hero {
position: relative;
background: var(--dark);
color: white;
padding: 0;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
opacity: 0.95;
z-index: 1;
}

.hero::after {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(244, 162, 97, 0.3) 0%, transparent 70%);
border-radius: 50%;
z-index: 2;
animation: pulse 8s ease-in-out infinite;
}

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

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

.hero-content {
max-width: 900px;
margin: 0 auto;
text-align: left;
padding: 100px 0;
}

.hero-content h1 {
font-size: 4rem;
margin-bottom: 1.5rem;
line-height: 1.1;
font-weight: 700;
letter-spacing: -2px;
background: linear-gradient(to right, white, rgba(255,255,255,0.8));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-content p {
font-size: 1.3rem;
margin-bottom: 2.5rem;
max-width: 650px;
line-height: 1.7;
opacity: 0.95;
}

.hero-stats {
display: flex;
gap: 40px;
margin-top: 3rem;
flex-wrap: wrap;
}

.stat-item {
flex: 1;
min-width: 150px;
}

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

.stat-label {
font-size: 0.9rem;
opacity: 0.9;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
border: none;
}

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

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

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

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

section {
padding: 60px 0;
}

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

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

.section-header p {
color: #666;
font-size: 1rem;
}

.features {
background: white;
}

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

.feature-card {
padding: 30px;
background: #F8F9FA;
border-radius: 8px;
transition: all 0.3s ease;
}

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

.feature-icon {
width: 60px;
height: 60px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1rem;
}

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

.feature-card p {
font-size: 14px;
color: #666;
margin: 0;
}

.approach {
background: #F8F9FA;
}

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

.approach-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.approach-list {
list-style: none;
margin: 1.5rem 0;
}

.approach-list li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
}

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

.benefits {
background: white;
}

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

.benefit-item {
padding: 25px;
border-left: 4px solid var(--accent);
background: #F8F9FA;
border-radius: 6px;
}

.benefit-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 2rem;
font-weight: 700;
color: var(--secondary);
margin-bottom: 0.5rem;
}

.benefit-item h3 {
color: var(--primary);
font-size: 1.2rem;
margin-bottom: 0.6rem;
}

.benefit-item p {
font-size: 14px;
color: #666;
margin: 0;
}

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

.process h2 {
text-align: center;
color: white;
margin-bottom: 3rem;
}

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

.step {
flex: 1;
min-width: 200px;
text-align: center;
padding: 20px;
}

.step-icon {
width: 80px;
height: 80px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin: 0 auto 1rem;
}

.step h3 {
color: white;
margin-bottom: 0.6rem;
font-size: 1.1rem;
}

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

.step-arrow {
font-size: 1.5rem;
color: var(--accent);
}

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

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

.cta-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
}

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

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

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

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

.footer-links a {
font-size: 13px;
color: white;
opacity: 0.8;
}

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

.page-hero {
position: relative;
background: var(--dark);
color: white;
padding: 0;
overflow: hidden;
min-height: 50vh;
display: flex;
align-items: center;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
opacity: 0.95;
z-index: 1;
}

.page-hero .container {
position: relative;
z-index: 2;
padding: 80px 20px;
}

.page-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 700;
letter-spacing: -1px;
}

.page-hero p {
font-size: 1.2rem;
margin: 0;
opacity: 0.95;
}

.routine-guide {
background: white;
}

.routine-timeline {
max-width: 900px;
margin: 0 auto;
}

.timeline-block {
display: grid;
grid-template-columns: 80px 1fr;
gap: 25px;
margin-bottom: 40px;
}

.timeline-marker {
width: 80px;
height: 80px;
background: var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: white;
}

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

.timeline-content p {
margin-bottom: 1rem;
font-size: 15px;
}

.timeline-content ul {
list-style: none;
padding-left: 0;
}

.timeline-content li {
padding: 6px 0;
padding-left: 20px;
position: relative;
font-size: 14px;
}

.timeline-content li::before {
content: '•';
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}

.routine-tips {
background: #F8F9FA;
}

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

.tip-card {
background: white;
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.tip-card p {
font-size: 14px;
color: #666;
margin: 0;
}

.products-section {
background: white;
}

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

.product-card {
background: #F8F9FA;
padding: 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
}

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

.product-icon {
width: 80px;
height: 80px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin: 0 auto 1rem;
}

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

.product-card p {
font-size: 14px;
color: #666;
margin-bottom: 1.5rem;
}

.product-price {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 1.5rem;
}

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

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

.techniques-intro {
background: white;
}

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

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

.intro-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.techniques-list {
background: #F8F9FA;
}

.technique-items {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 25px;
}

.technique-item {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.technique-header {
display: flex;
align-items: center;
gap: 20px;
padding: 25px;
background: #F8F9FA;
}

.technique-icon {
width: 60px;
height: 60px;
background: var(--primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
flex-shrink: 0;
}

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

.technique-body {
padding: 25px;
}

.technique-body p {
font-size: 15px;
margin-bottom: 1rem;
}

.technique-benefits {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.benefit-tag {
display: inline-block;
padding: 6px 14px;
background: var(--secondary);
color: white;
border-radius: 20px;
font-size: 12px;
}

.energy-types {
background: white;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 40px;
color: #666;
}

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

.energy-card {
padding: 30px;
background: #F8F9FA;
border-radius: 8px;
text-align: center;
}

.energy-icon {
width: 70px;
height: 70px;
background: var(--accent);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
margin: 0 auto 1rem;
}

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

.energy-card p {
font-size: 14px;
color: #666;
margin: 0;
}

.implementation {
background: #F8F9FA;
}

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

.impl-step {
display: flex;
gap: 20px;
align-items: flex-start;
}

.impl-number {
width: 50px;
height: 50px;
background: var(--accent);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Space Grotesk', sans-serif;
font-size: 1.5rem;
font-weight: 700;
flex-shrink: 0;
}

.impl-content h3 {
color: var(--primary);
margin-bottom: 0.6rem;
font-size: 1.1rem;
}

.impl-content p {
font-size: 14px;
color: #666;
margin: 0;
}

.contact-hero {
position: relative;
background: var(--dark);
color: white;
padding: 0;
overflow: hidden;
min-height: 50vh;
display: flex;
align-items: center;
}

.contact-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
opacity: 0.95;
z-index: 1;
}

.contact-hero .container {
position: relative;
z-index: 2;
padding: 80px 20px;
}

.contact-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 700;
letter-spacing: -1px;
}

.contact-hero p {
font-size: 1.2rem;
margin: 0;
opacity: 0.95;
}

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

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

.contact-info-section h2 {
color: var(--primary);
margin-bottom: 1rem;
}

.contact-info-section > p {
margin-bottom: 2rem;
color: #666;
}

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

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

.contact-icon {
width: 50px;
height: 50px;
background: var(--accent);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
flex-shrink: 0;
}

.contact-text h3 {
color: var(--primary);
margin-bottom: 0.4rem;
font-size: 1.1rem;
}

.contact-text p {
margin: 0;
color: #666;
font-size: 15px;
}

.contact-form-section {
background: #F8F9FA;
padding: 40px;
border-radius: 12px;
}

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

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
color: #333;
font-size: 14px;
font-weight: 600;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #E0E0E0;
border-radius: 6px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-top: 20px;
}

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

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

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

.btn-submit {
width: 100%;
padding: 14px;
background: var(--primary);
color: white;
border: none;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.map-section {
background: #F8F9FA;
}

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

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

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

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

.thankyou-icon {
width: 100px;
height: 100px;
background: var(--accent);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin: 0 auto 2rem;
}

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

.thankyou-content p {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
}

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

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

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

.error-content p {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
}

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

.policy-hero {
position: relative;
background: var(--dark);
color: white;
padding: 0;
overflow: hidden;
min-height: 40vh;
display: flex;
align-items: center;
}

.policy-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
opacity: 0.95;
z-index: 1;
}

.policy-hero .container {
position: relative;
z-index: 2;
padding: 60px 20px;
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.8rem;
font-weight: 700;
}

.policy-hero p {
font-size: 1rem;
margin: 0;
opacity: 0.9;
}

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

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

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

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

.policy-text p {
margin-bottom: 1rem;
font-size: 15px;
line-height: 1.7;
color: #555;
}

.policy-text ul, .policy-text ol {
margin-bottom: 1rem;
padding-left: 30px;
}

.policy-text li {
margin-bottom: 0.5rem;
font-size: 15px;
line-height: 1.7;
color: #555;
}

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

.hero {
min-height: 70vh;
}

.hero::after {
width: 400px;
height: 400px;
top: -30%;
right: -20%;
}

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

.hero-content h1 {
font-size: 2.2rem;
letter-spacing: -1px;
}

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

.hero-stats {
gap: 25px;
}

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

.page-hero .container,
.contact-hero .container {
padding: 60px 20px;
}

.page-hero h1,
.contact-hero h1 {
font-size: 2.2rem;
}

.page-hero p,
.contact-hero p {
font-size: 1rem;
}

.policy-hero .container {
padding: 50px 20px;
}

.policy-hero h1 {
font-size: 2rem;
}
  
.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero {
padding: 50px 0;
}

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

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

.approach-wrapper,
.intro-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 30px;
}

.approach-image,
.intro-image {
order: -1;
}

.process-steps {
flex-direction: column;
}

.step-arrow {
transform: rotate(90deg);
}

.timeline-block {
grid-template-columns: 60px 1fr;
gap: 15px;
}

.timeline-marker {
width: 60px;
height: 60px;
font-size: 1.4rem;
}

.features-grid,
.benefits-grid,
.tips-grid,
.products-grid,
.energy-grid {
grid-template-columns: 1fr;
}

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

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

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

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

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

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }

.hero {
min-height: 60vh;
}

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

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

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

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

.page-hero h1,
.contact-hero h1 {
font-size: 1.8rem;
}

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

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

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

section {
padding: 40px 0;
}

.contact-form-section {
padding: 25px;
}

.thankyou-icon {
width: 80px;
height: 80px;
font-size: 2.5rem;
}

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


.testimonials {
background: #F8F9FA;
}

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

.testimonial-card {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

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

.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 1.5rem;
color: var(--accent);
font-size: 1rem;
}

.testimonial-text {
font-size: 15px;
line-height: 1.7;
color: #555;
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author {
border-top: 2px solid #E0E0E0;
padding-top: 1rem;
}

.author-name {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
color: var(--primary);
margin-bottom: 0.3rem;
}

.author-role {
font-size: 13px;
color: #888;
}

.science {
background: white;
}

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

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

.science-text > p {
margin-bottom: 2rem;
color: #666;
line-height: 1.7;
}

.science-points {
display: flex;
flex-direction: column;
gap: 25px;
}

.science-point {
display: flex;
gap: 20px;
align-items: flex-start;
}

.point-icon {
width: 50px;
height: 50px;
background: var(--secondary);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
flex-shrink: 0;
}

.point-content h3 {
color: var(--primary);
margin-bottom: 0.5rem;
font-size: 1.1rem;
}

.point-content p {
font-size: 14px;
color: #666;
margin: 0;
}

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

.energy-graph {
background: #F8F9FA;
padding: 40px;
border-radius: 12px;
width: 100%;
max-width: 450px;
box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.graph-title {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
color: var(--primary);
margin-bottom: 2rem;
text-align: center;
font-size: 1.1rem;
}

.graph-lines {
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 2rem;
}

.graph-line {
position: relative;
height: 60px;
background: white;
border-radius: 8px;
overflow: hidden;
}

.graph-line::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

.graph-line.unstable::before {
background: linear-gradient(90deg, 
var(--accent) 0%, 
var(--accent) 20%, 
var(--secondary) 30%, 
var(--secondary) 35%, 
#E89451 50%, 
var(--secondary) 65%, 
var(--accent) 80%, 
var(--secondary) 100%);
clip-path: polygon(0 50%, 15% 20%, 30% 60%, 45% 30%, 60% 70%, 75% 40%, 90% 65%, 100% 50%);
}

.graph-line.stable::before {
background: var(--primary);
clip-path: polygon(0 45%, 20% 42%, 40% 44%, 60% 43%, 80% 45%, 100% 44%);
}

.line-label {
position: absolute;
top: 50%;
left: 15px;
transform: translateY(-50%);
font-size: 13px;
font-weight: 600;
color: var(--dark);
z-index: 1;
}

.graph-axis {
display: flex;
justify-content: space-between;
font-size: 13px;
color: #888;
padding: 0 10px;
}

.faq {
background: #F8F9FA;
}

.faq-list {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 15px;
}

.faq-item {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
padding: 25px 30px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: all 0.3s ease;
}

.faq-question:hover {
background: #F8F9FA;
}

.faq-question h3 {
margin: 0;
color: var(--primary);
font-size: 1.1rem;
font-weight: 600;
}

.faq-question i {
color: var(--secondary);
transition: transform 0.3s ease;
font-size: 1rem;
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

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

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

.faq-answer p {
padding: 0 30px 25px;
margin: 0;
color: #666;
line-height: 1.7;
font-size: 15px;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: white;
padding: 80px 0;
}

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

.cta-badge {
display: inline-block;
padding: 8px 20px;
background: var(--accent);
color: white;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.final-cta-content h2 {
color: white;
font-size: 2.5rem;
margin-bottom: 1rem;
}

.final-cta-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.95;
line-height: 1.7;
}

.cta-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.final-cta-features {
display: flex;
flex-direction: column;
gap: 20px;
}

.cta-feature {
display: flex;
align-items: center;
gap: 15px;
font-size: 1rem;
}

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

@media (max-width: 768px) {
.testimonials-grid {
grid-template-columns: 1fr;
}

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

.science-visual {
order: -1;
}

.energy-graph {
padding: 30px;
}

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

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

@media (max-width: 480px) {
.testimonial-card {
padding: 25px;
}

.energy-graph {
padding: 20px;
}

.graph-line {
height: 50px;
}

.faq-question {
padding: 20px;
}

.faq-question h3 {
font-size: 1rem;
}

.faq-answer p {
padding: 0 20px 20px;
font-size: 14px;
}

.final-cta {
padding: 60px 0;
}

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

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

.cta-buttons {
flex-direction: column;
}

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


.routine-comparison {
background: white;
}

.comparison-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
max-width: 1000px;
margin: 0 auto;
}

.comparison-card {
padding: 35px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-card.before {
background: #FFF5F5;
border: 2px solid #FFA5A5;
}

.comparison-card.after {
background: #F0F9F4;
border: 2px solid #7FA99B;
}

.comparison-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 2px solid rgba(0,0,0,0.1);
}

.comparison-header i {
font-size: 2rem;
}

.comparison-card.before .comparison-header i {
color: #E74C3C;
}

.comparison-card.after .comparison-header i {
color: #27AE60;
}

.comparison-header h3 {
margin: 0;
color: var(--primary);
font-size: 1.3rem;
}

.comparison-list {
list-style: none;
padding: 0;
margin: 0;
}

.comparison-list li {
padding: 12px 0;
padding-left: 30px;
position: relative;
font-size: 15px;
line-height: 1.6;
color: #555;
}

.comparison-list li::before {
content: '•';
position: absolute;
left: 10px;
font-weight: bold;
font-size: 1.2rem;
}

.comparison-card.before .comparison-list li::before {
color: #E74C3C;
}

.comparison-card.after .comparison-list li::before {
color: #27AE60;
}

.energy-mistakes {
background: #F8F9FA;
}

.mistakes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
margin-top: 2rem;
}

.mistake-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
border-left: 4px solid #E74C3C;
transition: all 0.3s ease;
}

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

.mistake-icon {
width: 60px;
height: 60px;
background: #FFF5F5;
color: #E74C3C;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.mistake-card h3 {
color: var(--primary);
margin-bottom: 0.8rem;
font-size: 1.1rem;
}

.mistake-card p {
font-size: 14px;
color: #666;
margin: 0;
line-height: 1.7;
}

.technique-benefits-deep {
background: white;
}

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

.benefit-deep-card {
padding: 30px;
background: #F8F9FA;
border-radius: 12px;
border-top: 4px solid var(--accent);
}

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

.benefit-deep-card h3 {
color: var(--primary);
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.benefit-deep-card p {
font-size: 14px;
color: #666;
margin: 0;
line-height: 1.7;
}

.daily-practices {
background: #F8F9FA;
}

.practices-timeline {
max-width: 900px;
margin: 2rem auto 0;
display: flex;
flex-direction: column;
gap: 30px;
}

.practice-block {
display: grid;
grid-template-columns: 150px 1fr;
gap: 30px;
align-items: start;
}

.practice-time {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--accent);
padding: 20px;
background: white;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.practice-content {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.practice-content h3 {
color: var(--primary);
margin-bottom: 1rem;
font-size: 1.2rem;
}

.practice-content ul {
list-style: none;
padding: 0;
margin: 0;
}

.practice-content li {
padding: 10px 0;
padding-left: 25px;
position: relative;
font-size: 14px;
color: #666;
}

.practice-content li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}

@media (max-width: 768px) {
.comparison-grid {
grid-template-columns: 1fr;
gap: 30px;
}

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

.benefits-deep-grid {
grid-template-columns: 1fr;
}

.practice-block {
grid-template-columns: 1fr;
gap: 15px;
}

.practice-time {
font-size: 1.2rem;
padding: 15px;
}
}

@media (max-width: 480px) {
.comparison-card {
padding: 25px;
}

.comparison-header {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.comparison-header i {
font-size: 1.5rem;
}

.comparison-header h3 {
font-size: 1.1rem;
}

.comparison-list li {
font-size: 14px;
padding: 10px 0;
padding-left: 25px;
}

.mistake-card {
padding: 25px;
}

.practice-content {
padding: 20px;
}
}


.routine-visual {
text-align: center;
margin: 3rem auto;
max-width: 600px;
}

.routine-visual img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
display: block;
margin: 0 auto;
}

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

.science-visual img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
display: block;
margin: 0 auto;
}


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

.container {
padding: 0 12px;
}

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

.logo {
font-size: 1.1rem;
}

.hero {
min-height: 55vh;
}

.hero-content {
padding: 30px 0;
}

.hero-content h1 {
font-size: 1.6rem;
letter-spacing: -0.5px;
}

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

.hero-stats {
gap: 15px;
margin-top: 2rem;
}

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

.stat-label {
font-size: 0.8rem;
}

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

section {
padding: 35px 0;
}

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

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

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

.feature-icon,
.product-icon {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.feature-card h3,
.testimonial-card h3,
.product-card h3 {
font-size: 1rem;
}

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

.approach-list li,
.timeline-content li,
.practice-content li {
font-size: 13px;
padding-left: 20px;
}

.benefit-number,
.benefit-deep-number {
font-size: 1.8rem;
}

.benefit-item h3,
.benefit-deep-card h3 {
font-size: 1rem;
}

.benefit-item p,
.benefit-deep-card p {
font-size: 13px;
}

.step-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
}

.step h3 {
font-size: 1rem;
}

.step p {
font-size: 13px;
}

.testimonial-rating {
font-size: 0.9rem;
margin-bottom: 1rem;
}

.testimonial-text {
font-size: 13px;
margin-bottom: 1rem;
}

.author-name {
font-size: 0.9rem;
}

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

.science-wrapper,
.intro-wrapper,
.approach-wrapper {
gap: 25px;
}

.point-icon {
width: 40px;
height: 40px;
font-size: 1.1rem;
}

.point-content h3 {
font-size: 1rem;
}

.point-content p {
font-size: 13px;
}

.faq-question {
padding: 18px 15px;
}

.faq-question h3 {
font-size: 0.95rem;
padding-right: 10px;
}

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

.faq-answer p {
padding: 0 15px 18px;
font-size: 13px;
}

.final-cta {
padding: 50px 0;
}

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

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

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

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

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

.timeline-marker {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.timeline-content h3 {
font-size: 1rem;
}

.timeline-content p {
font-size: 13px;
}

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

.comparison-card {
padding: 20px;
}

.comparison-header i {
font-size: 1.3rem;
}

.comparison-header h3 {
font-size: 1rem;
}

.comparison-list li {
font-size: 13px;
padding: 10px 0 10px 25px;
}

.mistake-icon,
.energy-icon {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.mistake-card h3,
.energy-card h3 {
font-size: 1rem;
}

.mistake-card p,
.energy-card p {
font-size: 13px;
}

.practice-time {
font-size: 1.2rem;
padding: 15px 10px;
}

.practice-content {
padding: 20px 15px;
}

.practice-content h3 {
font-size: 1rem;
}

.practice-content li {
font-size: 13px;
padding: 8px 0 8px 20px;
}

.technique-header {
padding: 20px 15px;
gap: 15px;
}

.technique-icon {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.technique-header h3 {
font-size: 1rem;
}

.technique-body {
padding: 20px 15px;
}

.technique-body p {
font-size: 13px;
}

.benefit-tag {
font-size: 11px;
padding: 5px 12px;
}

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

.impl-content h3 {
font-size: 1rem;
}

.impl-content p {
font-size: 13px;
}

.contact-icon {
width: 40px;
height: 40px;
font-size: 1.1rem;
}

.contact-text h3 {
font-size: 1rem;
}

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

.contact-form-section {
padding: 25px 15px;
}

.contact-form h2 {
font-size: 1.2rem;
}

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

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

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

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

.thankyou-icon {
width: 70px;
height: 70px;
font-size: 2.2rem;
margin-bottom: 1.5rem;
}

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

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

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

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

.policy-hero p {
font-size: 0.85rem;
}

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

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

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

.footer {
padding: 20px 0;
}

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

.footer-links {
gap: 15px;
}

.page-hero .container,
.contact-hero .container {
padding: 50px 12px;
}

.page-hero h1,
.contact-hero h1 {
font-size: 1.6rem;
}

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

.policy-hero .container {
padding: 40px 12px;
}
}


.approach-image {
text-align: center;
}

.approach-image img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
display: block;
margin: 0 auto;
}

.intro-image {
text-align: center;
}

.intro-image img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
display: block;
margin: 0 auto;
}
