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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #0f172a;
--light: #f8fafc;
--gradient-start: #6366f1;
--gradient-end: #8b5cf6;
}

body {
font-family: 'Sora', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

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

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

.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 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;
flex-wrap: wrap;
}

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

.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: white;
border: none;
padding: 8px 18px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
}

.header {
background: white;
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 1000;
}

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

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

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

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

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

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

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

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

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

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
border-radius: 50%;
z-index: 0;
}

.hero-bg {
position: relative;
z-index: 1;
width: 100%;
}

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

.hero-text {
color: white;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255,255,255,0.15);
backdrop-filter: blur(10px);
padding: 8px 18px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge::before {
content: '⚡';
font-size: 16px;
}

.hero-text h1 {
font-size: 3.5rem;
margin-bottom: 25px;
line-height: 1.1;
font-weight: 700;
letter-spacing: -0.02em;
}

.hero-text > p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.8;
max-width: 90%;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-bottom: 35px;
padding: 25px;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
border: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat strong {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 5px;
background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-stat span {
font-size: 13px;
opacity: 0.9;
font-weight: 500;
}

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

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

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline {
display: inline-block;
background: transparent;
color: white;
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
border: 2px solid white;
transition: all 0.3s ease;
}

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

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

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

.hero-visual {
position: relative;
height: 100%;
min-height: 500px;
}

.hero-image-wrapper {
position: relative;
height: 100%;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 25px 60px rgba(0,0,0,0.3);
transform: perspective(1000px) rotateY(-5deg);
transition: transform 0.6s ease;
}

.hero-image-wrapper:hover {
transform: perspective(1000px) rotateY(0deg);
}

.hero-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
min-height: 500px;
}

.hero-image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
z-index: 1;
}

.hero-floating-card {
position: absolute;
bottom: 30px;
left: 30px;
right: 30px;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
padding: 25px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
z-index: 2;
color: var(--dark);
}

.hero-floating-card h3 {
font-size: 1.2rem;
margin-bottom: 8px;
color: var(--primary);
}

.hero-floating-card p {
font-size: 14px;
color: #64748b;
margin: 0;
}

section {
padding: 70px 0;
}

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

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

.section-header p {
color: #64748b;
margin-top: 10px;
}

.services-preview {
background: white;
}

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

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

.service-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-number {
display: inline-block;
background: var(--primary);
color: white;
width: 40px;
height: 40px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
margin-bottom: 15px;
}

.service-card h3 {
margin-bottom: 12px;
}

.service-card p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

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

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

.about-text p {
color: #64748b;
margin-bottom: 15px;
line-height: 1.8;
}

.about-image img {
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.methodology-section {
background: white;
}

.methodology-content {
max-width: 1000px;
margin: 0 auto;
}

.methodology-text {
text-align: center;
margin-bottom: 50px;
}

.methodology-text p {
color: #64748b;
margin-top: 10px;
}

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

.method-card {
background: var(--light);
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--accent);
}

.method-card h3 {
margin-bottom: 12px;
color: var(--dark);
}

.method-card p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

.testimonial-section {
background: var(--dark);
color: white;
}

.testimonial-section .section-label {
color: var(--accent);
}

.testimonial-section h2 {
color: white;
text-align: center;
margin-bottom: 50px;
}

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

.testimonial-card {
background: rgba(255,255,255,0.05);
padding: 30px;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
font-size: 15px;
line-height: 1.8;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
font-size: 15px;
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 13px;
opacity: 0.7;
}

.industries-section {
background: white;
}

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

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

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

.industry-item h3 {
color: var(--secondary);
margin-bottom: 10px;
}

.industry-item p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

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

.cta-content h2 {
margin-bottom: 15px;
}

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

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

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

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

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
}

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

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

.hero-breadcrumb {
font-size: 13px;
margin-bottom: 15px;
opacity: 0.8;
}

.hero-breadcrumb a {
color: var(--accent);
}

.page-hero h1 {
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
}

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

.detail-card {
background: white;
padding: 35px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}

.detail-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateY(-3px);
}

.detail-card h3 {
margin-bottom: 12px;
}

.detail-card p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

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

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

.product-card {
background: white;
padding: 40px;
border-radius: 12px;
text-align: center;
border: 2px solid transparent;
transition: all 0.3s ease;
position: relative;
}

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

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

.package-label {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
text-transform: uppercase;
}

.package-label.popular {
background: var(--accent);
color: white;
}

.product-card h3 {
margin-bottom: 15px;
}

.price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 25px;
}

.price span {
font-size: 1rem;
font-weight: 400;
color: #64748b;
}

.product-card ul {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.product-card ul li {
padding: 10px 0;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid var(--light);
}

.product-card ul li:last-child {
border-bottom: none;
}

.check {
color: #10b981;
font-weight: 700;
font-size: 16px;
}

.process-section {
background: white;
}

.process-section .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.process-visual img {
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.process-steps {
display: flex;
flex-direction: column;
gap: 25px;
}

.step {
display: flex;
gap: 20px;
}

.step-number {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--primary);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
font-weight: 700;
}

.step-content h3 {
margin-bottom: 8px;
}

.step-content p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

.analytics-overview {
background: white;
}

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

.overview-text p {
color: #64748b;
margin-bottom: 15px;
line-height: 1.8;
}

.overview-image img {
border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.analytics-services {
background: var(--light);
}

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

.analytics-card {
background: white;
padding: 35px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}

.analytics-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateY(-3px);
}

.analytics-card h3 {
margin-bottom: 12px;
}

.analytics-card p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

.benefits-section {
background: white;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.benefit-item {
background: var(--light);
padding: 30px;
border-radius: 10px;
border-top: 4px solid var(--secondary);
}

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

.benefit-item p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

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

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

.contact-info h2 {
margin-bottom: 15px;
}

.contact-info > p {
color: #64748b;
margin-bottom: 30px;
line-height: 1.7;
}

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

.info-icon {
font-size: 1.8rem;
}

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

.info-item p {
color: #64748b;
font-size: 14px;
}

.contact-team {
margin-top: 30px;
padding: 20px;
background: var(--light);
border-radius: 8px;
}

.contact-team p {
font-size: 14px;
line-height: 1.7;
color: #64748b;
}

.contact-team strong {
color: var(--dark);
}

.contact-form-wrapper {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
margin-bottom: 25px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #cbd5e1;
border-radius: 6px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-bottom: 25px;
}

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

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

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

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

.map-section {
padding: 0 0 70px 0;
}

.map-wrapper iframe {
border-radius: 12px;
width: 100%;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: var(--light);
}

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

.success-icon {
font-size: 4rem;
margin-bottom: 20px;
}

.thankyou-content h1 {
margin-bottom: 15px;
}

.thankyou-content p {
color: #64748b;
margin-bottom: 30px;
line-height: 1.7;
}

.error-content h1 {
font-size: 6rem;
color: var(--primary);
margin-bottom: 15px;
}

.error-content h2 {
margin-bottom: 15px;
}

.error-content p {
color: #64748b;
margin-bottom: 30px;
}

.policy-section {
padding: 70px 0;
background: white;
}

.policy-section h1 {
margin-bottom: 10px;
}

.policy-date {
color: #64748b;
font-size: 13px;
margin-bottom: 40px;
}

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

.policy-content h2 {
margin-top: 40px;
margin-bottom: 15px;
font-size: 1.6rem;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
color: #64748b;
line-height: 1.8;
}

.stats-showcase {
background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
color: white;
padding: 80px 0;
position: relative;
overflow: hidden;
}

.stats-showcase::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
z-index: 0;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
position: relative;
z-index: 1;
}

.stat-item {
text-align: center;
padding: 30px 20px;
background: rgba(255,255,255,0.05);
border-radius: 15px;
border: 1px solid rgba(255,255,255,0.1);
transition: all 0.3s ease;
}

.stat-item:hover {
background: rgba(255,255,255,0.08);
transform: translateY(-5px);
}

.stat-number {
font-size: 3rem;
font-weight: 700;
margin-bottom: 10px;
background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

.features-showcase {
background: white;
padding: 80px 0;
}

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

.feature-card {
background: var(--light);
padding: 35px;
border-radius: 15px;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
transition: width 0.3s ease;
}

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

.feature-card:hover::before {
width: 100%;
opacity: 0.05;
}

.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
margin-bottom: 20px;
position: relative;
z-index: 1;
}

.feature-card h3 {
margin-bottom: 12px;
position: relative;
z-index: 1;
}

.feature-card p {
color: #64748b;
font-size: 14px;
line-height: 1.7;
position: relative;
z-index: 1;
}

.cta-modern {
background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.cta-modern::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

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

.cta-modern::after {
content: '';
position: absolute;
bottom: -30%;
right: -5%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
border-radius: 50%;
animation: float 15s infinite ease-in-out reverse;
}

.cta-content-modern {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
margin: 0 auto;
color: white;
}

.cta-content-modern h2 {
font-size: 2.5rem;
margin-bottom: 20px;
line-height: 1.2;
}

.cta-content-modern p {
font-size: 1.15rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.7;
}

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.btn-white {
display: inline-block;
background: white;
color: var(--primary);
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.btn-outline-white {
display: inline-block;
background: transparent;
color: white;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid white;
transition: all 0.3s ease;
}

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

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

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

.image-content-grid.reverse {
direction: rtl;
}

.image-content-grid.reverse > * {
direction: ltr;
}

.content-image {
position: relative;
}

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

.content-text h2 {
margin-bottom: 20px;
}

.content-text p {
color: #64748b;
margin-bottom: 15px;
line-height: 1.8;
font-size: 15px;
}

.content-text ul {
list-style: none;
margin: 25px 0;
}

.content-text ul li {
padding: 12px 0;
padding-left: 30px;
position: relative;
color: #64748b;
font-size: 15px;
}

.content-text ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 700;
font-size: 18px;
}

@media (max-width: 768px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

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

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

.image-content-grid,
.image-content-grid.reverse {
grid-template-columns: 1fr;
direction: ltr;
gap: 40px;
}

.cta-content-modern h2 {
font-size: 2rem;
}

.cta-buttons {
flex-direction: column;
align-items: center;
}

.btn-white,
.btn-outline-white {
width: 100%;
max-width: 300px;
text-align: center;
}
}

@media (max-width: 480px) {
.stats-grid {
grid-template-columns: 1fr;
}

.stat-item {
padding: 25px 15px;
}

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

.feature-card {
padding: 25px;
}

.feature-icon {
width: 50px;
height: 50px;
font-size: 1.5rem;
}

.cta-content-modern h2 {
font-size: 1.7rem;
}

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

@media (max-width: 320px) {
.stats-showcase {
padding: 60px 0;
}

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

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

.features-showcase,
.image-content-section {
padding: 60px 0;
}

.feature-card {
padding: 20px;
}

.cta-modern {
padding: 60px 0;
}

.cta-content-modern h2 {
font-size: 1.5rem;
}

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

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
gap: 0;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: none;
}

.nav.active {
display: flex;
}

.nav a {
padding: 12px 0;
border-bottom: 1px solid var(--light);
}

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

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

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

.hero-text > p {
max-width: 100%;
}

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

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

.hero-visual {
min-height: 400px;
}

.hero-image-wrapper {
transform: none;
min-height: 400px;
}

.hero-image-wrapper img {
min-height: 400px;
}

.hero-floating-card {
left: 20px;
right: 20px;
bottom: 20px;
padding: 20px;
}

section {
padding: 50px 0;
}

.about-content,
.overview-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.process-section .container {
grid-template-columns: 1fr;
}

.services-grid,
.detail-grid,
.products-grid,
.analytics-grid,
.benefits-grid,
.methodology-grid,
.industries-grid {
grid-template-columns: 1fr;
}

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

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

.footer-links {
flex-direction: column;
gap: 10px;
}

.thankyou-section,
.error-section {
min-height: calc(100vh - 250px);
padding: 40px 0;
}

.error-content h1 {
font-size: 4rem;
}
}

@media (max-width: 480px) {
body {
font-size: 14px;
}

h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

.container {
padding: 0 15px;
}

.hero {
padding: 40px 0;
}

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

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

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

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

.hero-visual {
min-height: 350px;
}

.hero-image-wrapper {
min-height: 350px;
}

.hero-image-wrapper img {
min-height: 350px;
}

.hero-floating-card {
left: 15px;
right: 15px;
bottom: 15px;
padding: 18px;
}

.hero-floating-card h3 {
font-size: 1.05rem;
}

.hero-floating-card p {
font-size: 13px;
}

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

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

section {
padding: 40px 0;
}

.service-card,
.detail-card,
.analytics-card,
.method-card,
.industry-item {
padding: 25px;
}

.product-card {
padding: 30px;
}

.contact-form-wrapper {
padding: 30px;
}

.success-icon {
font-size: 3rem;
}

.error-content h1 {
font-size: 3rem;
}

.step-number {
width: 45px;
height: 45px;
font-size: 1.1rem;
}

.price {
font-size: 2rem;
}
}

@media (max-width: 320px) {
body {
font-size: 13px;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1rem; }

.container {
padding: 0 12px;
}

.logo {
font-size: 1rem;
}

.hero {
padding: 35px 0;
}

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

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

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

.hero-stats {
padding: 15px;
gap: 12px;
}

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

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

.hero-visual {
min-height: 300px;
}

.hero-image-wrapper {
min-height: 300px;
border-radius: 15px;
}

.hero-image-wrapper img {
min-height: 300px;
}

.hero-floating-card {
left: 12px;
right: 12px;
bottom: 12px;
padding: 15px;
}

.hero-floating-card h3 {
font-size: 0.95rem;
}

.hero-floating-card p {
font-size: 12px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 9px 20px;
font-size: 12px;
width: 100%;
}

.service-card,
.detail-card,
.analytics-card,
.product-card,
.method-card,
.industry-item {
padding: 18px;
}

.contact-form-wrapper {
padding: 20px;
}

.step-number {
width: 40px;
height: 40px;
font-size: 1rem;
}

.service-number {
width: 35px;
height: 35px;
font-size: 14px;
}

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

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

.price {
font-size: 1.8rem;
}

.testimonial-card,
.benefit-item {
padding: 20px;
}

.info-icon {
font-size: 1.5rem;
}

.form-group input,
.form-group textarea {
padding: 10px;
font-size: 13px;
}

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