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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--dark: #0f172a;
--light: #f8fafc;
}

html {
scroll-behavior: smooth;
}

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

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

.header {
padding: 12px 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(99, 102, 241, 0.1);
position: sticky;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 17px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
letter-spacing: -0.5px;
}

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

.nav-link {
font-size: 13px;
color: var(--dark);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
position: relative;
}

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

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: var(--primary);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 22px;
height: 2px;
background: var(--dark);
transition: all 0.3s;
}

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

.hero-bg-shapes {
position: absolute;
inset: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
background: rgba(99, 102, 241, 0.1);
}

.shape-1 {
width: 400px;
height: 400px;
top: -100px;
right: -50px;
animation: float 20s ease-in-out infinite;
}

.shape-2 {
width: 300px;
height: 300px;
bottom: -80px;
left: -80px;
animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
width: 200px;
height: 200px;
top: 50%;
right: 20%;
animation: float 18s ease-in-out infinite;
}

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

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

.hero-text {
color: white;
}

.hero-badge {
display: inline-block;
padding: 6px 14px;
background: rgba(255, 255, 255, 0.2);
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.hero-text h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 46px;
font-weight: 700;
line-height: 1.15;
margin-bottom: 15px;
}

.hero-subtitle {
font-size: 14px;
opacity: 0.85;
margin-bottom: 20px;
font-weight: 500;
}

.hero-description {
font-size: 16px;
opacity: 0.95;
margin-bottom: 30px;
line-height: 1.7;
}

.hero-text > p {
font-size: 16px;
opacity: 0.95;
margin-bottom: 35px;
line-height: 1.7;
}

.hero-stats {
display: flex;
gap: 35px;
margin-top: 35px;
flex-wrap: wrap;
}

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

.stat-item strong {
font-size: 32px;
font-weight: 700;
line-height: 1;
margin-bottom: 5px;
}

.stat-item span {
font-size: 12px;
opacity: 0.9;
}

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

.btn-primary,
.btn-ghost,
.btn-primary-large {
display: inline-block;
padding: 13px 28px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

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

.btn-primary:hover,
.btn-primary-large:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-large {
padding: 16px 35px;
font-size: 15px;
}

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

.btn-ghost:hover {
background: rgba(255, 255, 255, 0.1);
border-color: white;
}

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

.visual-card {
position: absolute;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 20px;
}

.card-float-1 {
width: 220px;
height: 140px;
top: 20px;
right: 40px;
animation: float 6s ease-in-out infinite;
}

.card-header {
width: 100%;
height: 12px;
background: rgba(255, 255, 255, 0.3);
border-radius: 6px;
margin-bottom: 12px;
}

.card-body {
width: 70%;
height: 80px;
background: rgba(255, 255, 255, 0.2);
border-radius: 8px;
}

.card-float-2 {
width: 180px;
height: 180px;
bottom: 40px;
right: 180px;
animation: float 8s ease-in-out infinite reverse;
}

.card-icon {
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
margin-bottom: 15px;
}

.card-lines {
display: flex;
flex-direction: column;
gap: 8px;
}

.card-lines::before,
.card-lines::after {
content: '';
height: 8px;
background: rgba(255, 255, 255, 0.2);
border-radius: 4px;
}

.card-lines::before {
width: 100%;
}

.card-lines::after {
width: 60%;
}

.card-float-3 {
width: 200px;
height: 120px;
top: 180px;
right: 0;
animation: float 7s ease-in-out infinite;
}

.card-graph {
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
border-radius: 8px;
}

.services-modern {
padding: 70px 0;
}

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

.section-header.centered {
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}

.section-label {
display: inline-block;
padding: 5px 12px;
background: rgba(99, 102, 241, 0.1);
color: var(--primary);
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 12px;
}

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 34px;
font-weight: 700;
color: var(--dark);
margin-bottom: 12px;
}

.section-header p {
font-size: 15px;
color: #64748b;
}

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

.service-modern {
background: white;
padding: 35px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
transition: all 0.3s;
}

.service-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
}

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

.service-icon-wrap i {
font-size: 26px;
color: white;
}

.service-modern h3 {
font-size: 19px;
font-weight: 600;
margin-bottom: 12px;
}

.service-modern p {
font-size: 13px;
color: #64748b;
margin-bottom: 20px;
line-height: 1.7;
}

.service-link {
color: var(--primary);
text-decoration: none;
font-size: 13px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}

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

.methodology {
padding: 70px 0;
background: white;
}

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

.methodology-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 18px;
}

.methodology-content > p {
font-size: 14px;
color: #64748b;
margin-bottom: 35px;
line-height: 1.7;
}

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

.method-step {
display: flex;
gap: 18px;
align-items: flex-start;
}

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

.step-info h4 {
font-size: 15px;
margin-bottom: 6px;
}

.step-info p {
font-size: 13px;
color: #64748b;
line-height: 1.6;
}

.methodology-visual img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team-section {
padding: 70px 0;
}

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

.team-member {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.member-role {
display: inline-block;
padding: 4px 10px;
background: rgba(99, 102, 241, 0.1);
color: var(--primary);
border-radius: 15px;
font-size: 11px;
font-weight: 600;
margin-bottom: 12px;
}

.team-member h3 {
font-size: 17px;
margin-bottom: 10px;
}

.team-member p {
font-size: 13px;
color: #64748b;
line-height: 1.6;
}

.team-image {
grid-column: 1 / -1;
}

.team-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cases-section {
padding: 70px 0;
background: white;
}

.cases-grid {
display: grid;
gap: 40px;
}

.case-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
background: var(--light);
border-radius: 12px;
overflow: hidden;
}

.case-card:nth-child(even) {
direction: rtl;
}

.case-card:nth-child(even) > * {
direction: ltr;
}

.case-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}

.case-content {
padding: 30px;
}

.case-tag {
display: inline-block;
padding: 4px 10px;
background: rgba(99, 102, 241, 0.1);
color: var(--primary);
border-radius: 15px;
font-size: 11px;
font-weight: 600;
margin-bottom: 12px;
}

.case-content h3 {
font-size: 22px;
margin-bottom: 12px;
}

.case-content > p {
font-size: 13px;
color: #64748b;
margin-bottom: 25px;
line-height: 1.7;
}

.case-results {
display: flex;
gap: 25px;
flex-wrap: wrap;
}

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

.result-item strong {
font-size: 24px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 4px;
}

.result-item span {
font-size: 11px;
color: #64748b;
}

.benefits-section {
padding: 70px 0;
}

.benefits-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
}

.benefits-list {
display: grid;
gap: 30px;
max-width: 900px;
}

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

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

.benefit-icon i {
font-size: 24px;
color: white;
}

.benefit-text h4 {
font-size: 16px;
margin-bottom: 8px;
}

.benefit-text p {
font-size: 13px;
color: #64748b;
line-height: 1.7;
}

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

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

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.testimonial-stars {
color: #fbbf24;
font-size: 18px;
margin-bottom: 15px;
}

.testimonial-card > p {
font-size: 14px;
color: #64748b;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

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

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

.testimonial-author span {
font-size: 12px;
color: #64748b;
}

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

.cta-box {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 16px;
padding: 60px 40px;
text-align: center;
}

.cta-content-box {
max-width: 600px;
margin: 0 auto;
color: white;
}

.cta-content-box h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 34px;
font-weight: 700;
margin-bottom: 18px;
}

.cta-content-box > p {
font-size: 15px;
opacity: 0.95;
margin-bottom: 30px;
line-height: 1.7;
}

.cta-note {
font-size: 13px;
opacity: 0.85;
margin-top: 15px;
}

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

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 25px;
margin-bottom: 25px;
}

.footer-col h4 {
font-size: 15px;
margin-bottom: 12px;
font-weight: 600;
}

.footer-col p,
.footer-col a {
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
display: block;
margin-bottom: 7px;
}

.footer-col a:hover {
color: var(--primary);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 18px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}

.footer-bottom p {
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
text-decoration: none;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 18px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s;
}

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

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

.privacy-content p {
font-size: 12px;
margin: 0;
}

.privacy-content a {
color: var(--primary);
}

#acceptPrivacy {
background: var(--primary);
color: white;
border: none;
padding: 9px 22px;
border-radius: 6px;
cursor: pointer;
font-size: 12px;
font-weight: 600;
}

.page-hero {
padding: 55px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 14px;
}

.page-hero p {
font-size: 15px;
max-width: 700px;
margin: 0 auto;
opacity: 0.95;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 18px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transform: translateX(-100%);
transition: transform 0.3s;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: flex;
}

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

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

.hero-text h1 {
font-size: 32px;
}

.hero-text > p {
font-size: 14px;
}

.hero-stats {
gap: 25px;
}

.stat-item strong {
font-size: 26px;
}

.hero-visual-modern {
height: 300px;
}

.section-header h2 {
font-size: 26px;
}

.services-grid-modern {
grid-template-columns: 1fr;
}

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

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

.case-card {
grid-template-columns: 1fr;
}

.case-card:nth-child(even) {
direction: ltr;
}

.benefits-section,
.testimonials-section,
.final-cta {
padding: 50px 0;
}

.cta-box {
padding: 40px 25px;
}

.cta-content-box h2 {
font-size: 26px;
}

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

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

.hero-text h1 {
font-size: 26px;
}

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

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

.btn-primary,
.btn-ghost,
.btn-primary-large {
width: 100%;
text-align: center;
}

.case-results {
flex-direction: column;
gap: 15px;
}
}

.price-tag {
font-size: 32px;
font-weight: 700;
color: var(--primary);
margin: 15px 0;
}

.featured-service {
border: 2px solid var(--primary);
position: relative;
}

.popular-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--primary);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

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

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

.contact-info h2 {
font-size: 24px;
margin-bottom: 30px;
}

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

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

.info-icon i {
font-size: 20px;
}

.info-content h3 {
font-size: 16px;
margin-bottom: 5px;
}

.info-content p {
font-size: 13px;
color: #64748b;
}

.contact-form-wrapper {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
font-size: 24px;
margin-bottom: 25px;
}

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

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

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

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

.form-group textarea {
resize: vertical;
}

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

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

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

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

.map-section {
padding: 70px 0;
background: white;
}

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

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

.thankyou-main,
.error-main {
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;
}

.success-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #10b981, #059669);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

.success-icon i {
font-size: 40px;
}

.thankyou-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
color: var(--dark);
}

.thankyou-content p {
font-size: 15px;
color: #64748b;
margin-bottom: 15px;
}

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

.thankyou-info {
margin-top: 30px;
}

.thankyou-info p {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 14px;
color: #64748b;
margin-bottom: 10px;
}

.thankyou-info i {
color: var(--primary);
}

.btn-outline {
display: inline-block;
padding: 13px 28px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s;
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
cursor: pointer;
}

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

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

.contact-form-wrapper {
padding: 30px 20px;
}

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

.btn-outline {
width: 100%;
text-align: center;
}
}
