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

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

html {
scroll-behavior: smooth;
}

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

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

.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;
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;
align-items: center;
justify-content: space-between;
gap: 15px;
flex-wrap: wrap;
}

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

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

#acceptPrivacy {
background: var(--primary);
color: white;
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
transition: background 0.3s;
}

#acceptPrivacy:hover {
background: var(--secondary);
}

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

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

.logo {
font-family: 'Syne', 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;
text-decoration: none;
}

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

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

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

.nav-link {
color: var(--text);
text-decoration: none;
font-weight: 500;
font-size: 14px;
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;
right: 0;
height: 2px;
background: var(--primary);
}

.hero-mega {
position: relative;
background: linear-gradient(135deg, #0a0a1f 0%, #1a1a3e 50%, #0f0f2e 100%);
padding: 100px 0 80px;
overflow: hidden;
min-height: auto;
}

.hero-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

.hero-gradient-orb {
position: absolute;
top: 20%;
right: 10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
filter: blur(100px);
animation: orbFloat 8s ease-in-out infinite;
pointer-events: none;
}

@keyframes orbFloat {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(-50px, 50px) scale(1.1); }
}

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

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(99,102,241,0.1);
color: white;
padding: 10px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(99,102,241,0.3);
backdrop-filter: blur(10px);
transition: all 0.3s;
}

.hero-badge:hover {
background: rgba(99,102,241,0.2);
border-color: rgba(99,102,241,0.5);
transform: translateY(-2px);
}

.badge-dot {
width: 8px;
height: 8px;
background: #10b981;
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-mega-content h1 {
font-family: 'Syne', sans-serif;
font-size: 48px;
color: white;
margin-bottom: 25px;
font-weight: 700;
line-height: 1.2;
}

.text-gradient {
display: block;
background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.text-highlight {
display: block;
background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-top: 5px;
}

.hero-mega-content p {
color: rgba(255,255,255,0.8);
font-size: 17px;
margin-bottom: 30px;
line-height: 1.7;
max-width: 540px;
}

.hero-features {
display: flex;
gap: 12px;
margin-bottom: 35px;
flex-wrap: wrap;
}

.feature-tag {
background: rgba(255,255,255,0.05);
color: rgba(255,255,255,0.9);
padding: 8px 16px;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
border: 1px solid rgba(255,255,255,0.1);
transition: all 0.3s;
}

.feature-tag:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

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

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 32px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
border: 2px solid transparent;
position: relative;
overflow: hidden;
}

.btn-primary {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
}

.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}

.btn-primary:hover::before {
left: 100%;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(99,102,241,0.4);
}

.btn-outline {
background: transparent;
color: white;
border-color: rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
}

.btn-outline:hover {
background: rgba(255,255,255,0.1);
border-color: white;
transform: translateY(-3px);
}

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

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

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

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

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.stat-item {
text-align: left;
padding: 20px;
background: rgba(255,255,255,0.03);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
transition: all 0.3s;
}

.stat-item:hover {
background: rgba(255,255,255,0.06);
border-color: rgba(99,102,241,0.3);
transform: translateY(-3px);
}

.stat-number {
font-size: 36px;
font-weight: 700;
color: white;
margin-bottom: 5px;
font-family: 'Syne', sans-serif;
}

.stat-number::after {
content: '+';
color: var(--primary);
}

.stat-label {
font-size: 13px;
color: rgba(255,255,255,0.6);
line-height: 1.4;
}

.hero-mega-visual {
position: relative;
}

.visual-wrapper {
position: relative;
}

.visual-glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 120%;
height: 120%;
background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
filter: blur(60px);
animation: glowPulse 4s ease-in-out infinite;
pointer-events: none;
}

@keyframes glowPulse {
0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.visual-wrapper img {
width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 25px 70px rgba(0,0,0,0.4);
position: relative;
z-index: 1;
transition: transform 0.3s;
}

.visual-wrapper:hover img {
transform: scale(1.02);
}

.floating-card {
position: absolute;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 12px 18px;
border-radius: 10px;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 8px;
z-index: 2;
animation: float 3s ease-in-out infinite;
}

.card-1 {
top: 15%;
right: -10%;
animation-delay: 0s;
}

.card-2 {
bottom: 25%;
left: -8%;
animation-delay: 1s;
}

.card-3 {
bottom: 10%;
right: -5%;
animation-delay: 2s;
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}

.card-icon {
font-size: 20px;
}

.card-text {
font-size: 12px;
font-weight: 600;
color: var(--dark);
white-space: nowrap;
}

[data-aos] {
transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
opacity: 1;
transform: translateY(0) !important;
}

[data-aos="fade-up"] {
opacity: 1;
transform: translateY(0);
}

[data-aos="fade-left"] {
opacity: 1;
transform: translateX(0);
}

section {
padding: 70px 0;
}

h2 {
font-family: 'Syne', sans-serif;
font-size: 36px;
margin-bottom: 50px;
text-align: center;
color: var(--dark);
font-weight: 700;
}

.services-grid,
.products-grid,
.tech-grid,
.features-grid,
.tech-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.service-card,
.product-card,
.tech-card,
.feature-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
border: 1px solid var(--border);
height: 100%;
display: flex;
flex-direction: column;
}

.service-card:hover,
.product-card:hover,
.tech-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3,
.product-card h3,
.tech-card h3,
.feature-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

.service-card p,
.product-card p,
.tech-card p,
.feature-item p {
font-size: 14px;
color: var(--text);
margin-bottom: 15px;
line-height: 1.7;
flex-grow: 1;
}

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

.link-arrow:hover {
gap: 10px;
}

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

.product-card {
position: relative;
text-align: center;
justify-content: space-between;
}

.product-card.featured {
border: 2px solid var(--primary);
}

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

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

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

.tech-stack {
background: var(--dark);
color: white;
}

.tech-stack h2 {
color: white;
}

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

.tech-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 20px;
background: rgba(255,255,255,0.05);
border-radius: 10px;
transition: background 0.3s;
}

.tech-item:hover {
background: rgba(255,255,255,0.1);
}

.tech-item span {
font-size: 14px;
font-weight: 600;
}

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

.step {
text-align: center;
}

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

.step h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--dark);
}

.step p {
font-size: 14px;
color: var(--text);
}

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

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

.portfolio-item {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s;
height: 100%;
display: flex;
flex-direction: column;
}

.portfolio-item:hover {
transform: translateY(-5px);
}

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

.portfolio-info {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.portfolio-info h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--dark);
}

.portfolio-info p {
font-size: 14px;
color: var(--text);
margin-bottom: 15px;
line-height: 1.6;
flex-grow: 1;
}

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

.portfolio-tags span {
background: var(--light);
color: var(--primary);
padding: 5px 12px;
border-radius: 5px;
font-size: 12px;
font-weight: 600;
}

.testimonials {
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;
border-left: 4px solid var(--primary);
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.testimonial-text {
font-size: 15px;
line-height: 1.7;
color: var(--text);
margin-bottom: 20px;
font-style: italic;
}

.author-name {
font-weight: 600;
color: var(--dark);
font-size: 15px;
margin-bottom: 3px;
}

.author-position {
font-size: 13px;
color: var(--text);
opacity: 0.7;
}

.why-choose {
background: white;
}

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

.why-choose-content h2 {
text-align: left;
margin-bottom: 30px;
}

.why-item {
display: flex;
gap: 20px;
margin-bottom: 25px;
}

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

.why-text h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--dark);
}

.why-text p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

.why-choose-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.final-cta-content h2 {
color: white;
margin-bottom: 15px;
font-size: 38px;
}

.final-cta-content p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.95;
}

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

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

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

.footer-col p {
font-size: 13px;
opacity: 0.8;
}

.footer-col a {
display: block;
color: white;
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
opacity: 0.8;
transition: opacity 0.3s;
}

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

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

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

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

.page-hero h1 {
font-family: 'Syne', sans-serif;
font-size: 38px;
margin-bottom: 15px;
font-weight: 700;
}

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

.content-section {
padding: 60px 0;
}

.content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
align-items: center;
}

.content-text h2 {
text-align: left;
margin-bottom: 20px;
font-size: 28px;
}

.content-text p {
margin-bottom: 15px;
line-height: 1.7;
}

.content-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.contact-section {
padding: 60px 0;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 24px;
margin-bottom: 25px;
text-align: left;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.info-item h3 {
font-size: 16px;
margin-bottom: 5px;
color: var(--dark);
font-weight: 600;
}

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

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

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

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

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: inherit;
font-size: 14px;
transition: border-color 0.3s;
}

.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;
gap: 10px;
font-size: 13px;
cursor: pointer;
align-items: flex-start;
}

.checkbox-label input {
margin-top: 3px;
cursor: pointer;
}

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

.contact-form button {
cursor: pointer;
width: 100%;
}

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

.map-wrapper {
margin-top: 30px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
width: 100%;
height: 400px;
border: 0;
display: block;
}

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

.thankyou-icon {
width: 100px;
height: 100px;
background: var(--success);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}

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

.thankyou-content p,
.error-content p {
font-size: 15px;
margin-bottom: 15px;
line-height: 1.7;
}

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

.error-code {
font-size: 120px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
font-family: 'Syne', sans-serif;
}

.policy-section {
padding: 60px 0;
}

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

.policy-content h1 {
font-family: 'Syne', sans-serif;
font-size: 36px;
margin-bottom: 10px;
color: var(--dark);
}

.policy-date {
font-size: 13px;
color: var(--text);
opacity: 0.7;
margin-bottom: 30px;
}

.policy-content h2 {
font-size: 24px;
margin-top: 40px;
margin-bottom: 15px;
text-align: left;
color: var(--dark);
}

.policy-content h3 {
font-size: 18px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

.policy-content p {
margin-bottom: 15px;
line-height: 1.8;
font-size: 14px;
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: none;
}
.nav.active {
display: flex;
}
.hero-mega {
padding: 60px 0 50px;
}
.hero-mega-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-mega-content h1 {
font-size: 36px;
}
.text-gradient,
.text-highlight {
font-size: 36px;
}
.hero-features {
gap: 8px;
margin-bottom: 25px;
}
.feature-tag {
padding: 6px 14px;
font-size: 12px;
}
.hero-actions {
margin-bottom: 35px;
}
.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-top: 35px;
}
.stat-item {
padding: 15px 10px;
text-align: center;
}
.stat-number {
font-size: 26px;
}
.stat-label {
font-size: 11px;
}
.floating-card {
position: relative;
margin: 10px 0;
padding: 10px 15px;
}
.card-1,
.card-2,
.card-3 {
position: relative;
top: auto;
left: auto;
right: auto;
bottom: auto;
animation: none;
}
.visual-wrapper {
display: flex;
flex-direction: column;
gap: 10px;
}
h2 {
font-size: 28px;
margin-bottom: 40px;
}
.services-grid,
.products-grid,
.tech-list,
.portfolio-grid,
.testimonials-grid {
grid-template-columns: 1fr;
}
.tech-grid {
grid-template-columns: repeat(3, 1fr);
}
.process-steps {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.contact-wrapper,
.why-choose-grid {
grid-template-columns: 1fr;
}
.why-choose-grid {
gap: 40px;
}
.why-choose-image {
order: -1;
}
.thankyou-actions,
.error-actions {
flex-direction: column;
width: 100%;
}
.thankyou-actions a,
.error-actions a {
width: 100%;
text-align: center;
}
.error-code {
font-size: 80px;
}
.final-cta-content h2 {
font-size: 28px;
}
.final-cta {
padding: 60px 0;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.hero-mega {
padding: 50px 0 40px;
}
.hero-mega-grid {
gap: 30px;
}
.hero-mega-content h1 {
font-size: 28px;
}
.text-gradient,
.text-highlight {
font-size: 28px;
}
.hero-mega-content p {
font-size: 15px;
margin-bottom: 20px;
}
.hero-features {
flex-wrap: wrap;
margin-bottom: 20px;
}
.feature-tag {
flex: 0 0 auto;
}
.hero-stats {
grid-template-columns: 1fr;
gap: 12px;
margin-top: 25px;
}
.stat-item {
padding: 15px;
text-align: center;
}
.stat-number {
font-size: 32px;
}
.stat-label {
font-size: 12px;
}
.hero-actions {
flex-direction: column;
width: 100%;
margin-bottom: 25px;
}
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
width: 100%;
justify-content: center;
padding: 12px 24px;
font-size: 14px;
}
.floating-card {
width: 100%;
justify-content: center;
}
.card-text {
white-space: normal;
}
section {
padding: 50px 0;
}
h2 {
font-size: 24px;
margin-bottom: 30px;
}
.service-card,
.product-card,
.tech-card {
padding: 25px 20px;
}
.service-card h3,
.product-card h3,
.tech-card h3 {
font-size: 18px;
}
.product-price {
font-size: 28px;
}
.tech-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.tech-item {
padding: 15px 10px;
}
.process-steps {
grid-template-columns: 1fr;
gap: 20px;
}
.step-number {
width: 50px;
height: 50px;
font-size: 20px;
}
.portfolio-tags {
gap: 6px;
}
.portfolio-tags span {
font-size: 11px;
padding: 4px 10px;
}
.testimonial-card {
padding: 25px 20px;
}
.testimonial-text {
font-size: 14px;
}
.why-item {
gap: 15px;
margin-bottom: 20px;
}
.why-icon {
width: 45px;
height: 45px;
font-size: 16px;
}
.why-text h3 {
font-size: 16px;
}
.why-text p {
font-size: 13px;
}
.page-hero {
padding: 40px 0;
}
.page-hero h1 {
font-size: 26px;
}
.page-hero p {
font-size: 15px;
}
.content-grid {
gap: 30px;
}
.content-text h2 {
font-size: 24px;
}
.info-item {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.contact-form {
gap: 15px;
}
.policy-content h1 {
font-size: 26px;
}
.policy-content h2 {
font-size: 20px;
}
.policy-content h3 {
font-size: 16px;
}
.final-cta {
padding: 50px 0;
}
.final-cta-content h2 {
font-size: 24px;
}
.final-cta-content p {
font-size: 15px;
}
.footer-content {
grid-template-columns: 1fr;
gap: 25px;
text-align: center;
}
.footer-col a {
text-align: center;
}
}

@media (max-width: 320px) {
body {
font-size: 14px;
}
.logo {
font-size: 16px;
}
.nav-link {
font-size: 13px;
}
.hero-mega {
padding: 40px 0 30px;
}
.hero-mega-content h1 {
font-size: 24px;
}
.text-gradient,
.text-highlight {
font-size: 24px;
}
.hero-mega-content p {
font-size: 14px;
}
.feature-tag {
font-size: 11px;
padding: 5px 10px;
}
.stat-number {
font-size: 28px;
}
.stat-label {
font-size: 11px;
}
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
padding: 10px 20px;
font-size: 13px;
}
h2 {
font-size: 20px;
margin-bottom: 25px;
}
.service-card h3,
.product-card h3 {
font-size: 16px;
}
.service-card p,
.product-card p {
font-size: 13px;
}
.product-price {
font-size: 24px;
}
.tech-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.tech-item {
padding: 12px 8px;
}
.tech-item span {
font-size: 12px;
}
.step-number {
width: 45px;
height: 45px;
font-size: 18px;
}
.step h3 {
font-size: 16px;
}
.step p {
font-size: 13px;
}
.portfolio-info h3 {
font-size: 18px;
}
.portfolio-info p {
font-size: 13px;
}
.testimonial-text {
font-size: 13px;
}
.author-name {
font-size: 14px;
}
.author-position {
font-size: 12px;
}
.why-icon {
width: 40px;
height: 40px;
font-size: 14px;
}
.why-text h3 {
font-size: 15px;
}
.why-text p {
font-size: 12px;
}
.final-cta-content h2 {
font-size: 20px;
}
.final-cta-content p {
font-size: 14px;
}
.footer-col h4 {
font-size: 14px;
}
.footer-col p,
.footer-col a {
font-size: 12px;
}
}
