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

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

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

h1, h2, h3, h4 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

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

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

.btn-learn {
background: transparent;
color: white;
border: 1px solid white;
}

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

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

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 0.8rem;
font-weight: 800;
color: var(--primary);
}

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

.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--dark);
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: 25px;
height: 2px;
background: var(--dark);
transition: all 0.3s ease;
}

.mega-hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 100px 0 60px;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

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

.shape-1 {
width: 400px;
height: 400px;
background: var(--accent);
top: -100px;
right: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--primary);
bottom: -50px;
left: -50px;
animation-delay: 5s;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--secondary);
top: 50%;
left: 50%;
animation-delay: 10s;
}

@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-content {
text-align: center;
color: white;
max-width: 900px;
margin: 0 auto;
}

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

.mega-hero-content h1 {
margin-bottom: 25px;
font-size: 3.5rem;
text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.mega-hero-content > p {
font-size: 1.2rem;
margin-bottom: 40px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-stats {
display: flex;
justify-content: center;
gap: 50px;
margin-bottom: 40px;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 2.5rem;
font-weight: 800;
font-family: 'Syne', sans-serif;
margin-bottom: 5px;
}

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

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

.btn-mega {
padding: 16px 40px;
background: white;
color: var(--primary);
border-radius: 8px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-mega:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-ghost {
padding: 16px 40px;
background: transparent;
color: white;
border: 2px solid white;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
display: inline-block;
}

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

.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
text-align: center;
color: white;
font-size: 12px;
}

.scroll-line {
width: 2px;
height: 40px;
background: white;
margin: 10px auto 0;
opacity: 0.5;
animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
0%, 100% { transform: translateY(0); opacity: 0.5; }
50% { transform: translateY(10px); opacity: 1; }
}

.section-intro {
margin-bottom: 50px;
}

.section-intro.center {
text-align: center;
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}

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

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

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

.expertise-card {
padding: 40px;
background: #f8fafc;
border-radius: 12px;
transition: all 0.3s ease;
position: relative;
}

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

.card-number {
font-size: 4rem;
font-weight: 800;
color: rgba(99, 102, 241, 0.1);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 20px;
}

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

.expertise-card p {
color: #64748b;
margin-bottom: 20px;
font-size: 14px;
}

.card-link {
color: var(--primary);
font-weight: 600;
font-size: 14px;
}

.card-link:hover {
color: var(--secondary);
}

.showcase {
padding: 80px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}

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

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

.showcase-text p {
margin-bottom: 30px;
font-size: 1.05rem;
opacity: 0.95;
}

.showcase-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 30px;
}

.metric {
text-align: center;
padding: 20px;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 8px;
}

.metric strong {
display: block;
font-size: 2rem;
font-family: 'Syne', sans-serif;
margin-bottom: 5px;
}

.metric span {
font-size: 13px;
opacity: 0.9;
}

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

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

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

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

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

.timeline-item {
display: flex;
gap: 30px;
margin-bottom: 50px;
}

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

.icon-inner {
width: 50px;
height: 50px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.5rem;
color: var(--primary);
font-family: 'Syne', sans-serif;
}

.timeline-content h3 {
margin-bottom: 10px;
}

.timeline-content p {
color: #64748b;
font-size: 14px;
}

.team-intro {
padding: 80px 0;
background: #f8fafc;
}

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

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

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

.team-content > p {
color: #64748b;
margin-bottom: 30px;
font-size: 1.05rem;
}

.team-highlights {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

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

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

.highlight-item p {
color: #64748b;
font-size: 14px;
}

.tech-stack {
padding: 80px 0;
background: white;
}

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

.tech-category h3 {
margin-bottom: 20px;
text-align: center;
}

.tech-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}

.tech-list span {
padding: 10px 20px;
background: #f8fafc;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}

.tech-list span:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
}

.testimonials {
padding: 80px 0;
background: #f8fafc;
}

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

.testimonial-card {
padding: 30px;
background: white;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

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

.testimonial-author span {
font-size: 13px;
color: #94a3b8;
}

.final-cta {
padding: 80px 0;
background: white;
}

.cta-box {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 16px;
padding: 60px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
color: white;
}

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

.cta-content p {
opacity: 0.95;
font-size: 1.05rem;
}

.cta-action {
text-align: center;
}

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

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

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

.footer-brand {
font-family: 'Syne', sans-serif;
font-size: 1.2rem;
font-weight: 800;
margin-bottom: 15px;
color: var(--primary);
}

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

.footer-links {
display: flex;
flex-wrap: wrap;
gap: 15px;
align-items: flex-start;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

.expertise-grid,
.tech-categories,
.testimonials-grid {
grid-template-columns: 1fr;
}

.showcase-content,
.team-layout {
grid-template-columns: 1fr;
}

.team-image {
order: -1;
}

.showcase-metrics {
grid-template-columns: repeat(3, 1fr);
}

.cta-box {
flex-direction: column;
text-align: center;
padding: 40px;
}

.footer-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: white;
flex-direction: column;
padding: 30px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: left 0.3s ease;
align-items: flex-start;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

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

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

.hero-stats {
gap: 30px;
}

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

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

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

.showcase-metrics {
grid-template-columns: 1fr;
}
}

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

h1 { font-size: 1.8rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.container {
padding: 0 15px;
}

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

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

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

.expertise,
.methodology,
.team-intro,
.tech-stack,
.testimonials,
.final-cta {
padding: 50px 0;
}

.showcase {
padding: 50px 0;
}

.expertise-card {
padding: 25px;
}

.cta-box {
padding: 30px 20px;
}

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

@media (max-width: 320px) {
h1 { font-size: 1.5rem; }
h2 { font-size: 1.4rem; }

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

.btn-mega, .btn-ghost, .btn-secondary {
padding: 12px 24px;
font-size: 14px;
}

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

.card-number {
font-size: 3rem;
}
}
