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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #06b6d4;
--dark: #0f172a;
--gray: #64748b;
--light: #f8fafc;
--white: #ffffff;
}

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

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

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

p { margin-bottom: 1rem; }

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;
}

.btn {
display: inline-block;
padding: 10px 24px;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
border: none;
text-align: center;
}

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

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

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

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

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

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

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

.privacy-content p {
margin: 0;
font-size: 13px;
flex: 1;
}

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

.privacy-actions a {
color: var(--accent);
font-size: 13px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

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

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

.nav a {
font-size: 14px;
font-weight: 500;
color: var(--dark);
position: relative;
}

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

.nav a.active::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
right: 0;
height: 2px;
background: var(--primary);
}

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

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

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

.hero-animation {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
overflow: hidden;
}

.float-object {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}

.obj-1 {
width: 80px;
height: 80px;
top: -80px;
left: 10%;
animation: floatDown1 15s infinite;
}

.obj-2 {
width: 60px;
height: 60px;
top: -60px;
left: 30%;
animation: floatDown2 18s infinite 2s;
}

.obj-3 {
width: 100px;
height: 100px;
top: 20%;
left: -100px;
animation: floatRight1 20s infinite;
}

.obj-4 {
width: 70px;
height: 70px;
top: 60%;
left: -70px;
animation: floatRight2 16s infinite 3s;
}

.obj-5 {
width: 90px;
height: 90px;
top: -90px;
right: 20%;
animation: floatDown3 17s infinite 1s;
}

.obj-6 {
width: 50px;
height: 50px;
top: 40%;
right: -50px;
animation: floatLeft1 19s infinite 2s;
}

@keyframes floatDown1 {
0% { transform: translateY(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.3; }
90% { opacity: 0.3; }
100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

@keyframes floatDown2 {
0% { transform: translateY(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.4; }
90% { opacity: 0.4; }
100% { transform: translateY(100vh) rotate(-360deg); opacity: 0; }
}

@keyframes floatDown3 {
0% { transform: translateY(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.35; }
90% { opacity: 0.35; }
100% { transform: translateY(100vh) rotate(180deg); opacity: 0; }
}

@keyframes floatRight1 {
0% { transform: translateX(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.3; }
90% { opacity: 0.3; }
100% { transform: translateX(calc(100vw + 100px)) rotate(360deg); opacity: 0; }
}

@keyframes floatRight2 {
0% { transform: translateX(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.4; }
90% { opacity: 0.4; }
100% { transform: translateX(calc(100vw + 70px)) rotate(-360deg); opacity: 0; }
}

@keyframes floatLeft1 {
0% { transform: translateX(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.35; }
90% { opacity: 0.35; }
100% { transform: translateX(calc(-100vw - 50px)) rotate(360deg); opacity: 0; }
}

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

.hero-left {
color: var(--white);
}

.hero-label {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 1.5rem;
letter-spacing: 0.5px;
}

.hero-left h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.1;
color: var(--white);
}

.hero-left p {
font-size: 18px;
margin-bottom: 2.5rem;
opacity: 0.95;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.hero-right {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.hero-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 16px;
padding: 28px;
text-align: center;
color: var(--white);
transition: all 0.3s ease;
}

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

.card-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.hero-card h3 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
color: var(--white);
}

.hero-card p {
font-size: 14px;
opacity: 0.9;
margin: 0;
}

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

.section-header h2 {
color: var(--dark);
margin-bottom: 0.8rem;
}

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

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

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

.service-card {
background: var(--light);
padding: 32px;
border-radius: 16px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.service-card h3 {
color: var(--dark);
margin-bottom: 0.8rem;
}

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

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

.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(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.showcase-list {
list-style: none;
margin-bottom: 2rem;
}

.showcase-list li {
padding: 12px 0;
color: var(--dark);
font-size: 15px;
border-bottom: 1px solid rgba(0,0,0,0.05);
}

.showcase-image {
position: relative;
}

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

.features {
padding: 80px 0;
}

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

.feature-card {
background: var(--white);
padding: 32px;
border-radius: 16px;
border: 2px solid var(--light);
transition: all 0.3s ease;
}

.feature-card:hover {
border-color: var(--accent);
transform: translateY(-4px);
}

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

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

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

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.process-step {
text-align: center;
padding: 28px;
background: var(--white);
border-radius: 16px;
position: relative;
}

.step-number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 18px;
margin: 0 auto 1rem;
}

.process-step h3 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
}

.process-step p {
font-size: 13px;
color: var(--gray);
margin: 0;
}

.technologies {
padding: 80px 0;
}

.tech-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.tech-item {
background: var(--light);
padding: 24px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.tech-item:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-4px);
}

.tech-item h4 {
font-size: 15px;
margin: 0;
}

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

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

.testimonial-card {
background: var(--white);
padding: 32px;
border-radius: 16px;
}

.testimonial-text {
color: var(--dark);
font-size: 14px;
margin-bottom: 1.5rem;
line-height: 1.8;
font-style: italic;
}

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

.author-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-weight: 700;
font-size: 18px;
}

.author-info h4 {
font-size: 14px;
margin-bottom: 0.2rem;
}

.author-info p {
font-size: 12px;
color: var(--gray);
margin: 0;
}

.cta-section {
padding: 80px 0;
background: var(--dark);
color: var(--white);
text-align: center;
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 16px;
margin-bottom: 2rem;
opacity: 0.9;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

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

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

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

.portfolio {
padding: 80px 0;
}

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

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

.portfolio-item:nth-child(even) {
direction: rtl;
}

.portfolio-item:nth-child(even) > * {
direction: ltr;
}

.portfolio-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.portfolio-content {
padding: 40px;
}

.portfolio-category {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 4px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
margin-bottom: 1rem;
text-transform: uppercase;
}

.portfolio-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.portfolio-content p {
color: var(--gray);
font-size: 14px;
margin-bottom: 1.5rem;
}

.portfolio-tags {
display: flex;
gap: 8px;
flex-wrap: wrap;
}

.portfolio-tags span {
background: var(--white);
color: var(--dark);
padding: 4px 12px;
border-radius: 6px;
font-size: 12px;
font-weight: 500;
}

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

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

.product-card {
background: var(--white);
border: 2px solid transparent;
border-radius: 16px;
padding: 36px;
transition: all 0.3s ease;
}

.product-card.featured {
border-color: var(--primary);
transform: scale(1.05);
}

.product-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.product-badge {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 4px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
margin-bottom: 1rem;
text-transform: uppercase;
}

.product-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
}

.product-card > p {
color: var(--gray);
font-size: 14px;
margin-bottom: 1.5rem;
}

.product-features {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 1.5rem;
}

.product-features span {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--dark);
}

.product-price {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1.5rem;
}

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

.contact-hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

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

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

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

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

.contact-form-wrapper > p {
color: var(--gray);
margin-bottom: 2rem;
}

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

.form-group {
display: flex;
flex-direction: column;
}

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

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

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

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

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

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

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

.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: 24px;
}

.contact-info-card {
background: var(--light);
padding: 32px;
border-radius: 16px;
}

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

.contact-item {
display: flex;
gap: 16px;
margin-bottom: 1.5rem;
}

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

.contact-item-icon {
width: 40px;
height: 40px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-item strong {
display: block;
font-size: 14px;
margin-bottom: 0.3rem;
}

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

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

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

.map-wrapper {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thankyou-main,
.error-main {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
padding: 80px 0;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
}

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

.thankyou-content h1 {
font-size: 2rem;
margin-bottom: 1rem;
}

.thankyou-content p {
color: var(--gray);
font-size: 16px;
margin-bottom: 2rem;
}

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

.error-code {
font-size: 8rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 1rem;
}

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

.error-content p {
color: var(--gray);
font-size: 16px;
margin-bottom: 2rem;
}

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

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

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.policy-hero p {
font-size: 14px;
opacity: 0.9;
}

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

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

.policy-text h2 {
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--dark);
}

.policy-text h3 {
margin-top: 1.5rem;
margin-bottom: 0.8rem;
color: var(--dark);
}

.policy-text p {
color: var(--gray);
margin-bottom: 1rem;
line-height: 1.8;
}

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

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

.footer-info p {
font-size: 13px;
margin: 0;
opacity: 0.9;
}

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

.footer-links a {
font-size: 12px;
opacity: 0.9;
}

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

@media (max-width: 1024px) {
.hero-content h1 { font-size: 2.5rem; }
.showcase-grid,
.portfolio-item {
grid-template-columns: 1fr;
}
.services-grid,
.features-grid,
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}
.process-grid {
grid-template-columns: repeat(2, 1fr);
}
.tech-grid {
grid-template-columns: repeat(3, 1fr);
}
.products-grid {
grid-template-columns: 1fr;
}
.product-card.featured {
transform: scale(1);
}
.contact-layout {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
.hero {
min-height: auto;
padding: 80px 0 60px;
}
.hero-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-left h1 {
font-size: 2.2rem;
}
.hero-left p {
font-size: 16px;
}
.hero-card {
padding: 24px;
}
.hero-card h3 {
font-size: 2rem;
}
.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.nav.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.menu-toggle {
display: flex;
}
.services-grid,
.features-grid,
.process-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}
.tech-grid {
grid-template-columns: repeat(2, 1fr);
}
.hero-buttons,
.thankyou-actions,
.error-actions {
flex-direction: column;
}
.btn {
width: 100%;
}
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-links {
justify-content: center;
}
.privacy-content {
flex-direction: column;
text-align: center;
}
.services,
.showcase,
.features,
.process,
.technologies,
.testimonials,
.cta-section,
.portfolio,
.products-section,
.contact-main,
.map-section,
.policy-content {
padding: 60px 0;
}
}

@media (max-width: 480px) {
.container {
padding: 0 16px;
}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.2rem; }
.hero-left h1 {
font-size: 1.8rem;
}
.hero-left p {
font-size: 14px;
}
.hero-card h3 {
font-size: 1.8rem;
}
.page-hero h1,
.contact-hero h1,
.policy-hero h1 {
font-size: 1.8rem;
}
.tech-grid {
grid-template-columns: 1fr;
}
.error-code {
font-size: 5rem;
}
.cta-section h2 {
font-size: 1.8rem;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}
body {
font-size: 13px;
}
.btn {
padding: 8px 20px;
font-size: 13px;
}
.hero-left h1 {
font-size: 1.5rem;
}
.hero-left p {
font-size: 14px;
}
}
