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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #f59e0b;
--dark: #0f172a;
--dark-light: #1e293b;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
}

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

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

.header {
padding: 18px 0;
background: var(--white);
border-bottom: 1px solid var(--light);
position: sticky;
top: 0;
z-index: 100;
transition: transform 0.3s;
}

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

.logo {
font-family: 'Orbitron', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--primary);
text-decoration: none;
}

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

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

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

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

.menu-toggle span {
width: 25px;
height: 3px;
background: var(--dark);
transition: 0.3s;
border-radius: 2px;
}

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

.animated-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
animation: moveShape 20s infinite ease-in-out;
background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(124,58,237,0.1) 50%, transparent 100%);
filter: blur(40px);
}

.shape-1 {
width: 300px;
height: 300px;
top: -100px;
left: -100px;
animation-duration: 25s;
}

.shape-2 {
width: 200px;
height: 200px;
top: 50%;
right: -50px;
animation-duration: 30s;
animation-delay: 2s;
}

.shape-3 {
width: 250px;
height: 250px;
bottom: -80px;
left: 30%;
animation-duration: 28s;
animation-delay: 4s;
}

.shape-4 {
width: 150px;
height: 150px;
top: 20%;
right: 25%;
animation-duration: 22s;
animation-delay: 1s;
}

.shape-5 {
width: 180px;
height: 180px;
bottom: 30%;
left: 10%;
animation-duration: 26s;
animation-delay: 3s;
}

@keyframes moveShape {
0%, 100% {
transform: translate(0, 0) rotate(0deg);
}
25% {
transform: translate(100px, -50px) rotate(90deg);
}
50% {
transform: translate(50px, 100px) rotate(180deg);
}
75% {
transform: translate(-50px, 50px) rotate(270deg);
}
}

.hero-unique {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
text-align: center;
color: var(--white);
}

.hero-label {
display: inline-block;
padding: 8px 24px;
background: rgba(255,255,255,0.15);
border-radius: 50px;
font-size: 13px;
font-weight: 700;
margin-bottom: 30px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.25);
text-transform: uppercase;
letter-spacing: 1px;
}

.hero-main h1 {
font-family: 'Orbitron', sans-serif;
font-size: 62px;
font-weight: 900;
line-height: 1.1;
margin-bottom: 30px;
text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-main h1 .highlight {
color: var(--accent);
position: relative;
}

.hero-main p {
font-size: 20px;
line-height: 1.7;
margin-bottom: 45px;
opacity: 0.95;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

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

.btn-hero-primary {
padding: 18px 45px;
background: var(--accent);
color: var(--dark);
font-size: 17px;
font-weight: 700;
text-decoration: none;
border-radius: 10px;
transition: all 0.3s;
box-shadow: 0 6px 25px rgba(245,158,11,0.5);
}

.btn-hero-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 35px rgba(245,158,11,0.7);
}

.btn-hero-secondary {
padding: 18px 45px;
background: rgba(255,255,255,0.1);
color: var(--white);
font-size: 17px;
font-weight: 700;
text-decoration: none;
border-radius: 10px;
transition: all 0.3s;
border: 2px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
background: rgba(255,255,255,0.2);
border-color: rgba(255,255,255,0.5);
transform: translateY(-3px);
}

.hero-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
max-width: 700px;
margin: 0 auto;
}

.metric-box {
padding: 25px;
background: rgba(255,255,255,0.1);
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
transition: all 0.3s;
}

.metric-box:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-5px);
}

.metric-value {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
font-weight: 900;
color: var(--accent);
line-height: 1;
margin-bottom: 8px;
}

.metric-label {
font-size: 14px;
opacity: 0.9;
font-weight: 500;
}

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

.section-header.center {
text-align: center;
}

.section-label {
display: inline-block;
padding: 6px 16px;
background: var(--light);
color: var(--primary);
font-size: 13px;
font-weight: 700;
border-radius: 50px;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
}

.section-header h2 {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
font-weight: 800;
color: var(--dark);
margin-bottom: 15px;
line-height: 1.2;
}

.section-header p {
font-size: 18px;
color: var(--gray);
max-width: 700px;
margin: 0 auto;
}

.expertise {
padding: 100px 0;
background: var(--white);
}

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

.expertise-item {
padding: 35px;
background: var(--light);
border-radius: 12px;
transition: all 0.3s;
border: 2px solid transparent;
}

.expertise-item:hover {
transform: translateY(-8px);
border-color: var(--primary);
box-shadow: 0 15px 40px rgba(37,99,235,0.15);
}

.expertise-number {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
font-weight: 900;
color: var(--accent);
opacity: 0.3;
line-height: 1;
margin-bottom: 20px;
}

.expertise-item h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 15px;
color: var(--dark);
}

.expertise-item p {
font-size: 15px;
color: var(--gray);
line-height: 1.7;
}

.showcase {
padding: 100px 0;
background: var(--light);
}

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

.showcase-image {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.showcase-image img {
width: 100%;
height: auto;
display: block;
}

.image-badge {
position: absolute;
bottom: 25px;
left: 25px;
background: var(--accent);
color: var(--dark);
padding: 12px 24px;
border-radius: 8px;
font-weight: 700;
font-size: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.showcase-text h2 {
font-family: 'Orbitron', sans-serif;
font-size: 38px;
font-weight: 800;
margin-bottom: 25px;
line-height: 1.2;
}

.showcase-text p {
font-size: 16px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.showcase-features {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 30px;
}

.feature-check {
display: flex;
align-items: center;
gap: 12px;
}

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

.feature-check span {
font-size: 15px;
color: var(--dark);
font-weight: 500;
}

.technologies {
padding: 100px 0;
background: var(--dark);
color: var(--white);
}

.technologies .section-label {
background: rgba(255,255,255,0.1);
color: var(--accent);
}

.technologies .section-header h2 {
color: var(--white);
}

.technologies .section-header p {
color: rgba(255,255,255,0.7);
}

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

.tech-category {
padding: 30px;
background: var(--dark-light);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.1);
}

.tech-category h4 {
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
color: var(--accent);
}

.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.tech-tags span {
padding: 8px 16px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 6px;
font-size: 13px;
color: var(--white);
transition: all 0.3s;
}

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

.results {
padding: 100px 0;
background: var(--white);
}

.results-wrapper {
display: grid;
gap: 50px;
}

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

.results-text h2 {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
font-weight: 800;
margin-bottom: 20px;
}

.results-text p {
font-size: 18px;
color: var(--gray);
}

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

.result-card {
padding: 40px 30px;
background: var(--light);
border-radius: 12px;
text-align: center;
transition: all 0.3s;
border: 2px solid transparent;
}

.result-card:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.result-number {
font-family: 'Orbitron', sans-serif;
font-size: 56px;
font-weight: 900;
color: var(--primary);
line-height: 1;
margin-bottom: 10px;
}

.result-number::after {
content: '+';
color: var(--accent);
}

.result-label {
font-size: 18px;
font-weight: 700;
color: var(--dark);
margin-bottom: 10px;
}

.result-card p {
font-size: 14px;
color: var(--gray);
}

.process-flow {
padding: 100px 0;
background: var(--light);
}

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

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

.timeline-item {
position: relative;
padding-left: 80px;
margin-bottom: 50px;
}

.timeline-dot {
position: absolute;
left: 18px;
top: 0;
width: 25px;
height: 25px;
background: var(--accent);
border-radius: 50%;
border: 4px solid var(--white);
box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content h3 {
font-size: 24px;
font-weight: 700;
margin-bottom: 12px;
color: var(--dark);
}

.timeline-content p {
font-size: 16px;
color: var(--gray);
line-height: 1.7;
}

.testimonials-modern {
padding: 100px 0;
background: var(--white);
}

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

.testimonial-modern {
padding: 40px;
background: var(--light);
border-radius: 12px;
position: relative;
border-left: 4px solid var(--primary);
}

.quote-mark {
font-size: 80px;
font-family: Georgia, serif;
color: var(--accent);
opacity: 0.3;
line-height: 1;
position: absolute;
top: 20px;
left: 30px;
}

.testimonial-modern p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 25px;
position: relative;
z-index: 1;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-info strong {
display: block;
font-size: 16px;
color: var(--dark);
font-weight: 700;
margin-bottom: 3px;
}

.author-info span {
font-size: 14px;
color: var(--gray);
}

.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.cta-box {
text-align: center;
color: var(--white);
max-width: 800px;
margin: 0 auto;
}

.cta-content h2 {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
font-weight: 900;
margin-bottom: 20px;
line-height: 1.2;
}

.cta-content p {
font-size: 19px;
margin-bottom: 40px;
opacity: 0.95;
line-height: 1.7;
}

.btn-cta-large {
display: inline-block;
padding: 18px 50px;
background: var(--accent);
color: var(--dark);
font-size: 17px;
font-weight: 700;
text-decoration: none;
border-radius: 10px;
transition: all 0.3s;
box-shadow: 0 6px 25px rgba(245,158,11,0.4);
}

.btn-cta-large:hover {
transform: translateY(-4px);
box-shadow: 0 10px 35px rgba(245,158,11,0.6);
}

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

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 14px;
opacity: 0.8;
}

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

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 14px;
opacity: 0.8;
transition: all 0.3s;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 25px;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.3s;
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

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

.privacy-actions {
display: flex;
gap: 12px;
}

.btn-accept,
.btn-learn {
padding: 10px 24px;
font-size: 14px;
border-radius: 6px;
text-decoration: none;
cursor: pointer;
transition: 0.3s;
font-weight: 600;
}

.btn-accept {
background: var(--accent);
color: var(--dark);
border: none;
}

.btn-accept:hover {
background: #d97706;
}

.btn-learn {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
display: inline-block;
}

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

.services-showcase {
padding: 80px 0;
background: var(--white);
}

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

.service-visual img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-details h2 {
font-family: 'Orbitron', sans-serif;
font-size: 38px;
font-weight: 800;
margin-bottom: 25px;
}

.service-details p {
font-size: 16px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.service-highlights {
display: grid;
gap: 20px;
margin-top: 30px;
}

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

.highlight-item strong {
display: block;
font-size: 17px;
color: var(--dark);
margin-bottom: 8px;
}

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

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

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

.service-compact {
padding: 35px;
background: var(--white);
border-radius: 12px;
border: 2px solid transparent;
transition: all 0.3s;
}

.service-compact:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.service-compact-header h3 {
font-size: 22px;
font-weight: 700;
color: var(--dark);
margin-bottom: 15px;
}

.service-compact p {
font-size: 15px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 15px;
}

.pricing-modern {
padding: 100px 0;
background: var(--white);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
max-width: 1100px;
margin: 0 auto;
}

.price-card {
padding: 40px 35px;
background: var(--light);
border-radius: 16px;
border: 2px solid transparent;
transition: all 0.3s;
position: relative;
}

.price-card.featured {
border-color: var(--primary);
transform: scale(1.05);
box-shadow: 0 15px 50px rgba(37,99,235,0.2);
}

.price-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--dark);
padding: 6px 20px;
border-radius: 50px;
font-size: 12px;
font-weight: 700;
}

.price-header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 2px solid rgba(0,0,0,0.1);
}

.price-header h3 {
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
color: var(--dark);
}

.price-amount {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
font-weight: 900;
color: var(--primary);
margin-bottom: 10px;
}

.price-header p {
font-size: 14px;
color: var(--gray);
}

.price-features {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 30px;
}

.price-feature {
font-size: 15px;
color: var(--dark);
padding-left: 25px;
position: relative;
}

.price-feature::before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
}

.btn-price {
display: block;
padding: 14px 30px;
background: var(--white);
color: var(--primary);
text-align: center;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
border: 2px solid var(--primary);
transition: all 0.3s;
}

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

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

.btn-price.primary:hover {
background: var(--secondary);
border-color: var(--secondary);
}

.portfolio-featured {
padding: 80px 0;
background: var(--white);
}

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

.project-image {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.project-image img {
width: 100%;
height: auto;
display: block;
}

.project-badge {
position: absolute;
top: 25px;
right: 25px;
background: var(--accent);
color: var(--dark);
padding: 10px 20px;
border-radius: 8px;
font-weight: 700;
font-size: 14px;
}

.project-category {
display: inline-block;
padding: 6px 16px;
background: var(--light);
color: var(--primary);
font-size: 12px;
font-weight: 700;
border-radius: 50px;
margin-bottom: 15px;
text-transform: uppercase;
}

.project-content h2 {
font-family: 'Orbitron', sans-serif;
font-size: 36px;
font-weight: 800;
margin-bottom: 20px;
}

.project-content p {
font-size: 16px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 15px;
}

.project-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin: 30px 0;
padding: 25px 0;
border-top: 2px solid var(--light);
border-bottom: 2px solid var(--light);
}

.metric {
text-align: center;
}

.metric strong {
display: block;
font-family: 'Orbitron', sans-serif;
font-size: 32px;
color: var(--primary);
margin-bottom: 5px;
}

.metric span {
font-size: 13px;
color: var(--gray);
}

.project-tech {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.project-tech span {
padding: 8px 16px;
background: var(--light);
border-radius: 6px;
font-size: 13px;
color: var(--dark);
font-weight: 600;
}

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

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

.portfolio-card {
padding: 35px;
background: var(--white);
border-radius: 12px;
border: 2px solid transparent;
transition: all 0.3s;
}

.portfolio-card:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.portfolio-card-header {
margin-bottom: 20px;
}

.card-category {
display: inline-block;
padding: 5px 14px;
background: var(--light);
color: var(--primary);
font-size: 11px;
font-weight: 700;
border-radius: 50px;
margin-bottom: 12px;
text-transform: uppercase;
}

.portfolio-card-header h3 {
font-size: 22px;
font-weight: 700;
color: var(--dark);
margin-bottom: 15px;
}

.portfolio-card p {
font-size: 15px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 20px;
}

.card-results {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 20px;
padding: 20px 0;
border-top: 2px solid var(--light);
border-bottom: 2px solid var(--light);
}

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

.result-item strong {
display: block;
font-family: 'Orbitron', sans-serif;
font-size: 24px;
color: var(--primary);
margin-bottom: 5px;
}

.result-item span {
font-size: 12px;
color: var(--gray);
}

.card-tech {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.card-tech span {
padding: 6px 12px;
background: var(--light);
border-radius: 6px;
font-size: 12px;
color: var(--dark);
font-weight: 600;
}

.contact-modern {
padding: 80px 0;
background: var(--white);
}

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

.contact-info-modern h2 {
font-family: 'Orbitron', sans-serif;
font-size: 36px;
font-weight: 800;
margin-bottom: 20px;
}

.contact-info-modern p {
font-size: 16px;
color: var(--gray);
margin-bottom: 35px;
line-height: 1.7;
}

.contact-methods {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 35px;
}

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

.method-icon {
font-size: 32px;
flex-shrink: 0;
}

.method-details strong {
display: block;
font-size: 16px;
color: var(--dark);
margin-bottom: 5px;
}

.method-details p {
font-size: 15px;
color: var(--gray);
margin: 0;
}

.response-time {
padding: 25px;
background: var(--light);
border-radius: 12px;
border-left: 4px solid var(--accent);
}

.response-time strong {
display: block;
font-size: 17px;
color: var(--dark);
margin-bottom: 8px;
}

.response-time p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.contact-form-modern {
background: var(--light);
padding: 40px;
border-radius: 16px;
}

.modern-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-row {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-field {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-field label {
font-size: 14px;
font-weight: 700;
color: var(--dark);
}

.form-field input,
.form-field textarea {
padding: 14px 18px;
border: 2px solid #cbd5e1;
border-radius: 8px;
font-family: 'Outfit', sans-serif;
font-size: 15px;
transition: all 0.3s;
background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.form-checkbox input {
margin-top: 3px;
cursor: pointer;
width: 18px;
height: 18px;
}

.form-checkbox a {
color: var(--primary);
font-weight: 600;
}

.btn-submit {
padding: 16px 40px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
}

.btn-submit:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

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

.map-modern h2 {
font-family: 'Orbitron', sans-serif;
font-size: 36px;
font-weight: 800;
text-align: center;
margin-bottom: 40px;
}

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

.thankyou-section,
.error-section {
padding: 100px 0;
background: var(--white);
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 {
font-size: 80px;
margin-bottom: 25px;
}

.thankyou-content h1,
.error-content h1 {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
font-weight: 800;
margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
font-size: 18px;
color: var(--gray);
margin-bottom: 35px;
line-height: 1.7;
}

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

.error-code {
font-family: 'Orbitron', sans-serif;
font-size: 140px;
font-weight: 900;
color: var(--primary);
line-height: 1;
margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 14px 35px;
font-size: 15px;
font-weight: 700;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s;
}

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

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

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

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

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

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

.policy-content h1 {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
font-weight: 800;
margin-bottom: 15px;
}

.policy-date {
font-size: 14px;
color: var(--gray);
margin-bottom: 40px;
}

.policy-content h2 {
font-family: 'Orbitron', sans-serif;
font-size: 28px;
font-weight: 700;
margin-top: 40px;
margin-bottom: 20px;
}

.policy-content h3 {
font-size: 20px;
font-weight: 700;
margin-top: 30px;
margin-bottom: 15px;
}

.policy-content p {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.policy-content ul {
margin: 20px 0;
padding-left: 30px;
}

.policy-content li {
font-size: 15px;
color: var(--gray);
margin-bottom: 10px;
line-height: 1.7;
}

@media (max-width: 1024px) {
.hero-unique {
padding: 0 20px;
}

.hero-main h1 {
font-size: 48px;
}

.hero-main p {
font-size: 18px;
}

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

.metric-value {
font-size: 36px;
}

.hero-grid,
.showcase-content,
.service-major,
.featured-project,
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-visual {
height: 300px;
}

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 25px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
transform: translateX(-100%);
transition: transform 0.3s;
z-index: 99;
}

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

.menu-toggle {
display: flex;
}

.mega-hero {
padding: 100px 0 80px;
}

.hero-main h1 {
font-size: 38px;
}

.hero-main p {
font-size: 17px;
}

.hero-actions {
flex-direction: column;
align-items: center;
}

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

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

.metric-value {
font-size: 32px;
}

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

.section-header p {
font-size: 16px;
}

.expertise,
.showcase,
.technologies,
.results,
.process-flow,
.testimonials-modern,
.final-cta,
.services-showcase,
.services-grid-section,
.pricing-modern,
.portfolio-featured,
.portfolio-grid-section,
.contact-modern,
.map-modern {
padding: 60px 0;
}

.expertise-grid,
.tech-grid,
.results-grid,
.testimonials-slider,
.services-compact,
.pricing-grid,
.portfolio-cards {
grid-template-columns: 1fr;
}

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

.cta-content p {
font-size: 17px;
}

.project-metrics {
grid-template-columns: 1fr;
gap: 15px;
}

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

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

.footer-links {
justify-content: center;
}

.privacy-content {
flex-direction: column;
text-align: center;
}
}

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

.logo {
font-size: 18px;
}

.mega-hero {
padding: 80px 0 60px;
}

.hero-label {
font-size: 11px;
padding: 6px 18px;
}

.hero-main h1 {
font-size: 30px;
}

.hero-main p {
font-size: 16px;
}

.btn-hero-primary,
.btn-hero-secondary {
padding: 15px 35px;
font-size: 15px;
}

.metric-value {
font-size: 28px;
}

.metric-label {
font-size: 13px;
}

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

.section-header p {
font-size: 15px;
}

.expertise-item,
.service-compact,
.portfolio-card {
padding: 25px;
}

.expertise-number {
font-size: 36px;
}

.expertise-item h3 {
font-size: 19px;
}

.showcase-text h2,
.service-details h2,
.project-content h2,
.contact-info-modern h2 {
font-size: 28px;
}

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

.cta-content p {
font-size: 16px;
}

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

.result-number {
font-size: 42px;
}

.price-amount {
font-size: 38px;
}

.error-code {
font-size: 100px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 32px;
}

.policy-content h1 {
font-size: 32px;
}

.policy-content h2 {
font-size: 24px;
}

.contact-form-modern {
padding: 30px 25px;
}
}

@media (max-width: 375px) {
.hero-text h1 {
font-size: 26px;
}

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

.btn-hero,
.btn-cta-large,
.btn-submit {
padding: 12px 25px;
font-size: 14px;
}

.expertise-item,
.service-compact,
.portfolio-card,
.testimonial-modern {
padding: 20px;
}

.result-number {
font-size: 36px;
}

.price-amount {
font-size: 32px;
}

.contact-form-modern {
padding: 25px 20px;
}
}

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

.logo {
font-size: 16px;
}

.nav-link {
font-size: 14px;
}

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

.hero-label {
font-size: 10px;
padding: 5px 14px;
}

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

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

.btn-hero-primary,
.btn-hero-secondary {
padding: 13px 28px;
font-size: 14px;
}

.hero-metrics {
gap: 12px;
}

.metric-box {
padding: 18px;
}

.metric-value {
font-size: 24px;
}

.metric-label {
font-size: 12px;
}

.section-label {
font-size: 11px;
padding: 5px 14px;
}

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

.section-header p {
font-size: 14px;
}

.expertise,
.showcase,
.technologies,
.results,
.process-flow,
.testimonials-modern,
.final-cta,
.services-showcase,
.services-grid-section,
.pricing-modern,
.portfolio-featured,
.portfolio-grid-section,
.contact-modern,
.map-modern {
padding: 50px 0;
}

.expertise-item,
.service-compact,
.portfolio-card,
.testimonial-modern,
.result-card,
.price-card {
padding: 18px;
}

.expertise-number {
font-size: 32px;
}

.expertise-item h3,
.service-compact-header h3,
.portfolio-card-header h3 {
font-size: 18px;
}

.expertise-item p,
.service-compact p,
.portfolio-card p {
font-size: 14px;
}

.showcase-text h2,
.service-details h2,
.project-content h2,
.contact-info-modern h2,
.map-modern h2 {
font-size: 24px;
}

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

.cta-content p {
font-size: 15px;
}

.btn-cta-large,
.btn-submit,
.btn-primary,
.btn-secondary {
padding: 11px 22px;
font-size: 13px;
}

.result-number {
font-size: 32px;
}

.result-label {
font-size: 16px;
}

.timeline-content h3 {
font-size: 20px;
}

.timeline-content p {
font-size: 14px;
}

.price-header h3 {
font-size: 20px;
}

.price-amount {
font-size: 28px;
}

.price-feature {
font-size: 14px;
}

.btn-price {
padding: 12px 24px;
font-size: 14px;
}

.error-code {
font-size: 80px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 28px;
}

.thankyou-content p,
.error-content p {
font-size: 15px;
}

.policy-content h1 {
font-size: 28px;
}

.policy-content h2 {
font-size: 22px;
}

.policy-content h3 {
font-size: 18px;
}

.contact-form-modern {
padding: 20px 16px;
}

.form-field input,
.form-field textarea {
padding: 12px 14px;
font-size: 14px;
}

.footer {
padding: 25px 0;
}

.footer-info p,
.footer-links a {
font-size: 13px;
}

.privacy-popup {
padding: 20px 15px;
}

.privacy-content p {
font-size: 13px;
}

.btn-accept,
.btn-learn {
padding: 8px 18px;
font-size: 13px;
}
}

.status-page {
padding: 80px 0;
background: var(--white);
min-height: calc(100vh - 150px);
display: flex;
align-items: center;
}

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

.status-icon {
font-size: 80px;
margin-bottom: 25px;
width: 120px;
height: 120px;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}

.status-icon.success {
background: rgba(16,185,129,0.1);
color: #10b981;
}

.error-number {
font-family: 'Orbitron', sans-serif;
font-size: 140px;
font-weight: 900;
color: var(--primary);
line-height: 1;
margin-bottom: 25px;
}

.status-content h1 {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
font-weight: 800;
margin-bottom: 20px;
}

.status-content p {
font-size: 18px;
color: var(--gray);
margin-bottom: 35px;
line-height: 1.7;
}

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

.btn-status {
display: inline-block;
padding: 14px 35px;
font-size: 15px;
font-weight: 700;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s;
background: transparent;
color: var(--dark);
border: 2px solid var(--dark);
}

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

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

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

@media (max-width: 480px) {
.error-number {
font-size: 100px;
}

.status-content h1 {
font-size: 32px;
}

.status-content p {
font-size: 16px;
}

.status-icon {
font-size: 60px;
width: 100px;
height: 100px;
}
}

@media (max-width: 320px) {
.error-number {
font-size: 80px;
}

.status-content h1 {
font-size: 28px;
}

.status-content p {
font-size: 15px;
}

.btn-status {
padding: 11px 22px;
font-size: 13px;
}
}
