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

:root {
--primary-color: #6366f1;
--secondary-color: #8b5cf6;
--accent-color: #ec4899;
--success-color: #10b981;
--dark-color: #1e293b;
--light-color: #f8fafc;
--text-color: #334155;
--border-color: #e2e8f0;
--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;
color: var(--text-color);
line-height: 1.6;
font-size: 15px;
overflow-x: hidden;
}

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

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;
}

.header-main {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 15px 0;
position: relative;
box-shadow: var(--shadow);
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: white;
}

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

.nav-menu a {
color: white;
font-size: 0.9rem;
font-weight: 400;
padding: 8px 0;
position: relative;
}

.nav-menu a:hover {
opacity: 0.8;
}

.menu-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
padding: 5px;
-webkit-tap-highlight-color: transparent;
}

.hero-mega {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
padding: 120px 0 100px;
position: relative;
overflow: hidden;
}

.hero-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}

.particle {
position: absolute;
width: 4px;
height: 4px;
background: rgba(99, 102, 241, 0.6);
border-radius: 50%;
animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 3s; }
.particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 6s; }
.particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 9s; }
.particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 12s; }

@keyframes particleFloat {
0%, 100% { transform: translate(0, 0); opacity: 0.3; }
50% { transform: translate(50px, -50px); opacity: 1; }
}

.hero-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-left {
color: white;
}

.hero-label {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
border: 1px solid rgba(99, 102, 241, 0.4);
padding: 8px 20px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 25px;
color: #a5b4fc;
}

.hero-left h1 {
color: white;
font-size: 3.2rem;
margin-bottom: 25px;
line-height: 1.1;
}

.hero-left > p {
font-size: 1.15rem;
opacity: 0.85;
margin-bottom: 40px;
line-height: 1.7;
}

.hero-metrics {
display: flex;
gap: 20px;
margin-bottom: 40px;
}

.metric-box {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 12px;
text-align: center;
flex: 1;
backdrop-filter: blur(10px);
}

.metric-icon {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 8px;
color: #a5b4fc;
}

.metric-box span {
font-size: 0.8rem;
opacity: 0.8;
}

.hero-ctas {
display: flex;
gap: 15px;
}

.btn-hero-main, .btn-hero-outline {
padding: 16px 36px;
border-radius: 10px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
}

.btn-hero-main {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
border: none;
}

.btn-hero-main:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.btn-hero-outline {
background: transparent;
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.5);
}

.hero-right {
position: relative;
height: 500px;
}

.hero-graphic {
position: relative;
width: 100%;
height: 100%;
}

.graphic-circle {
position: absolute;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
border: 2px solid rgba(99, 102, 241, 0.4);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
animation: circleFloat 8s infinite ease-in-out;
}

.circle-1 {
width: 180px;
height: 180px;
top: 10%;
left: 10%;
animation-delay: 0s;
}

.circle-2 {
width: 160px;
height: 160px;
top: 50%;
right: 10%;
animation-delay: 2s;
}

.circle-3 {
width: 140px;
height: 140px;
bottom: 10%;
left: 30%;
animation-delay: 4s;
}

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

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

.circle-label {
display: block;
font-size: 0.75rem;
opacity: 0.7;
margin-bottom: 5px;
}

.circle-value {
display: block;
font-size: 1.4rem;
font-weight: 700;
}

.graphic-line {
position: absolute;
height: 2px;
background: linear-gradient(90deg, rgba(99, 102, 241, 0.4), transparent);
animation: lineGrow 3s infinite ease-in-out;
}

.line-1 {
top: 25%;
left: 25%;
width: 150px;
transform: rotate(45deg);
animation-delay: 0s;
}

.line-2 {
top: 55%;
right: 25%;
width: 120px;
transform: rotate(-30deg);
animation-delay: 1s;
}

.line-3 {
bottom: 25%;
left: 35%;
width: 100px;
transform: rotate(15deg);
animation-delay: 2s;
}

@keyframes lineGrow {
0%, 100% { opacity: 0.3; width: 80px; }
50% { opacity: 1; width: 150px; }
}

.methodology-section {
padding: 80px 0;
background: white;
}

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

.method-card {
background: var(--light-color);
padding: 35px;
border-radius: 12px;
position: relative;
border-left: 4px solid var(--primary-color);
}

.method-number {
position: absolute;
top: 20px;
right: 20px;
font-size: 4rem;
font-weight: 700;
color: var(--primary-color);
opacity: 0.08;
}

.method-card h3 {
margin-bottom: 15px;
color: var(--primary-color);
}

.method-card p {
line-height: 1.7;
font-size: 0.95rem;
}

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

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

.showcase-image {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

.image-badge {
position: absolute;
top: 20px;
left: 20px;
background: var(--accent-color);
color: white;
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;
font-size: 0.85rem;
}

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

.showcase-text > p {
margin-bottom: 30px;
line-height: 1.7;
font-size: 1.05rem;
}

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

.point-item {
display: flex;
gap: 15px;
}

.point-icon {
width: 32px;
height: 32px;
background: var(--success-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}

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

.point-text span {
font-size: 0.9rem;
line-height: 1.6;
}

.impact-section {
padding: 80px 0;
background: white;
}

.impact-header {
text-align: center;
margin-bottom: 50px;
}

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

.impact-card {
text-align: center;
padding: 30px;
}

.impact-visual {
margin-bottom: 25px;
}

.circle-progress {
width: 140px;
height: 140px;
margin: 0 auto;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
box-shadow: var(--shadow-lg);
}

.impact-card h4 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.impact-card p {
font-size: 0.9rem;
line-height: 1.6;
}

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

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

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

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

.service-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15px;
}

.service-tag {
background: var(--accent-color);
color: white;
padding: 5px 12px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
}

.service-card h3 {
flex: 1;
margin-bottom: 0;
}

.service-card > p {
margin-bottom: 20px;
line-height: 1.7;
font-size: 0.9rem;
}

.service-features {
list-style: none;
}

.service-features li {
padding: 8px 0;
font-size: 0.9rem;
padding-left: 20px;
position: relative;
}

.service-features li:before {
content: "→";
position: absolute;
left: 0;
color: var(--primary-color);
font-weight: 700;
}

.testimonials-section {
padding: 80px 0;
background: white;
}

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

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

.testimonial-content {
margin-bottom: 20px;
}

.testimonial-content p {
font-style: italic;
line-height: 1.7;
font-size: 0.95rem;
}

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

.author-info span {
font-size: 0.85rem;
color: var(--text-color);
opacity: 0.8;
}

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

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

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

.process-text > p {
margin-bottom: 30px;
font-size: 1.05rem;
}

.process-steps {
display: flex;
flex-direction: column;
gap: 25px;
}

.process-step {
display: flex;
gap: 20px;
}

.step-num {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
flex-shrink: 0;
}

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

.step-content p {
font-size: 0.9rem;
line-height: 1.6;
}

.process-image {
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

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

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

.cta-left h2 {
color: white;
margin-bottom: 20px;
}

.cta-left > p {
margin-bottom: 25px;
line-height: 1.7;
font-size: 1.05rem;
opacity: 0.9;
}

.cta-benefits {
list-style: none;
}

.cta-benefits li {
padding: 12px 0;
font-size: 1rem;
display: flex;
align-items: center;
gap: 12px;
}

.cta-benefits span {
width: 24px;
height: 24px;
background: var(--success-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}

.cta-box {
background: white;
padding: 40px;
border-radius: 16px;
box-shadow: 0 20px 50px rgba(0,0,0,0.3);
text-align: center;
}

.cta-box h3 {
margin-bottom: 25px;
color: var(--dark-color);
}

.cta-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 30px;
}

.cta-feature {
text-align: center;
padding: 15px;
background: var(--light-color);
border-radius: 8px;
}

.cta-feature strong {
display: block;
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 5px;
}

.cta-feature span {
font-size: 0.85rem;
color: var(--text-color);
}

.btn-cta-large {
display: block;
width: 100%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 16px;
border-radius: 8px;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.btn-cta-large:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-note {
margin-top: 15px;
font-size: 0.85rem;
color: var(--text-color);
opacity: 0.7;
}

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

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

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

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

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

.features-section, .content-section, .trends-section, .guides-section, .tools-intro, .products-section, .comparison-section, .benefits-section, .contact-section, .tips-section {
padding: 60px 0;
}

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

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

.section-header p {
color: var(--text-color);
opacity: 0.8;
font-size: 1rem;
}

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

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

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

.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

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

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

.feature-card p {
font-size: 0.9rem;
line-height: 1.6;
}

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

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

.content-text p {
margin-bottom: 15px;
line-height: 1.7;
}

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

.stats-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 60px 0;
color: white;
}

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

.stat-number {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 8px;
}

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

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

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

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

.trend-number {
position: absolute;
top: 20px;
right: 20px;
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
opacity: 0.1;
}

.trend-card h3 {
margin-bottom: 12px;
color: var(--primary-color);
}

.cta-section {
background: var(--light-color);
padding: 60px 0;
text-align: center;
}

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

.cta-content p {
margin-bottom: 25px;
font-size: 1.05rem;
}

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

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 30px;
}

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

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

.footer-links {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer-links a {
font-size: 0.9rem;
opacity: 0.9;
}

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

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

.footer-bottom p {
font-size: 0.85rem;
opacity: 0.8;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-color);
color: white;
padding: 20px;
box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
z-index: 1000;
display: none;
}

.privacy-popup.show {
display: block;
}

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

.popup-content p {
font-size: 0.9rem;
flex: 1;
}

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

.popup-link {
color: var(--primary-color);
font-size: 0.9rem;
}

.popup-accept {
background: var(--primary-color);
color: white;
border: none;
padding: 10px 25px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 0.9rem;
}

.popup-accept:hover {
background: var(--secondary-color);
}

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

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

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

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

.guide-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: var(--shadow);
border-top: 4px solid var(--primary-color);
}

.guide-card h3 {
margin-bottom: 15px;
color: var(--primary-color);
}

.guide-card > p {
margin-bottom: 20px;
font-size: 0.95rem;
line-height: 1.7;
}

.guide-steps {
display: flex;
flex-direction: column;
gap: 12px;
}

.step-item {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 0.9rem;
}

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

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

.tip-card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
text-align: center;
}

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

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

.tip-card p {
font-size: 0.9rem;
}

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

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

.intro-content p {
margin-bottom: 15px;
line-height: 1.7;
}

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

.product-card {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: var(--shadow);
position: relative;
transition: all 0.3s ease;
border-top: 4px solid var(--primary-color);
}

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

.product-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(--accent-color);
color: white;
padding: 6px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}

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

.product-card > p {
margin-bottom: 20px;
font-size: 0.95rem;
line-height: 1.7;
}

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

.product-features li {
padding: 10px 0;
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
border-bottom: none;
}

.product-features i {
color: var(--success-color);
font-size: 0.9rem;
}

.product-price {
text-align: center;
margin-bottom: 20px;
}

.price-amount {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
}

.price-period {
font-size: 1rem;
color: var(--text-color);
opacity: 0.7;
}

.btn-product {
display: block;
width: 100%;
text-align: center;
background: var(--primary-color);
color: white;
padding: 12px;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}

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

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

.comparison-card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
}

.comparison-card h4 {
color: var(--primary-color);
margin-bottom: 12px;
}

.comparison-card p {
font-size: 0.9rem;
line-height: 1.6;
}

.benefits-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
gap: 50px;
align-items: center;
}

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

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

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

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

.benefit-item p {
font-size: 0.95rem;
line-height: 1.7;
}

.contact-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
gap: 50px;
}

.contact-info h2 {
margin-bottom: 15px;
}

.contact-info > p {
margin-bottom: 30px;
line-height: 1.7;
}

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

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

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

.contact-text p {
font-size: 0.95rem;
line-height: 1.6;
}

.contact-form-wrapper {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: var(--shadow);
}

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

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 0.9rem;
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 {
display: flex;
align-items: flex-start;
}

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

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

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

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

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

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

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

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

.faq-contact {
padding: 60px 0;
}

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

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

.faq-item {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: var(--shadow);
}

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

.faq-item p {
font-size: 0.9rem;
line-height: 1.6;
}

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

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

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

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

.thankyou-content h1 {
margin-bottom: 20px;
}

.thankyou-message {
font-size: 1.05rem;
line-height: 1.7;
margin-bottom: 30px;
}

.thankyou-info {
background: var(--light-color);
padding: 30px;
border-radius: 12px;
margin-bottom: 30px;
}

.info-item {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 20px;
text-align: left;
}

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

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

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

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

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

.error-content h1 {
margin-bottom: 20px;
}

.error-content > p {
font-size: 1.05rem;
margin-bottom: 30px;
line-height: 1.7;
}

.error-suggestions {
background: var(--light-color);
padding: 30px;
border-radius: 12px;
margin-bottom: 30px;
text-align: left;
}

.error-suggestions h3 {
margin-bottom: 15px;
}

.error-suggestions ul {
list-style: none;
}

.error-suggestions li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 12px;
font-size: 0.95rem;
}

.error-suggestions i {
color: var(--primary-color);
}

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

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

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

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

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

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

.policy-text h3 {
margin-top: 30px;
margin-bottom: 15px;
}

.policy-text p {
margin-bottom: 15px;
line-height: 1.8;
}

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

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

@media (max-width: 968px) {
.hero-split, .showcase-wrapper, .final-cta-wrapper, .process-content, .intro-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-right {
height: 350px;
}
.methodology-grid, .services-grid, .testimonials-grid, .implementation-grid {
grid-template-columns: 1fr;
}
.impact-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
body { font-size: 14px; }
.container { padding: 0 15px; }
.nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); padding: 20px; gap: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 999; }
.nav-menu.active { display: flex; }
.nav-menu a { font-size: 1rem; padding: 10px 0; }
.menu-toggle { display: block; }
.header-main { position: relative; }
.hero-left h1 { font-size: 2rem; }
.hero-metrics { flex-direction: column; gap: 15px; }
.hero-ctas { flex-direction: column; }
.btn-hero-main, .btn-hero-outline { width: 100%; text-align: center; }
.graphic-circle { width: 120px !important; height: 120px !important; }
.circle-value { font-size: 1.1rem; }
.content-wrapper, .benefits-wrapper, .contact-wrapper, .footer-content { grid-template-columns: 1fr; gap: 30px; }
.features-grid, .trends-grid, .guides-grid, .products-grid, .comparison-grid, .tips-grid, .faq-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.popup-content { flex-direction: column; text-align: center; }
.thankyou-actions, .error-actions { flex-direction: column; }
.btn-primary, .btn-secondary { width: 100%; }
.error-number { font-size: 5rem; }
.cta-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
.hero-mega { padding: 60px 0 50px; }
.hero-left h1 { font-size: 1.6rem; }
.metric-icon { font-size: 1.4rem; }
.hero-right { display: none; }
.page-hero { padding: 50px 0; }
.features-section, .content-section, .trends-section, .guides-section, .products-section, .contact-section, .methodology-section, .showcase-section, .impact-section, .services-section, .testimonials-section, .process-section, .final-cta-section, .guides-intro, .implementation-section, .tools-intro, .comparison-section, .benefits-section { padding: 40px 0; }
.stats-grid { grid-template-columns: 1fr; }
.particle { display: none; }
.circle-progress { width: 100px; height: 100px; font-size: 1.4rem; }
}

@media (min-width: 320px) {
.container { max-width: 100%; }
}

.guides-intro {
padding: 60px 0;
background: white;
}

.intro-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
gap: 50px;
align-items: center;
}

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

.intro-text p {
margin-bottom: 15px;
line-height: 1.7;
}

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

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

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

.impl-card {
background: white;
padding: 25px;
border-radius: 12px;
border-left: 4px solid var(--accent-color);
}

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

.impl-card p {
font-size: 0.9rem;
line-height: 1.6;
}
