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

:root {
--primary: #6366F1;
--secondary: #14B8A6;
--accent: #F59E0B;
--dark: #0F172A;
--dark-light: #1E293B;
--gray: #64748B;
--light: #F1F5F9;
--white: #ffffff;
}

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

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

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.4rem;
}

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-primary, .btn-secondary {
display: inline-block;
padding: 12px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease;
}

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

.btn-primary:hover {
background: linear-gradient(135deg, var(--secondary), var(--primary));
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(45, 63, 231, 0.4);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border-color: 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: 18px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

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

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

.privacy-buttons a {
color: var(--secondary);
font-size: 14px;
text-decoration: underline;
}

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

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--light);
position: relative;
z-index: 100;
}

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

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

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

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

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

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--dark);
cursor: pointer;
}

.hero {
position: relative;
background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary) 100%);
color: var(--white);
padding: 140px 0 120px;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.15;
animation: float 20s infinite ease-in-out;
}

.hero-shape.shape-1 {
width: 600px;
height: 600px;
background: var(--primary);
top: -200px;
right: -100px;
animation-delay: 0s;
}

.hero-shape.shape-2 {
width: 500px;
height: 500px;
background: var(--secondary);
bottom: -150px;
left: -100px;
animation-delay: 5s;
}

.hero-shape.shape-3 {
width: 400px;
height: 400px;
background: var(--accent);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -30px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

.hero-text {
max-width: 600px;
}

.hero-badge {
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
letter-spacing: 0.5px;
}

.hero-text h1 {
font-size: 4rem;
margin-bottom: 1.5rem;
line-height: 1.05;
background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 50%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
0%, 100% { filter: hue-rotate(0deg); }
50% { filter: hue-rotate(20deg); }
}

.hero-text p {
font-size: 1.15rem;
margin-bottom: 2.5rem;
color: var(--gray);
line-height: 1.7;
}

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

.btn-outline {
background: transparent;
color: var(--white);
border: 2px solid var(--primary);
padding: 12px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

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

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

.hero-stat {
display: flex;
flex-direction: column;
}

.hero-stat strong {
font-size: 2rem;
font-family: 'Syne', sans-serif;
color: var(--secondary);
margin-bottom: 5px;
}

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

.hero-visual {
position: relative;
height: 550px;
display: flex;
align-items: center;
justify-content: center;
}

.hero-card {
position: absolute;
background: rgba(30, 41, 59, 0.8);
border: 2px solid rgba(99, 102, 241, 0.3);
border-radius: 20px;
padding: 35px;
backdrop-filter: blur(20px);
box-shadow: 0 25px 70px rgba(99, 102, 241, 0.2);
transition: all 0.4s ease;
}

.hero-card:hover {
transform: translateY(-10px);
box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.hero-card.card-1 {
top: 50px;
left: 50px;
width: 200px;
animation: cardFloat1 6s infinite ease-in-out;
}

.hero-card.card-2 {
top: 200px;
right: 80px;
width: 220px;
animation: cardFloat2 7s infinite ease-in-out;
}

.hero-card.card-3 {
bottom: 80px;
left: 100px;
width: 190px;
animation: cardFloat3 8s infinite ease-in-out;
}

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

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

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

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

.card-text {
font-size: 15px;
font-weight: 600;
color: var(--white);
}

.section-label {
display: inline-block;
color: var(--primary);
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 15px;
}

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

.section-header.centered {
text-align: center;
max-width: 800px;
margin-left: auto;
margin-right: auto;
margin-bottom: 60px;
}

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

.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: 40px 30px;
background: var(--light);
border-radius: 16px;
transition: all 0.4s ease;
border: 2px solid transparent;
position: relative;
overflow: hidden;
}

.expertise-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transform: scaleX(0);
transition: transform 0.4s ease;
}

.expertise-item:hover::before {
transform: scaleX(1);
}

.expertise-item:hover {
transform: translateY(-8px);
background: var(--white);
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
border-color: var(--primary);
}

.expertise-number {
font-size: 3rem;
font-weight: 700;
font-family: 'Syne', sans-serif;
color: var(--primary);
opacity: 0.2;
margin-bottom: 20px;
line-height: 1;
}

.expertise-item h3 {
margin-bottom: 15px;
color: var(--dark);
}

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

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

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

.showcase-wrapper.reverse {
direction: rtl;
}

.showcase-wrapper.reverse .showcase-content,
.showcase-wrapper.reverse .showcase-image {
direction: ltr;
}

.showcase-image {
position: relative;
}

.showcase-image img {
border-radius: 20px;
box-shadow: 0 30px 80px rgba(0,0,0,0.15);
width: 100%;
height: auto;
}

.showcase-badge {
position: absolute;
bottom: 30px;
right: 30px;
background: var(--white);
padding: 25px 30px;
border-radius: 16px;
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
text-align: center;
}

.badge-number {
display: block;
font-size: 2.5rem;
font-weight: 700;
font-family: 'Syne', sans-serif;
color: var(--primary);
line-height: 1;
margin-bottom: 8px;
}

.badge-text {
display: block;
font-size: 13px;
color: var(--gray);
font-weight: 600;
}

.showcase-content h2 {
margin-bottom: 25px;
}

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

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

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

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

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

.process {
padding: 70px 0;
background: var(--dark);
color: var(--white);
text-align: center;
}

.process h2 {
margin-bottom: 3rem;
}

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

.process-step {
padding: 25px;
}

.step-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 1rem;
font-family: 'Syne', sans-serif;
}

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

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

.stats {
padding: 70px 0;
background: var(--primary);
color: var(--white);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
font-family: 'Syne', sans-serif;
margin-bottom: 0.5rem;
}

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

.cta {
padding: 0;
margin: 0;
}

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

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 25px;
}

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

.footer-info p {
font-size: 14px;
color: var(--gray);
margin-bottom: 0.5rem;
}

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

.footer-links a {
font-size: 13px;
color: var(--gray);
}

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

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid var(--dark-light);
}

.footer-bottom p {
font-size: 13px;
color: var(--gray);
}

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

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

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

.services-detail {
padding: 70px 0;
}

.services-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
}

.services-intro p {
color: var(--gray);
}

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

.service-item {
padding: 30px;
background: var(--light);
border-radius: 12px;
transition: all 0.3s ease;
}

.service-item:hover {
background: var(--white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}

.service-item h3 {
margin-bottom: 1rem;
}

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

.products {
padding: 70px 0;
background: var(--light);
text-align: center;
}

.products h2 {
margin-bottom: 1rem;
}

.products-intro {
color: var(--gray);
margin-bottom: 3rem;
}

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

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

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
border-color: var(--primary);
}

.product-card.featured {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.product-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--white);
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-header {
margin-bottom: 2rem;
}

.product-header h3 {
font-size: 1.4rem;
margin-bottom: 1rem;
}

.product-price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
font-family: 'Syne', sans-serif;
}

.product-features {
text-align: left;
margin-bottom: 2rem;
}

.product-features p {
font-size: 14px;
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 10px;
}

.product-features i {
color: var(--primary);
font-size: 16px;
}

.case-studies {
padding: 70px 0;
}

.case-study {
margin-bottom: 80px;
}

.case-study-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.case-study.reverse .case-study-content {
direction: rtl;
}

.case-study.reverse .case-study-text {
direction: ltr;
}

.case-study.reverse .case-study-image {
direction: ltr;
}

.case-meta {
display: flex;
gap: 20px;
margin-bottom: 1.5rem;
font-size: 14px;
color: var(--gray);
}

.case-meta span {
display: flex;
align-items: center;
gap: 5px;
}

.case-study-text h2 {
margin-bottom: 1rem;
}

.case-study-text h3 {
font-size: 1.1rem;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
color: var(--primary);
}

.case-study-text p {
color: var(--gray);
margin-bottom: 1rem;
font-size: 14px;
}

.case-results {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 2rem;
}

.result-item {
text-align: center;
padding: 20px;
background: var(--light);
border-radius: 8px;
}

.result-number {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
font-family: 'Syne', sans-serif;
margin-bottom: 0.5rem;
}

.result-label {
font-size: 13px;
color: var(--gray);
}

.case-study-image img {
border-radius: 12px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.contact-section {
padding: 70px 0;
position: relative;
z-index: 1;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-form-container h2,
.contact-info-container h2 {
margin-bottom: 2rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
position: relative;
z-index: 10;
}

.form-group {
display: flex;
flex-direction: column;
position: relative;
z-index: 10;
}

.form-group label {
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
pointer-events: none;
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 2px solid var(--light);
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
background: var(--white);
color: var(--dark);
position: relative;
z-index: 10;
pointer-events: auto;
}

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

.checkbox-group {
flex-direction: row;
align-items: flex-start;
position: relative;
z-index: 10;
}

.checkbox-label {
display: flex;
gap: 10px;
font-size: 13px;
cursor: pointer;
pointer-events: auto;
}

.checkbox-label input {
margin-top: 3px;
cursor: pointer;
pointer-events: auto;
position: relative;
z-index: 10;
}

.checkbox-label span {
pointer-events: auto;
}

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

.contact-form button[type="submit"] {
position: relative;
z-index: 10;
pointer-events: auto;
}

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

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

.info-item i {
font-size: 1.5rem;
color: var(--primary);
margin-top: 5px;
}

.info-item h3 {
font-size: 1rem;
margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.thankyou-content i {
font-size: 4rem;
color: var(--primary);
margin-bottom: 1.5rem;
}

.thankyou-content h1,
.error-content h1 {
margin-bottom: 1.5rem;
}

.thankyou-content p,
.error-content p {
color: var(--gray);
margin-bottom: 1.5rem;
}

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

.error-number {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 1rem;
}

.policy-hero {
background: var(--dark);
color: var(--white);
padding: 50px 0;
text-align: center;
}

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

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

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

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

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

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

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

.policy-text ul {
margin-bottom: 1.5rem;
padding-left: 25px;
}

.policy-text li {
margin-bottom: 0.8rem;
color: var(--gray);
line-height: 1.7;
}

@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.2rem;
}
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 20px;
transition: left 0.3s ease;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.nav.active {
left: 0;
}
.menu-toggle {
display: block;
}
.hero-content h1 {
font-size: 2rem;
}
.hero-content p {
font-size: 1rem;
}
.about-wrapper,
.contact-wrapper,
.case-study-content {
grid-template-columns: 1fr;
gap: 30px;
}
.case-study.reverse .case-study-content {
direction: ltr;
}
.footer-content {
grid-template-columns: 1fr;
gap: 25px;
}
.footer-links {
flex-direction: column;
gap: 10px;
}
.case-results {
grid-template-columns: 1fr;
}
.thankyou-actions,
.error-actions {
flex-direction: column;
}
.error-number {
font-size: 5rem;
}
.privacy-content {
flex-direction: column;
text-align: center;
}
.privacy-buttons {
justify-content: center;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}
h1 {
font-size: 1.7rem;
}
h2 {
font-size: 1.4rem;
}
.hero {
padding: 50px 0;
}
.features,
.about,
.process,
.stats,
.cta,
.services-detail,
.products,
.case-studies,
.contact-section,
.map-section,
.policy-content {
padding: 50px 0;
}
.btn-primary,
.btn-secondary {
padding: 10px 20px;
font-size: 13px;
}
.features-grid,
.services-list,
.products-grid {
grid-template-columns: 1fr;
}
.process-grid {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}

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

.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-top: 50px;
}

.tech-category {
padding: 35px;
background: var(--light);
border-radius: 16px;
transition: all 0.3s ease;
}

.tech-category:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tech-category h3 {
margin-bottom: 20px;
color: var(--dark);
font-size: 1.3rem;
}

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

.tech-list span {
background: var(--white);
color: var(--dark);
padding: 8px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
border: 1px solid var(--primary);
transition: all 0.3s ease;
}

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

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

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

.testimonial-card {
background: var(--white);
padding: 40px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border-left: 4px solid var(--primary);
}

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

.testimonial-text {
margin-bottom: 25px;
}

.testimonial-text p {
color: var(--gray);
line-height: 1.8;
font-style: italic;
font-size: 15px;
}

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

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

.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
color: var(--white);
text-align: center;
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(45,63,231,0.1) 0%, transparent 70%);
animation: pulse 15s infinite;
}

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

.final-cta-content {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}

.final-cta-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.final-cta-content p {
font-size: 1.1rem;
margin-bottom: 35px;
color: var(--gray);
}

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

.btn-white:hover {
background: var(--secondary);
color: var(--white);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,217,192,0.3);
}

.services-hero, .page-hero-content {
position: relative;
padding: 80px 0;
text-align: center;
}

.page-hero-content {
max-width: 800px;
margin: 0 auto;
}

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

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

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
margin-top: 50px;
}

.portfolio-item {
background: var(--white);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.4s ease;
}

.portfolio-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.portfolio-image {
width: 100%;
height: 250px;
overflow: hidden;
}

.portfolio-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
transform: scale(1.1);
}

.portfolio-content {
padding: 30px;
}

.portfolio-content h3 {
margin-bottom: 15px;
color: var(--dark);
}

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

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

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

@media (max-width: 992px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text h1 {
font-size: 2.5rem;
}

.hero-visual {
height: 400px;
}

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

.showcase-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

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

@media (max-width: 768px) {
.hero {
padding: 80px 0 60px;
min-height: auto;
}

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

.hero-text p {
font-size: 1rem;
}

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

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

.hero-visual {
display: none;
}

.expertise, .showcase, .technology, .testimonials, .final-cta, .portfolio-section {
padding: 60px 0;
}

.expertise-grid {
grid-template-columns: 1fr;
}

.tech-grid {
grid-template-columns: 1fr;
}

.testimonials-grid {
grid-template-columns: 1fr;
}

.portfolio-grid {
grid-template-columns: 1fr;
}

.final-cta-content h2 {
font-size: 1.8rem;
}

.showcase-wrapper {
gap: 30px;
}

.showcase-badge {
bottom: 20px;
right: 20px;
padding: 20px 25px;
}
}

@media (max-width: 480px) {
.hero {
padding: 60px 0 40px;
}

.hero-text h1 {
font-size: 1.75rem;
}

.hero-text p {
font-size: 0.95rem;
}

.hero-badge {
font-size: 12px;
padding: 6px 16px;
}

.hero-stat strong {
font-size: 1.5rem;
}

.expertise, .showcase, .technology, .testimonials, .final-cta, .portfolio-section {
padding: 50px 0;
}

.expertise-item {
padding: 30px 20px;
}

.expertise-number {
font-size: 2.5rem;
}

.showcase-badge {
position: static;
margin-top: 20px;
}

.tech-category {
padding: 25px 20px;
}

.testimonial-card {
padding: 30px 20px;
}

.final-cta-content h2 {
font-size: 1.6rem;
}

.final-cta-content p {
font-size: 1rem;
}

.btn-white {
padding: 12px 28px;
font-size: 14px;
}

.portfolio-content {
padding: 25px 20px;
}
}

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

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

.hero-text p {
font-size: 0.9rem;
}

.btn-primary, .btn-secondary, .btn-outline {
padding: 10px 20px;
font-size: 13px;
width: 100%;
text-align: center;
}

.expertise-item h3, .tech-category h3 {
font-size: 1.2rem;
}

.final-cta-content h2 {
font-size: 1.4rem;
}
}

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

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

.hero-text h1 {
font-size: 1.6rem;
line-height: 1.15;
margin-bottom: 1rem;
}

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

.hero-badge {
font-size: 11px;
padding: 6px 14px;
margin-bottom: 20px;
}

.hero-buttons {
gap: 10px;
margin-bottom: 30px;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-white {
padding: 11px 20px;
font-size: 12px;
width: 100%;
text-align: center;
display: block;
}

.hero-stat strong {
font-size: 1.4rem;
}

.hero-stat span {
font-size: 11px;
}

.expertise, .showcase, .technology, .testimonials, .final-cta, .portfolio-section, .process {
padding: 40px 0;
}

.section-header h2, .final-cta-content h2 {
font-size: 1.35rem;
line-height: 1.3;
}

.section-header p {
font-size: 0.875rem;
}

.expertise-item, .tech-category, .testimonial-card {
padding: 25px 15px;
}

.expertise-number {
font-size: 2rem;
margin-bottom: 15px;
}

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

.expertise-item p {
font-size: 0.875rem;
}

.showcase-content h2 {
font-size: 1.35rem;
}

.showcase-content p {
font-size: 0.875rem;
}

.tech-list span {
font-size: 11px;
padding: 6px 11px;
}

.testimonial-text p {
font-size: 0.875rem;
}

.testimonial-card {
padding: 20px 15px;
}

.portfolio-image {
height: 180px;
}

.portfolio-content {
padding: 20px 15px;
}

.portfolio-content h3 {
font-size: 1.1rem;
}

.portfolio-content p {
font-size: 0.875rem;
}

.process-step {
padding: 20px 15px;
}

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

.process-step h3 {
font-size: 1rem;
}

.process-step p {
font-size: 0.875rem;
}

.footer-content {
gap: 20px;
}

.footer-brand {
font-size: 1.05rem;
}

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

.footer-bottom p {
font-size: 11px;
}

.header {
padding: 12px 0;
}

.logo {
font-size: 1.1rem;
}

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