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

:root {
--primary-color: #2D3561;
--secondary-color: #5B7C99;
--accent-color: #E8B4B8;
--dark-bg: #1A1F3A;
--light-bg: #F5F7FA;
--text-dark: #1A1A1A;
--text-light: #6B7280;
--white: #FFFFFF;
--border-color: #E5E7EB;
--success-color: #10B981;
--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

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-bg);
color: var(--white);
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

.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-color);
}

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

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

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

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

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

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

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

.hero-shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
width: 500px;
height: 500px;
background: var(--primary-color);
top: -100px;
right: -100px;
animation-delay: 0s;
}

.hero-shape-2 {
width: 400px;
height: 400px;
background: var(--secondary-color);
bottom: -150px;
left: -100px;
animation-delay: 5s;
}

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

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

.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
text-align: center;
}

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

.hero-title {
font-size: 4.5rem;
margin-bottom: 30px;
line-height: 1.1;
display: flex;
flex-direction: column;
gap: 10px;
}

.hero-title-line {
font-weight: 400;
opacity: 0.9;
}

.hero-title-highlight {
font-weight: 700;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-size: 5rem;
}

.hero-description {
font-size: 1.2rem;
line-height: 1.8;
opacity: 0.85;
margin-bottom: 40px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-actions {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
margin-bottom: 60px;
flex-wrap: wrap;
}

.btn-hero {
padding: 16px 40px;
font-size: 16px;
box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

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

.btn-hero-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--white);
transform: translateX(5px);
}

.hero-stats {
display: flex;
gap: 50px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}

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

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

.hero-stat-label {
font-size: 13px;
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 1px;
}

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

.btn-primary:hover {
background: #FF5085;
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

.feature-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

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

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

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

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

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

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

.content-image img {
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.stats-section {
padding: 80px 0;
background: var(--dark-bg);
color: var(--white);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
}

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

.stat-number {
font-size: 3rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 10px;
}

.stat-label {
font-size: 14px;
opacity: 0.8;
}

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

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

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

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

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

.approach-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

.cta-section {
padding: 80px 0;
background: var(--light-bg);
position: relative;
overflow: hidden;
}

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

.cta-visual {
position: relative;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
}

.cta-circle {
position: absolute;
width: 120px;
height: 120px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-lg);
transition: all 0.3s ease;
}

.cta-circle-1 {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
top: 0;
left: 50%;
transform: translateX(-50%);
animation: pulse 3s infinite;
}

.cta-circle-2 {
background: linear-gradient(135deg, var(--accent-color), #FF8FB3);
bottom: 50px;
left: 0;
animation: pulse 3s infinite 1s;
}

.cta-circle-3 {
background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
bottom: 50px;
right: 0;
animation: pulse 3s infinite 2s;
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
box-shadow: var(--shadow-lg);
}
50% {
transform: scale(1.1);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
}

.cta-connecting-line {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
border: 2px dashed var(--border-color);
border-radius: 50%;
opacity: 0.3;
}

.cta-text {
text-align: left;
}

.cta-text h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--text-dark);
}

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

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

.benefits-wrapper {
max-width: 1000px;
margin: 0 auto;
}

.benefits-content h2 {
font-size: 2.5rem;
margin-bottom: 50px;
text-align: center;
color: var(--text-dark);
}

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

.benefit-item {
padding: 30px;
background: var(--light-bg);
border-radius: 12px;
transition: all 0.3s ease;
}

.benefit-item:hover {
background: var(--white);
box-shadow: var(--shadow-lg);
transform: translateX(10px);
}

.benefit-text h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--text-dark);
}

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

.sleep-myths {
padding: 80px 0;
background: var(--dark-bg);
color: var(--white);
}

.sleep-myths .section-header h2,
.sleep-myths .section-header p {
color: var(--white);
}

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

.myth-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
}

.myth-card:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
}

.myth-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--white);
}

.myth-card p {
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
margin: 0;
line-height: 1.7;
}

.energy-timeline {
padding: 80px 0;
background: var(--light-bg);
}

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

.energy-period {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
transition: all 0.3s ease;
}

.energy-period:hover {
box-shadow: var(--shadow-lg);
transform: translateX(5px);
}

.energy-time {
font-weight: 700;
font-size: 1.1rem;
color: var(--primary-color);
margin-bottom: 10px;
font-family: 'Space Grotesk', sans-serif;
}

.energy-bar {
height: 12px;
border-radius: 6px;
margin-bottom: 10px;
transition: all 0.3s ease;
}

.energy-high {
width: 90%;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.energy-medium {
width: 60%;
background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.energy-low {
width: 40%;
background: linear-gradient(90deg, var(--accent-color), #FF8FB3);
}

.energy-label {
font-weight: 600;
font-size: 1rem;
color: var(--text-dark);
margin-bottom: 8px;
}

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

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

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

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

.factor-number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 20px;
}

.factor-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

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

.hygiene-card {
background: var(--light-bg);
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
}

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

.hygiene-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

.relaxation-techniques {
padding: 80px 0;
background: var(--white);
}

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

.technique-item {
display: flex;
gap: 25px;
align-items: flex-start;
padding: 30px;
background: var(--light-bg);
border-radius: 12px;
transition: all 0.3s ease;
}

.technique-item:hover {
background: var(--white);
box-shadow: var(--shadow-lg);
transform: translateX(10px);
}

.technique-number {
width: 60px;
height: 60px;
flex-shrink: 0;
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
}

.technique-content h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--text-dark);
}

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

.sleep-quality-factors {
padding: 80px 0;
background: var(--white);
}

.sleep-hygiene {
padding: 80px 0;
background: var(--light-bg);
}

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

.footer-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 30px;
gap: 30px;
flex-wrap: wrap;
}

.footer-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 15px;
}

.footer-info p {
font-size: 13px;
opacity: 0.8;
margin-bottom: 8px;
}

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

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

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

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
font-size: 13px;
opacity: 0.7;
margin: 0;
}

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

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

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

.info-cards {
padding: 80px 0;
}

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

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

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

.info-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

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

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

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

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

.product-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
font-family: 'Space Grotesk', sans-serif;
}

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

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

.timeline::before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: var(--primary-color);
}

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

.timeline-icon {
width: 60px;
height: 60px;
background: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
z-index: 1;
}

.timeline-content {
background: var(--white);
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
flex: 1;
}

.timeline-content h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--text-dark);
}

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

.tips-section {
padding: 80px 0;
}

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

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

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

.tip-card h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--text-dark);
}

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

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

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

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

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

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

.contact-info h2 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--text-dark);
}

.contact-info > p {
color: var(--text-light);
margin-bottom: 40px;
line-height: 1.8;
}

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

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

.contact-item h3 {
font-size: 1.1rem;
margin-bottom: 8px;
color: var(--text-dark);
}

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

.contact-form-wrapper {
background: var(--light-bg);
padding: 40px;
border-radius: 12px;
}

.contact-form h2 {
font-size: 1.8rem;
margin-bottom: 30px;
color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border-color);
border-radius: 8px;
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-color);
}

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

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 13px;
color: var(--text-light);
}

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

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

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

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

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

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

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

.thankyou-content h1,
.error-content h1 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--text-dark);
}

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

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

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary-color);
opacity: 0.3;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 20px;
}

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

.policy-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

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

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

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

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

.policy-text h3 {
font-size: 1.3rem;
margin-top: 30px;
margin-bottom: 15px;
color: var(--text-dark);
}

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

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

@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.2rem;
}
body {
font-size: 14px;
}
.container {
padding: 0 15px;
}
.hero {
padding: 60px 0 50px;
min-height: 70vh;
}
.hero-title {
font-size: 2.5rem;
}
.hero-title-highlight {
font-size: 3rem;
}
.hero-description {
font-size: 1rem;
}
.hero-stats {
gap: 30px;
}
.hero-stat-number {
font-size: 2rem;
}
.hero-actions {
flex-direction: column;
width: 100%;
}
.btn-hero,
.btn-hero-secondary {
width: 100%;
justify-content: center;
}
.hero-shape-1 {
width: 300px;
height: 300px;
}
.hero-shape-2 {
width: 250px;
height: 250px;
}
.hero-shape-3 {
width: 200px;
height: 200px;
}
.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 20px;
transition: left 0.3s ease;
box-shadow: var(--shadow-lg);
}
.nav.active {
left: 0;
}
.menu-toggle {
display: block;
}
.content-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.content-grid.reverse {
direction: ltr;
}
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}
.cta-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}
.cta-visual {
height: 300px;
}
.cta-text {
text-align: center;
}
.benefits-list {
gap: 20px;
}
.benefit-item {
text-align: left;
}
.myths-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.energy-bar {
width: 100% !important;
}
.factors-grid,
.hygiene-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.technique-item {
flex-direction: column;
text-align: center;
}
.technique-number {
margin: 0 auto;
}
.features,
.content-section,
.stats-section,
.approach-section,
.cta-section,
.info-cards,
.products-section,
.timeline-section,
.tips-section,
.contact-section,
.map-section,
.policy-content {
padding: 50px 0;
}
.features-grid,
.approach-grid,
.cards-grid,
.products-grid,
.tips-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.timeline::before {
left: 20px;
}
.timeline-icon {
width: 40px;
height: 40px;
}
.timeline-icon i {
font-size: 1rem;
}
.timeline-item {
gap: 20px;
}
.contact-form-wrapper {
padding: 30px 20px;
}
.cta-content h2 {
font-size: 2rem;
}
.page-hero h1,
.contact-hero h1 {
font-size: 2.2rem;
}
.policy-hero h1 {
font-size: 2.2rem;
}
.error-number {
font-size: 5rem;
}
.thankyou-content h1,
.error-content h1 {
font-size: 2rem;
}
.footer-content {
flex-direction: column;
gap: 20px;
}
.footer-links {
flex-direction: column;
gap: 10px;
}
}

@media (max-width: 480px) {
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.4rem;
}
h3 {
font-size: 1.1rem;
}
body {
font-size: 13px;
}
.hero-title {
font-size: 2rem;
}
.hero-title-highlight {
font-size: 2.5rem;
}
.hero-description {
font-size: 0.95rem;
}
.hero-badge {
padding: 8px 20px;
font-size: 13px;
}
.hero-stat-number {
font-size: 1.8rem;
}
.hero-stats {
gap: 20px;
}
.stats-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.stat-number {
font-size: 2.5rem;
}
.thankyou-actions,
.error-actions {
flex-direction: column;
}
.btn-primary,
.btn-secondary {
width: 100%;
text-align: center;
}
.privacy-content {
flex-direction: column;
gap: 15px;
}
.privacy-buttons {
width: 100%;
justify-content: space-between;
}
.cta-circle i {
font-size: 2rem;
}
.cta-text h2 {
font-size: 1.8rem;
}
.benefits-content h2 {
font-size: 1.8rem;
}
.energy-period {
padding: 20px;
}
.factor-card,
.hygiene-card {
padding: 25px;
}
.factor-number,
.technique-number {
width: 50px;
height: 50px;
font-size: 1.3rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 10px;
}
h1 {
font-size: 1.6rem;
}
h2 {
font-size: 1.3rem;
}
.hero-title {
font-size: 1.8rem;
}
.hero-title-highlight {
font-size: 2.2rem;
}
.hero-description {
font-size: 0.9rem;
}
.hero-badge {
padding: 6px 15px;
font-size: 12px;
}
.hero-stat-number {
font-size: 1.5rem;
}
.feature-card,
.approach-card,
.info-card,
.product-card,
.tip-card {
padding: 20px 15px;
}
.contact-form-wrapper {
padding: 20px 15px;
}
.cta-circle {
width: 70px;
height: 70px;
}
.cta-visual {
height: 250px;
}
.cta-connecting-line {
width: 150px;
height: 150px;
}
.benefit-item {
padding: 20px;
}
.myth-card {
padding: 25px;
}
.energy-period {
padding: 15px;
}
.factor-card,
.hygiene-card {
padding: 20px;
}
.factor-number,
.technique-number {
width: 45px;
height: 45px;
font-size: 1.2rem;
}
.technique-item {
padding: 20px;
}
}

h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.25rem;
}
h3 {
font-size: 1rem;
}
body {
font-size: 12px;
}
.hero-title {
font-size: 1.7rem;
gap: 5px;
}
.hero-title-highlight {
font-size: 2rem;
}
.hero-description {
font-size: 0.85rem;
line-height: 1.5;
}
.hero-badge {
padding: 6px 12px;
font-size: 11px;
}
.hero-stat-number {
font-size: 1.3rem;
}
.hero-stat-label {
font-size: 10px;
}
.hero-stats {
gap: 12px;
}
.hero-actions {
gap: 10px;
}
.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 12px;
}
.section-header h2 {
font-size: 1.4rem;
}
.section-header p {
font-size: 0.85rem;
}
.feature-card h3,
.approach-card h3,
.info-card h3,
.product-card h3,
.tip-card h3,
.myth-card h3 {
font-size: 1.05rem;
}
.feature-card p,
.approach-card p,
.info-card p,
.product-card p,
.tip-card p,
.myth-card p {
font-size: 11px;
line-height: 1.5;
}
.stat-number {
font-size: 2rem;
}
.stat-label {
font-size: 10px;
}
.cta-text h2 {
font-size: 1.4rem;
}
.cta-text p {
font-size: 0.85rem;
}
.benefit-text h3 {
font-size: 1.05rem;
}
.benefit-text p {
font-size: 11px;
}
.timeline-icon {
width: 35px;
height: 35px;
}
.timeline-content {
padding: 15px;
}
.timeline-content h3 {
font-size: 0.95rem;
}
.timeline-content p {
font-size: 11px;
}
.contact-form-wrapper {
padding: 18px 12px;
}
.form-group label {
font-size: 12px;
}
.form-group input,
.form-group textarea {
padding: 10px 12px;
font-size: 12px;
}
.checkbox-label {
font-size: 11px;
}
.logo {
font-size: 1.05rem;
}
.nav a {
font-size: 12px;
}
.footer-brand {
font-size: 1rem;
}
.footer-info p,
.footer-links a,
.footer-bottom p {
font-size: 11px;
}
.page-hero h1,
.contact-hero h1 {
font-size: 1.8rem;
}
.policy-hero h1 {
font-size: 1.8rem;
}
.error-number {
font-size: 4rem;
}
.thankyou-content h1,
.error-content h1 {
font-size: 1.6rem;
}
.thankyou-content p,
.error-content p {
font-size: 0.85rem;
}
.product-price {
font-size: 1.6rem;
}
.approach-number {
font-size: 2rem;
}
.energy-time {
font-size: 0.9rem;
}
.energy-label {
font-size: 0.85rem;
}
.energy-period p {
font-size: 11px;
}
.technique-content h3 {
font-size: 1rem;
}
.technique-content p {
font-size: 11px;
}
.contact-item h3 {
font-size: 0.95rem;
}
.contact-item p {
font-size: 11px;
}
}
