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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--success: #10b981;
--warning: #f59e0b;
--dark: #1e293b;
--light: #f8fafc;
--text: #334155;
--border: #e2e8f0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: var(--text);
background: var(--light);
line-height: 1.6;
}

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

header {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 1rem 0;
box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
position: sticky;
top: 0;
z-index: 100;
}

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

.logo {
font-size: 1.5rem;
font-weight: 800;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

nav ul {
display: flex;
list-style: none;
gap: 2rem;
}

nav a {
color: white;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
position: relative;
}

nav a:hover {
transform: translateY(-2px);
}

nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 3px;
background: var(--accent);
transition: width 0.3s;
}

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

.nav-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}

.hero-modern {
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
min-height: 90vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}

.hero-modern::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
animation: float 20s infinite linear;
}

@keyframes float {
from { transform: translateY(0); }
to { transform: translateY(-100px); }
}

.hero-content {
text-align: center;
color: white;
position: relative;
z-index: 1;
animation: fadeInUp 1s;
max-width: 100%;
padding: 0 1rem;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 1.5rem;
border: 2px solid rgba(255,255,255,0.3);
}

.hero-modern h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
max-width: 100%;
}

.hero-modern p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.95;
max-width: 100%;
}

.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 3rem;
}

.btn-primary {
background: white;
color: var(--primary);
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: all 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-outline {
background: transparent;
color: white;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
border: 3px solid white;
transition: all 0.3s;
}

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

.hero-stats {
display: flex;
gap: 3rem;
justify-content: center;
flex-wrap: wrap;
}

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

.stat-number {
display: block;
font-size: 3rem;
font-weight: 900;
color: white;
}

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

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

.page-hero h1 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 1rem;
}

section {
padding: 5rem 2rem;
}

section h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
font-weight: 800;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.services {
background: white;
}

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

.service-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 2rem;
border-radius: 20px;
color: white;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 700;
}

.btn-secondary {
background: white;
color: var(--primary);
padding: 0.8rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
display: inline-block;
margin-top: 1rem;
transition: all 0.3s;
}

.btn-secondary:hover {
transform: scale(1.05);
}

.about {
background: var(--light);
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.about-content img {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.features {
background: white;
}

.feature-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.feature-item {
padding: 2rem;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
border-radius: 15px;
color: white;
transition: all 0.3s;
}

.feature-item:hover {
transform: scale(1.05);
}

.feature-item h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.products {
background: var(--light);
}

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

.product-card {
background: white;
padding: 2rem;
border-radius: 20px;
text-align: center;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: 3px solid transparent;
}

.product-card:hover {
transform: translateY(-10px);
border-color: var(--primary);
}

.product-card.featured {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
transform: scale(1.05);
}

.product-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 700;
}

.price {
font-size: 2.5rem;
font-weight: 900;
margin: 1rem 0;
background: linear-gradient(135deg, var(--accent), var(--warning));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.product-card.featured .price {
color: white;
-webkit-text-fill-color: white;
}

.product-card ul {
list-style: none;
margin: 1.5rem 0;
text-align: left;
}

.product-card li {
padding: 0.8rem 0;
border-bottom: 1px solid var(--border);
}

.product-card.featured li {
border-bottom-color: rgba(255,255,255,0.3);
}

.process {
background: white;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}

.step {
text-align: center;
padding: 2rem;
}

.step-number {
display: inline-block;
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: white;
border-radius: 50%;
line-height: 80px;
font-size: 2rem;
font-weight: 900;
margin-bottom: 1rem;
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.testimonials {
background: var(--light);
}

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

.testimonial-card {
background: white;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-left: 5px solid var(--accent);
transition: all 0.3s;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-card p {
font-style: italic;
margin-bottom: 1rem;
color: var(--text);
}

.testimonial-author strong {
display: block;
color: var(--primary);
font-weight: 700;
}

.technology {
background: white;
}

.tech-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.tech-content img {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.tech-category {
padding: 1.5rem;
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
border-radius: 15px;
margin-bottom: 1rem;
}

.tech-category h3 {
color: var(--primary);
font-weight: 700;
margin-bottom: 0.5rem;
}

.industries {
background: var(--light);
}

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

.industry-item {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: all 0.3s;
}

.industry-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.industry-item h3 {
color: var(--primary);
font-weight: 700;
margin-bottom: 0.5rem;
}

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

.cta-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 3rem;
align-items: center;
}

.cta-text h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: white;
text-align: left;
}

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

.cta-benefits li {
padding: 0.8rem 0;
padding-left: 2rem;
position: relative;
}

.cta-benefits li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 900;
font-size: 1.5rem;
}

.cta-form {
background: white;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-form h3 {
color: var(--primary);
margin-bottom: 1.5rem;
font-weight: 700;
}

.quick-contact input,
.quick-contact textarea {
width: 100%;
padding: 1rem;
margin-bottom: 1rem;
border: 2px solid var(--border);
border-radius: 10px;
font-family: inherit;
transition: all 0.3s;
}

.quick-contact input:focus,
.quick-contact textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.quick-contact button {
width: 100%;
}

.faq-section {
background: white;
}

.faq-section h2 {
text-align: left;
}

.faq-item {
background: var(--light);
padding: 1.5rem;
margin-bottom: 1rem;
border-radius: 15px;
border-left: 5px solid var(--primary);
transition: all 0.3s;
}

.faq-item:hover {
transform: translateX(10px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
color: var(--primary);
margin-bottom: 0.5rem;
font-weight: 700;
}

.contact-section {
background: white;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info h2 {
font-size: 2rem;
margin-bottom: 1rem;
text-align: left;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid var(--border);
border-radius: 10px;
font-family: inherit;
transition: all 0.3s;
}

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

.checkbox-group label {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 400;
}

.contact-info {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 2rem;
border-radius: 20px;
color: white;
}

.contact-info h2 {
color: white;
-webkit-text-fill-color: white;
}

.info-item {
margin-bottom: 2rem;
}

.info-item h3 {
font-weight: 700;
margin-bottom: 0.5rem;
}

.map-section {
background: var(--light);
}

#map iframe {
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-content {
background: white;
}

.policy-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.policy-content h2 {
text-align: left;
font-size: 1.8rem;
margin-top: 2rem;
}

.policy-content h3 {
color: var(--primary);
margin-top: 1.5rem;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.thankyou-container,
.error-container {
text-align: center;
color: white;
padding: 3rem;
}

.thankyou-content h1,
.error-content h2 {
font-size: 2rem;
font-weight: 900;
margin-bottom: 1rem;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.error-content h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 2rem;
}

footer {
background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
color: white;
padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
font-weight: 700;
margin-bottom: 1rem;
color: var(--accent);
}

.footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: all 0.3s;
}

.footer-section a:hover {
color: white;
transform: translateX(5px);
}

.footer-section li {
margin-bottom: 0.5rem;
}

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

.footer-links {
display: flex;
gap: 1.5rem;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--dark), #0f172a);
color: white;
padding: 1.5rem;
box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
}

.privacy-popup.show {
display: block;
animation: slideUp 0.5s;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

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

.popup-buttons {
display: flex;
gap: 1rem;
}

@media (max-width: 768px) {
.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--secondary);
flex-direction: column;
padding: 1rem;
}

.nav-menu.active {
display: flex;
}

.nav-toggle {
display: block;
}

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

.about-content,
.tech-content,
.contact-grid,
.cta-content {
grid-template-columns: 1fr;
}

section h2 {
font-size: 2rem;
}

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

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

.hero-modern {
min-height: auto;
padding: 3rem 0;
}

.hero-content {
padding: 0 1rem;
width: 100%;
max-width: 100%;
}

.hero-badge {
font-size: 0.75rem;
padding: 0.4rem 1rem;
margin-bottom: 1rem;
}

.hero-modern h1 {
font-size: 1.5rem;
margin-bottom: 1rem;
line-height: 1.3;
}

.hero-modern p {
font-size: 0.95rem;
margin-bottom: 1.5rem;
line-height: 1.5;
}

.hero-buttons {
flex-direction: column;
align-items: center;
width: 100%;
margin-bottom: 2rem;
}

.btn-primary,
.btn-outline {
width: 100%;
max-width: 280px;
padding: 0.9rem 1.5rem;
font-size: 0.95rem;
text-align: center;
display: inline-block;
margin: 0;
}

.hero-stats {
flex-direction: column;
gap: 1.5rem;
width: 100%;
}

.stat-item {
width: 100%;
}

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

.stat-label {
font-size: 0.85rem;
}

section {
padding: 2.5rem 1rem;
}

section h2 {
font-size: 1.5rem;
margin-bottom: 2rem;
line-height: 1.3;
}

.service-grid,
.product-grid,
.feature-list,
.process-steps,
.testimonial-grid,
.industry-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.service-card,
.product-card,
.feature-item,
.testimonial-card,
.industry-item {
padding: 1.5rem;
width: 100%;
max-width: 100%;
}

.service-card h3,
.product-card h3,
.feature-item h3 {
font-size: 1.2rem;
}

.btn-secondary {
width: 100%;
max-width: 200px;
text-align: center;
padding: 0.7rem 1.2rem;
font-size: 0.9rem;
}

.about-content,
.tech-content {
grid-template-columns: 1fr;
gap: 2rem;
}

.about-text p,
.tech-category p {
font-size: 0.95rem;
line-height: 1.6;
}

.price {
font-size: 2rem;
}

.product-card ul {
font-size: 0.9rem;
}

.product-card.featured {
transform: scale(1);
}

.step-number {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 1.5rem;
}

.step h3 {
font-size: 1.1rem;
}

.step p {
font-size: 0.9rem;
}

.cta-content {
grid-template-columns: 1fr;
gap: 2rem;
}

.cta-text h2 {
font-size: 1.5rem;
text-align: center;
line-height: 1.3;
}

.cta-text p {
font-size: 0.95rem;
text-align: center;
}

.cta-benefits {
text-align: left;
max-width: 100%;
}

.cta-benefits li {
font-size: 0.9rem;
}

.cta-form {
padding: 1.5rem;
width: 100%;
max-width: 100%;
}

.quick-contact input,
.quick-contact textarea {
font-size: 0.95rem;
padding: 0.9rem;
}

.contact-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.footer-content {
grid-template-columns: 1fr;
gap: 1.5rem;
text-align: center;
}

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

.footer-links {
flex-direction: column;
gap: 0.8rem;
}

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

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

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

.popup-buttons .btn-primary,
.popup-buttons a {
width: 100%;
max-width: 250px;
text-align: center;
}

.logo {
font-size: 1.1rem;
}

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

.page-hero {
padding: 2.5rem 1rem;
}

.faq-item,
.tech-category {
padding: 1.2rem;
}

.faq-item h3,
.tech-category h3 {
font-size: 1.1rem;
}

.contact-info {
padding: 1.5rem;
}

.info-item h3 {
font-size: 1.1rem;
}

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

.policy-content h2 {
font-size: 1.3rem;
}

.policy-content p,
.policy-content li {
font-size: 0.95rem;
line-height: 1.6;
}
}
