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

:root {
--primary-color: #6366F1;
--secondary-color: #8B5CF6;
--dark-color: #1E293B;
--light-color: #F8FAFC;
--text-color: #334155;
--text-light: #64748B;
--border-color: #E2E8F0;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Sora', 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(--dark-color);
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: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--secondary-color);
font-size: 14px;
}

.privacy-actions button {
background: var(--primary-color);
color: white;
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-family: 'Space Grotesk', sans-serif;
}

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

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

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

.logo {
font-family: 'Sora', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: white;
}

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

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

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

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

.menu-toggle span {
width: 25px;
height: 2px;
background: white;
margin: 3px 0;
transition: 0.3s;
}

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

.nav a {
color: white;
font-size: 14px;
font-weight: 500;
padding: 8px 12px;
border-radius: 5px;
transition: all 0.3s ease;
}

.nav a:hover {
background: rgba(255,255,255,0.2);
}

.hero {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #24243e 100%);
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 150%;
background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
border-radius: 50%;
animation: float 20s ease-in-out infinite;
}

.hero::after {
content: '';
position: absolute;
bottom: -30%;
left: -10%;
width: 60%;
height: 100%;
background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
border-radius: 50%;
animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 60px;
align-items: center;
width: 100%;
}

.hero-text {
color: white;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 50px;
font-size: 13px;
font-weight: 500;
margin-bottom: 25px;
border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
color: var(--secondary-color);
font-size: 12px;
}

.hero h1 {
font-size: 3.5rem;
color: white;
margin-bottom: 25px;
line-height: 1.1;
font-weight: 700;
letter-spacing: -1px;
}

.hero h1 .highlight {
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: inline-block;
}

.hero p {
font-size: 1.15rem;
color: rgba(255,255,255,0.85);
margin-bottom: 35px;
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}

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

.hero-shape {
position: relative;
width: 100%;
max-width: 400px;
aspect-ratio: 1;
background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
backdrop-filter: blur(20px);
border: 1px solid rgba(255,255,255,0.1);
animation: morph 8s ease-in-out infinite;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes morph {
0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.hero-stats {
position: absolute;
bottom: -40px;
left: 50%;
transform: translateX(-50%);
width: 90%;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 20px;
display: flex;
justify-content: space-around;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.stat-number {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 5px;
}

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

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

.btn-primary:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(99,102,241,0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

.about-text h2 {
margin-bottom: 20px;
color: var(--dark-color);
}

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

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

.products h2 {
margin-bottom: 40px;
color: var(--dark-color);
}

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

.product-card {
background: var(--light-color);
padding: 30px 20px;
border-radius: 12px;
transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

.benefit-item {
padding: 25px 20px;
background: white;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
}

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

.benefit-item i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 15px;
display: block;
}

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

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

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

.cta-content h2 {
color: white;
margin-bottom: 15px;
}

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

.page-hero {
background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
color: var(--dark-color);
margin-bottom: 15px;
}

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

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

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

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

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

.content-text h2 {
margin-bottom: 20px;
color: var(--dark-color);
}

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

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

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

.techniques h2 {
text-align: center;
margin-bottom: 40px;
color: var(--dark-color);
}

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

.technique-card {
background: white;
padding: 25px 20px;
border-radius: 10px;
transition: all 0.3s ease;
}

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

.technique-number {
font-size: 2rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 15px;
}

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

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

.action-steps {
padding: 60px 0;
background: white;
text-align: center;
}

.action-steps h2 {
margin-bottom: 40px;
color: var(--dark-color);
}

.steps-list {
max-width: 700px;
margin: 0 auto 40px;
text-align: left;
}

.step-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
padding: 20px;
background: var(--light-color);
border-radius: 10px;
}

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

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

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

.rest-types {
padding: 60px 0;
background: white;
}

.rest-types h2 {
text-align: center;
margin-bottom: 40px;
color: var(--dark-color);
}

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

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

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

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

.rest-card h3 {
margin-bottom: 10px;
}

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

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

.habit-building h2 {
text-align: center;
margin-bottom: 40px;
color: var(--dark-color);
}

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

.habit-step {
display: flex;
gap: 20px;
margin-bottom: 30px;
padding: 25px;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.habit-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

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

.habit-text h3 {
margin-bottom: 10px;
}

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

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

.obstacles h2 {
text-align: center;
margin-bottom: 40px;
color: var(--dark-color);
}

.obstacles-list {
max-width: 800px;
margin: 0 auto;
display: grid;
gap: 20px;
}

.obstacle-item {
padding: 20px;
background: var(--light-color);
border-left: 4px solid var(--secondary-color);
border-radius: 8px;
}

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

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

.contact-hero {
background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
padding: 50px 0;
text-align: center;
}

.contact-hero h1 {
color: var(--dark-color);
margin-bottom: 15px;
}

.contact-hero p {
font-size: 1.05rem;
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}

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

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

.contact-form-wrapper h2 {
margin-bottom: 25px;
color: var(--dark-color);
}

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

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

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

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

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

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

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

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

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

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

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

.contact-info-card h3 {
margin-bottom: 20px;
color: var(--dark-color);
}

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

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

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

.info-item strong {
display: block;
margin-bottom: 5px;
color: var(--dark-color);
}

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

.contact-hours {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 20px;
border-radius: 12px;
color: white;
}

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

.contact-hours p {
font-size: 14px;
margin-bottom: 5px;
}

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

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

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

.fullheight-main {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
}

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

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

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

.thankyou-icon i {
font-size: 3rem;
color: white;
}

.thankyou-content h1 {
color: var(--dark-color);
margin-bottom: 20px;
}

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

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

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

.error-content h1 {
color: var(--dark-color);
margin-bottom: 20px;
}

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

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

.policy-hero {
background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
padding: 40px 0;
text-align: center;
}

.policy-hero h1 {
color: var(--dark-color);
margin-bottom: 10px;
}

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

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

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

.policy-text h2 {
margin-top: 40px;
margin-bottom: 20px;
color: var(--dark-color);
}

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

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

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

.policy-text strong {
color: var(--dark-color);
}

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

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

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

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

.footer-links a {
font-size: 13px;
color: rgba(255,255,255,0.8);
transition: color 0.3s ease;
}

.footer-links a:hover {
color: white;
}

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

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
padding: 20px;
gap: 10px;
display: none;
z-index: 999;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav.active {
display: flex;
}

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

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

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

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

.hero-stats {
position: static;
transform: none;
width: 100%;
margin-top: 30px;
flex-direction: column;
gap: 15px;
}

h1 {
font-size: 1.8rem;
}

h2 {
font-size: 1.5rem;
}

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

.contact-layout {
grid-template-columns: 1fr;
}

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

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

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

.privacy-actions {
justify-content: center;
}
}

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

.hero {
padding: 40px 0;
}

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

.hero-visual {
display: none;
}

.features,
.about,
.products,
.benefits,
.cta,
.content-section,
.techniques,
.action-steps,
.rest-types,
.habit-building,
.obstacles,
.contact-main,
.map-section,
.policy-content {
padding: 40px 0;
}

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

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

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

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

.logo {
font-size: 1.1rem;
}

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

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

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

h2 {
font-size: 1.4rem;
}

h3 {
font-size: 1.2rem;
}

.features-grid,
.products-grid,
.benefits-grid,
.techniques-grid,
.rest-grid,
.signs-grid,
.science-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}

.feature-card,
.product-card,
.benefit-item,
.technique-card,
.rest-card,
.sign-category,
.science-item,
.testimonial-card {
padding: 20px 15px;
}

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

.timeline-marker {
width: 35px;
height: 35px;
font-size: 1rem;
}

.process-timeline::before {
left: 17px;
}

.timeline-item {
gap: 15px;
}

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

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

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

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

.btn-primary,
.btn-secondary {
padding: 10px 18px;
font-size: 13px;
width: 100%;
text-align: center;
}

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

.footer-links {
flex-direction: column;
align-items: center;
gap: 10px;
}

.section-intro {
font-size: 0.95rem;
}

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

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

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

.subscribe-form input {
padding: 12px 15px;
font-size: 13px;
}

.subscribe-form button {
padding: 12px 20px;
font-size: 13px;
}
}

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

.logo {
font-size: 1rem;
}

.nav a {
font-size: 12px;
padding: 5px 8px;
}

.hero {
padding: 30px 0;
}

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

.hero p {
font-size: 0.9rem;
line-height: 1.5;
}

.hero-badge {
font-size: 11px;
padding: 5px 12px;
}

h2 {
font-size: 1.3rem;
}

h3 {
font-size: 1.1rem;
}

h4 {
font-size: 1rem;
}

.features,
.about,
.products,
.benefits,
.process,
.testimonials,
.faq,
.newsletter,
.warning-signs,
.rest-science {
padding: 30px 0;
}

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

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

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

.science-icon {
width: 70px;
height: 70px;
}

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

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

.benefit-item {
flex-direction: column;
text-align: center;
align-items: center;
}

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

.timeline-marker {
width: 30px;
height: 30px;
font-size: 0.9rem;
}

.process-timeline::before {
left: 15px;
}

.timeline-item {
gap: 12px;
margin-bottom: 30px;
}

.timeline-content {
padding: 15px 12px;
}

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

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

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

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

.testimonial-stars i {
font-size: 14px;
}

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

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

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

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

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

.hero-stats {
padding: 15px;
gap: 10px;
}

.newsletter-content i {
font-size: 2.5rem;
}

.newsletter-content h2 {
font-size: 1.3rem;
}

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

.subscribe-form input {
padding: 10px 12px;
font-size: 12px;
}

.subscribe-form button {
padding: 10px 15px;
font-size: 12px;
}

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

.footer {
padding: 20px 0;
}

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

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

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

.sign-category li,
.technique-card p,
.step-content p,
.science-item p {
font-size: 13px;
}

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

.habit-icon {
width: 50px;
height: 50px;
}

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

.habit-step {
padding: 20px 15px;
gap: 15px;
}

.obstacle-item {
padding: 15px;
}

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

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

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

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

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

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

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

.contact-hours {
padding: 15px;
}

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

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

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

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

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

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

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

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

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

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

.process {
padding: 80px 0;
background: white;
}

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

.process-header h2 {
margin-bottom: 15px;
color: var(--dark-color);
}

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

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

.process-timeline::before {
content: '';
position: absolute;
left: 30px;
top: 30px;
bottom: 30px;
width: 2px;
background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
display: flex;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

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

.timeline-marker {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
color: white;
flex-shrink: 0;
box-shadow: 0 5px 20px rgba(99,102,241,0.3);
position: relative;
z-index: 2;
}

.timeline-content {
flex: 1;
background: var(--light-color);
padding: 25px;
border-radius: 12px;
transition: all 0.3s ease;
}

.timeline-content:hover {
transform: translateX(10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-content h3 {
margin-bottom: 10px;
color: var(--dark-color);
}

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

.testimonials {
padding: 80px 0;
background: var(--light-color);
}

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

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

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

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

.testimonial-stars {
display: flex;
gap: 5px;
margin-bottom: 20px;
}

.testimonial-stars i {
color: #FFC107;
font-size: 16px;
}

.testimonial-card p {
font-size: 15px;
color: var(--text-color);
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
color: var(--dark-color);
font-size: 15px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 13px;
}

.faq {
padding: 80px 0;
background: white;
}

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

.faq-grid {
max-width: 900px;
margin: 0 auto;
display: grid;
gap: 25px;
}

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

.faq-item:hover {
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.faq-question i {
font-size: 1.5rem;
color: var(--secondary-color);
flex-shrink: 0;
}

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

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

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

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

.newsletter-content {
color: white;
}

.newsletter-content i {
font-size: 3rem;
margin-bottom: 20px;
opacity: 0.9;
}

.newsletter-content h2 {
color: white;
margin-bottom: 15px;
}

.newsletter-content p {
font-size: 1.05rem;
opacity: 0.95;
line-height: 1.7;
}

.subscribe-form {
display: flex;
gap: 10px;
margin-bottom: 10px;
}

.subscribe-form input {
flex: 1;
padding: 14px 20px;
border: none;
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
}

.subscribe-form input:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.subscribe-form button {
padding: 14px 30px;
white-space: nowrap;
}

.newsletter-note {
font-size: 13px;
color: rgba(255,255,255,0.8);
margin: 0;
}

@media (max-width: 768px) {
.process-timeline::before {
left: 20px;
}

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

.timeline-item {
gap: 20px;
}

.newsletter-wrapper {
grid-template-columns: 1fr;
gap: 30px;
text-align: center;
}

.newsletter-content i {
display: block;
}

.subscribe-form {
flex-direction: column;
}
}

@media (max-width: 480px) {
.process,
.testimonials,
.faq,
.newsletter {
padding: 50px 0;
}

.faq-item p {
padding-left: 0;
}
}

.warning-signs {
padding: 80px 0;
background: var(--light-color);
}

.warning-signs h2 {
text-align: center;
margin-bottom: 15px;
color: var(--dark-color);
}

.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 50px;
color: var(--text-light);
font-size: 1.05rem;
line-height: 1.7;
}

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

.sign-category {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}

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

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

.category-icon i {
font-size: 1.8rem;
color: white;
}

.sign-category h3 {
text-align: center;
margin-bottom: 20px;
color: var(--dark-color);
}

.sign-category ul {
list-style: none;
padding: 0;
margin: 0;
}

.sign-category li {
padding: 10px 0 10px 30px;
position: relative;
color: var(--text-light);
font-size: 14px;
line-height: 1.6;
}

.sign-category li::before {
content: '\f00c';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
left: 0;
color: var(--secondary-color);
font-size: 12px;
}

.rest-science {
padding: 80px 0;
background: white;
}

.rest-science h2 {
text-align: center;
margin-bottom: 15px;
color: var(--dark-color);
}

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

.science-item {
background: var(--light-color);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

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

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

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

.science-item h3 {
margin-bottom: 15px;
color: var(--dark-color);
}

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

@media (max-width: 480px) {
.warning-signs,
.rest-science {
padding: 50px 0;
}
}
