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

:root {
--primary: #0f172a;
--secondary: #3b82f6;
--accent: #8b5cf6;
--highlight: #06b6d4;
--text-dark: #1e293b;
--text-light: #64748b;
--bg-light: #f8fafc;
--bg-white: #ffffff;
--border: #e2e8f0;
}

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

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
color: var(--secondary);
text-decoration: none;
transition: all 0.3s ease;
}

a:hover { color: var(--accent); }

img {
max-width: 100%;
height: auto;
display: block;
}

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

.header {
background: var(--bg-white);
padding: 15px 0;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
}

.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 a {
color: var(--text-dark);
font-size: 14px;
font-weight: 400;
padding: 8px 0;
position: relative;
}

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

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

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

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

.mega-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
padding: 80px 0;
}

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

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.15;
box-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

.shape-1 {
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
top: -150px;
right: -100px;
animation: flash1 3s infinite ease-in-out;
}

.shape-2 {
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent);
bottom: -100px;
left: -80px;
animation: flash2 2.5s infinite ease-in-out;
}

.shape-3 {
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
top: 40%;
left: 60%;
animation: flash3 3.5s infinite ease-in-out;
}

.shape-4 {
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent);
top: 20%;
left: 20%;
animation: flash4 2.8s infinite ease-in-out;
}

.shape-5 {
width: 250px;
height: 250px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
bottom: 30%;
right: 15%;
animation: flash5 3.2s infinite ease-in-out;
}

@keyframes flash1 {
0%, 100% { opacity: 0.15; transform: scale(1); }
50% { opacity: 0.4; transform: scale(1.1); }
}

@keyframes flash2 {
0%, 100% { opacity: 0.1; transform: scale(1); }
50% { opacity: 0.35; transform: scale(1.15); }
}

@keyframes flash3 {
0%, 100% { opacity: 0.12; transform: scale(1); }
50% { opacity: 0.38; transform: scale(1.12); }
}

@keyframes flash4 {
0%, 100% { opacity: 0.08; transform: scale(1); }
50% { opacity: 0.3; transform: scale(1.18); }
}

@keyframes flash5 {
0%, 100% { opacity: 0.1; transform: scale(1); }
50% { opacity: 0.32; transform: scale(1.14); }
}

.mega-hero-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
}

.hero-content-main {
color: var(--bg-white);
}

.hero-badge {
display: inline-block;
background: rgba(59, 130, 246, 0.2);
color: var(--highlight);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-content-main h1 {
color: var(--bg-white);
font-size: 3rem;
margin-bottom: 1.5rem;
line-height: 1.1;
}

.hero-content-main > p {
font-size: 1.1rem;
opacity: 0.9;
margin-bottom: 2.5rem;
line-height: 1.7;
}

.hero-cta-group {
display: flex;
gap: 15px;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
padding: 14px 32px;
font-size: 15px;
font-weight: 600;
border-radius: 8px;
transition: all 0.3s ease;
display: inline-block;
}

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

.btn-hero-primary:hover {
background: var(--accent);
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

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

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item strong {
font-family: 'Space Grotesk', sans-serif;
font-size: 2rem;
color: var(--highlight);
margin-bottom: 0.3rem;
}

.stat-item span {
font-size: 13px;
opacity: 0.8;
}

.hero-visual {
position: relative;
height: 400px;
}

.hero-card {
position: absolute;
background: var(--bg-white);
padding: 20px 25px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
gap: 15px;
animation: cardFloat 6s infinite ease-in-out;
}

.hero-card i {
font-size: 1.8rem;
color: var(--secondary);
}

.hero-card span {
font-size: 14px;
font-weight: 600;
color: var(--text-dark);
}

.card-float-1 {
top: 20%;
left: 10%;
animation-delay: 0s;
}

.card-float-2 {
top: 50%;
right: 5%;
animation-delay: 2s;
}

.card-float-3 {
bottom: 15%;
left: 20%;
animation-delay: 4s;
}

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

.section-intro {
max-width: 700px;
margin-bottom: 3rem;
}

.section-intro.centered {
text-align: center;
margin-left: auto;
margin-right: auto;
}

.section-label {
display: inline-block;
color: var(--secondary);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}

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

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

.expertise-card {
background: var(--bg-white);
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
border: 1px solid var(--border);
}

.expertise-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
border-color: var(--secondary);
}

.expertise-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}

.expertise-icon i {
font-size: 2rem;
color: var(--bg-white);
}

.expertise-card h3 {
margin-bottom: 1rem;
}

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

.card-link {
color: var(--secondary);
font-size: 14px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
}

.card-link:hover {
gap: 12px;
}

.card-link i {
font-size: 12px;
}

.showcase {
padding: 80px 0;
}

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

.showcase-content h2 {
margin-bottom: 1.5rem;
}

.showcase-content > p {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.7;
}

.showcase-features {
display: grid;
gap: 20px;
margin-bottom: 2rem;
}

.feature-point {
display: flex;
gap: 15px;
align-items: flex-start;
}

.feature-point i {
font-size: 1.3rem;
color: var(--highlight);
margin-top: 3px;
flex-shrink: 0;
}

.feature-point strong {
display: block;
margin-bottom: 0.3rem;
font-size: 15px;
}

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

.showcase-image img {
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 28px;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.btn-primary:hover {
background: var(--accent);
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

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

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

.methodology-timeline {
max-width: 900px;
margin: 0 auto;
display: grid;
gap: 40px;
}

.timeline-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 30px;
}

.timeline-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
color: var(--bg-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Space Grotesk', sans-serif;
font-size: 1.8rem;
font-weight: 700;
flex-shrink: 0;
}

.timeline-content h3 {
margin-bottom: 0.8rem;
}

.timeline-content p {
color: var(--text-light);
line-height: 1.7;
margin: 0;
}

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

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

.workshop-image img {
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.workshop-content h2 {
margin-bottom: 1.5rem;
}

.workshop-content > p {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.7;
}

.workshop-list {
list-style: none;
display: grid;
gap: 12px;
margin-bottom: 2rem;
}

.workshop-list li {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
}

.workshop-list i {
color: var(--highlight);
font-size: 14px;
}

.impact {
padding: 80px 0;
background: var(--primary);
color: var(--bg-white);
}

.impact .section-label {
color: var(--highlight);
}

.impact .section-intro h2 {
color: var(--bg-white);
}

.impact .section-intro p {
color: rgba(255, 255, 255, 0.8);
}

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

.impact-card {
background: rgba(255, 255, 255, 0.05);
padding: 35px;
border-radius: 12px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.impact-card:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateY(-5px);
}

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

.impact-card p {
color: rgba(255, 255, 255, 0.9);
font-size: 13px;
margin: 0;
}

.transformation {
padding: 80px 0;
}

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

.transformation-content h2 {
margin-bottom: 1.5rem;
}

.transformation-content > p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.transformation-highlights {
display: grid;
gap: 20px;
margin-top: 2rem;
}

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

.highlight-item strong {
display: block;
margin-bottom: 0.5rem;
font-size: 15px;
}

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

.transformation-image img {
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.client-type {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.client-type:hover {
border-color: var(--secondary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-type h3 {
margin-bottom: 0.8rem;
color: var(--secondary);
}

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

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--accent), var(--secondary));
color: var(--bg-white);
}

.final-cta-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.final-cta-content h2 {
color: var(--bg-white);
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

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

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
padding: 14px 32px;
font-size: 15px;
font-weight: 600;
border-radius: 8px;
transition: all 0.3s ease;
display: inline-block;
}

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

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

.btn-cta-secondary {
background: transparent;
color: var(--bg-white);
border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--bg-white);
}

.cta-contact {
display: flex;
gap: 40px;
justify-content: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.2);
flex-wrap: wrap;
}

.cta-contact-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
}

.cta-contact-item i {
font-size: 1.2rem;
opacity: 0.8;
}

.footer {
background: var(--primary);
color: var(--bg-white);
padding: 30px 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;
opacity: 0.8;
}

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

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

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

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

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

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

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

.cookie-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.cookie-link {
color: var(--bg-white);
font-size: 13px;
text-decoration: underline;
}

.cookie-accept {
background: var(--secondary);
color: var(--bg-white);
border: none;
padding: 10px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
}

.cookie-accept:hover {
background: var(--accent);
}

@media (max-width: 968px) {
.mega-hero-grid, .showcase-grid, .workshop-grid, .transformation-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-visual {
height: 300px;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
}

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

.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--bg-white);
flex-direction: column;
padding: 30px;
gap: 0;
transition: left 0.3s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav.active {
left: 0;
}

.nav a {
padding: 15px 0;
border-bottom: 1px solid var(--border);
}

.nav-toggle {
display: block;
}

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

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

.hero-stats {
grid-template-columns: 1fr;
gap: 15px;
}

.stat-item strong {
font-size: 1.5rem;
}

.expertise, .methodology, .workshop-section, .impact, .transformation, .clients, .final-cta, .showcase {
padding: 50px 0;
}

.expertise-grid, .clients-types, .impact-grid {
grid-template-columns: 1fr;
}

.timeline-item {
grid-template-columns: 60px 1fr;
gap: 20px;
}

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

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

.cta-contact {
gap: 20px;
}
}

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

.container {
padding: 0 15px;
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }

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

.hero-cta-group {
flex-direction: column;
}

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

.hero-stats {
padding-top: 1.5rem;
}

.expertise-card, .impact-card, .client-type {
padding: 25px;
}

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

.btn-cta-primary, .btn-cta-secondary {
width: 100%;
}
}

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

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

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

.logo {
font-size: 1.1rem;
}

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

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

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

.impact-number {
font-size: 2.2rem;
}
}

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

.page-hero h1 {
color: var(--bg-white);
margin-bottom: 0.8rem;
font-size: 2.5rem;
}

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

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

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

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

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

.content-text h2 {
margin-bottom: 1.5rem;
}

.content-text p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.content-image img {
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
width: 100%;
}

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

.features h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.feature-item {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border-color: var(--secondary);
}

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

.feature-item h3 {
margin-bottom: 0.8rem;
}

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

.products {
padding: 80px 0;
}

.products h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.product-card {
background: var(--bg-white);
border: 2px solid var(--border);
border-radius: 12px;
padding: 35px;
text-align: center;
position: relative;
transition: all 0.3s ease;
}

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

.product-card.featured {
border-color: var(--secondary);
box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
}

.product-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--secondary);
color: var(--bg-white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-header h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}

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

.product-features {
list-style: none;
text-align: left;
margin-bottom: 2rem;
}

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

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

.product-features i {
color: var(--highlight);
font-size: 16px;
flex-shrink: 0;
}

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

.benefits h2 {
text-align: center;
margin-bottom: 3rem;
}

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

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

.benefit-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border-color: var(--secondary);
}

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

.benefit-card h3 {
margin-bottom: 0.8rem;
}

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

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

.method-step {
text-align: center;
padding: 25px;
}

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

.method-icon i {
font-size: 2rem;
color: var(--bg-white);
}

.method-step h3 {
margin-bottom: 0.8rem;
}

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

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

.services-detail h2 {
text-align: center;
margin-bottom: 3rem;
}

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

.service-detail {
background: var(--bg-white);
padding: 30px;
border-radius: 12px;
display: flex;
gap: 20px;
align-items: flex-start;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.service-detail:hover {
border-color: var(--secondary);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-detail i {
font-size: 2rem;
color: var(--secondary);
flex-shrink: 0;
margin-top: 5px;
}

.service-detail-content h3 {
margin-bottom: 0.8rem;
}

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

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

.contact-hero h1 {
color: var(--bg-white);
margin-bottom: 0.8rem;
font-size: 2.5rem;
}

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

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

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

.contact-form-wrapper h2 {
margin-bottom: 2rem;
}

.contact-form {
display: grid;
gap: 20px;
}

.form-group {
display: grid;
gap: 8px;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
width: 18px;
height: 18px;
flex-shrink: 0;
}

.checkbox-label span {
flex: 1;
}

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

.contact-info-wrapper {
display: grid;
gap: 25px;
}

.contact-info-box {
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
border: 1px solid var(--border);
}

.contact-info-box h3 {
margin-bottom: 1.5rem;
}

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

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

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

.info-item strong {
display: block;
margin-bottom: 5px;
font-size: 14px;
}

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

.contact-hours {
background: var(--bg-light);
padding: 30px;
border-radius: 12px;
border: 1px solid var(--border);
}

.contact-hours h4 {
margin-bottom: 1rem;
}

.contact-hours p {
color: var(--text-light);
font-size: 14px;
margin-bottom: 0.5rem;
}

.contact-hours p:last-child {
margin-bottom: 0;
}

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

.map-section h2 {
text-align: center;
margin-bottom: 2.5rem;
}

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

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

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

.thankyou-icon {
font-size: 4.5rem;
color: var(--highlight);
margin-bottom: 2rem;
}

.thankyou-content h1 {
margin-bottom: 1.5rem;
}

.thankyou-content p {
color: var(--text-light);
font-size: 1.05rem;
margin-bottom: 2.5rem;
line-height: 1.7;
}

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

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

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

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

.error-content h1 {
margin-bottom: 1.5rem;
}

.error-content p {
color: var(--text-light);
font-size: 1.05rem;
margin-bottom: 2.5rem;
line-height: 1.7;
}

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

@media (max-width: 968px) {
.content-wrapper, .contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

.products-grid {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}
}

@media (max-width: 768px) {
.page-hero h1, .contact-hero h1 {
font-size: 2rem;
}

.content-section, .features, .products, .benefits, .methodology, .services-detail, .contact-main, .map-section {
padding: 50px 0;
}

.features-grid, .benefits-grid, .method-steps {
grid-template-columns: 1fr;
}

.thankyou-section, .error-section {
padding: 50px 0;
min-height: calc(100vh - 150px);
}

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

@media (max-width: 480px) {
.page-hero h1, .contact-hero h1 {
font-size: 1.6rem;
}

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

.feature-item, .benefit-card, .product-card {
padding: 25px;
}

.contact-info-box, .contact-hours {
padding: 25px;
}

.thankyou-icon {
font-size: 3.5rem;
}

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

@media (max-width: 320px) {
.page-hero h1, .contact-hero h1 {
font-size: 1.4rem;
}

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

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

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

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