:root {
--primary: #6366f1;
--secondary: #0f172a;
--accent: #ec4899;
--tertiary: #8b5cf6;
--text: #1e293b;
--light: #f8fafc;
--border: #e2e8f0;
--success: #10b981;
}

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

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

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

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

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

.cookie-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--secondary);
color: white;
padding: 20px;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

.cookie-content p {
flex: 1;
min-width: 250px;
font-size: 14px;
}

.cookie-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.cookie-link {
color: var(--accent);
text-decoration: underline;
font-size: 14px;
}

.cookie-accept {
background: var(--primary);
color: white;
border: none;
padding: 10px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: background 0.3s ease;
}

.cookie-accept:hover {
background: #1d4ed8;
}

.header {
background: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 100;
}

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

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

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

.nav-link {
color: var(--text);
font-size: 14px;
font-weight: 500;
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);
}

.menu-toggle {
display: none;
background: none;
border: none;
width: 30px;
height: 24px;
position: relative;
cursor: pointer;
flex-direction: column;
justify-content: space-between;
}

.menu-toggle span {
display: block;
width: 100%;
height: 3px;
background: var(--text);
transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.mega-hero {
position: relative;
padding: 120px 0 80px;
overflow: hidden;
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
}

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

.mega-hero-content {
position: relative;
z-index: 1;
max-width: 700px;
color: white;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
}

.mega-hero-content h1 {
font-size: 3.2rem;
margin-bottom: 25px;
line-height: 1.1;
}

.mega-hero-content > p {
font-size: 1.15rem;
margin-bottom: 40px;
opacity: 0.95;
line-height: 1.7;
}

.hero-stats {
display: flex;
gap: 30px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.stat-box {
background: rgba(255,255,255,0.15);
backdrop-filter: blur(10px);
padding: 20px 30px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.2);
}

.stat-num {
font-size: 2rem;
font-weight: 700;
margin-bottom: 5px;
}

.stat-text {
font-size: 13px;
opacity: 0.9;
}

.hero-cta {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.btn-mega {
background: white;
color: var(--primary);
padding: 16px 40px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.hero-trust {
display: flex;
align-items: center;
gap: 15px;
}

.trust-avatars {
display: flex;
}

.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--tertiary));
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 700;
border: 3px solid white;
margin-left: -10px;
}

.avatar:first-child {
margin-left: 0;
}

.hero-trust p {
font-size: 13px;
opacity: 0.9;
margin: 0;
}

.hero-visual {
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
width: 500px;
height: 500px;
}

.hero-visual img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.visual-card {
position: absolute;
background: white;
padding: 15px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: flex;
align-items: center;
gap: 12px;
animation: float 3s ease-in-out infinite;
}

.card-1 {
top: 10%;
left: -80px;
animation-delay: 0s;
}

.card-2 {
top: 50%;
right: -60px;
animation-delay: 1s;
}

.card-3 {
bottom: 10%;
left: -60px;
animation-delay: 2s;
}

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

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

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

.btn {
display: inline-block;
padding: 12px 28px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}

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

.btn-primary:hover {
background: #4f46e5;
transform: translateY(-2px);
}

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

.btn-secondary:hover {
background: var(--light);
}

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

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

.btn-full {
width: 100%;
}

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

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

.section-intro.center {
text-align: center;
}

.intro-label {
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--tertiary));
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 15px;
}

.section-intro h2 {
margin-bottom: 12px;
}

.section-intro p {
color: #64748b;
font-size: 1.05rem;
}

.services-modern {
padding: 100px 0;
background: white;
}

.services-showcase {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

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

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

.service-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
margin-bottom: 15px;
}

.service-modern h3 {
margin-bottom: 15px;
font-size: 1.4rem;
}

.service-modern p {
color: #64748b;
line-height: 1.7;
margin-bottom: 20px;
}

.service-arrow {
font-size: 1.5rem;
color: var(--primary);
font-weight: 700;
transition: transform 0.3s ease;
display: inline-block;
}

.service-modern:hover .service-arrow {
transform: translateX(5px);
}

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

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

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

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

.why-features {
display: flex;
flex-direction: column;
gap: 25px;
}

.why-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.why-icon {
width: 40px;
height: 40px;
background: var(--success);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}

.why-item h4 {
margin-bottom: 8px;
}

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

.why-image {
position: relative;
}

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

.image-badge {
position: absolute;
bottom: 30px;
left: 30px;
background: white;
padding: 20px 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.badge-number {
display: block;
font-size: 2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 5px;
}

.badge-text {
font-size: 13px;
color: #64748b;
}

.process-timeline {
padding: 100px 0;
background: white;
}

.timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
text-align: left;
}

.timeline::before {
content: '';
position: absolute;
left: 20px;
top: 0;
bottom: 0;
width: 2px;
background: var(--border);
}

.timeline-item {
position: relative;
padding-left: 60px;
margin-bottom: 50px;
}

.timeline-dot {
position: absolute;
left: 11px;
top: 0;
width: 20px;
height: 20px;
background: var(--primary);
border-radius: 50%;
border: 4px solid white;
box-shadow: 0 0 0 4px var(--border);
}

.timeline-week {
display: inline-block;
background: var(--primary);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 10px;
}

.timeline-content h3 {
margin-bottom: 10px;
}

.timeline-content p {
color: #64748b;
line-height: 1.7;
}

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

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

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

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

.testimonial-stars {
color: var(--accent);
font-size: 1.2rem;
margin-bottom: 15px;
}

.testimonial-card > p {
color: #64748b;
line-height: 1.7;
margin-bottom: 25px;
font-style: italic;
}

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

.author-name {
font-weight: 600;
margin-bottom: 3px;
}

.author-title {
font-size: 13px;
color: #64748b;
}

.pricing-modern {
padding: 100px 0;
background: white;
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1100px;
margin: 0 auto;
}

.price-card {
background: white;
border: 2px solid var(--border);
border-radius: 16px;
padding: 40px 30px;
transition: all 0.3s ease;
position: relative;
}

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

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

.popular-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--primary), var(--tertiary));
color: white;
padding: 6px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.price-header {
text-align: center;
margin-bottom: 30px;
}

.price-header h3 {
margin-bottom: 15px;
font-size: 1.5rem;
}

.price-amount {
margin-bottom: 10px;
}

.currency {
font-size: 1.2rem;
vertical-align: top;
color: var(--text);
}

.amount {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
}

.price-desc {
font-size: 14px;
color: #64748b;
}

.price-features {
list-style: none;
margin-bottom: 30px;
}

.price-features li {
padding: 12px 0;
font-size: 14px;
color: #64748b;
border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
border-bottom: none;
}

.btn-price {
display: block;
text-align: center;
padding: 14px;
border-radius: 8px;
font-weight: 600;
background: var(--light);
color: var(--text);
transition: all 0.3s ease;
}

.btn-price:hover {
background: var(--border);
}

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

.btn-price.primary:hover {
background: #4f46e5;
}

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

.tech-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
max-width: 800px;
margin: 0 auto;
}

.tech-item {
background: white;
padding: 12px 24px;
border-radius: 30px;
font-size: 14px;
font-weight: 600;
color: var(--text);
border: 2px solid var(--border);
transition: all 0.3s ease;
}

.tech-item:hover {
border-color: var(--primary);
color: var(--primary);
transform: translateY(-3px);
}

.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
}

.cta-box {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.2);
border-radius: 20px;
padding: 60px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 50px;
}

.cta-content {
flex: 1;
color: white;
}

.cta-content h2 {
margin-bottom: 15px;
font-size: 2.2rem;
}

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

.cta-benefits {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.cta-benefits span {
font-size: 14px;
opacity: 0.95;
}

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

.btn-cta {
background: white;
color: var(--primary);
padding: 18px 45px;
border-radius: 50px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
display: inline-block;
margin-bottom: 15px;
}

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

.cta-note {
font-size: 13px;
opacity: 0.9;
color: white;
}

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

.section-header h2 {
margin-bottom: 12px;
}

.section-header p {
color: #64748b;
font-size: 1.05rem;
}

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

.service-card {
background: white;
padding: 35px 25px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid var(--border);
}

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

.service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), #7c3aed);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 1.8rem;
color: white;
}

.service-card h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

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

.process {
padding: 80px 0;
}

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

.process-step {
text-align: center;
padding: 25px 15px;
}

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

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

.process-step p {
font-size: 13px;
color: #64748b;
}

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

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

.features-content h2 {
margin-bottom: 30px;
}

.feature-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.feature-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.feature-item i {
color: var(--success);
font-size: 1.3rem;
margin-top: 3px;
}

.feature-item h4 {
margin-bottom: 5px;
}

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

.features-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing {
padding: 80px 0;
}

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

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

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

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

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

.pricing-header h3 {
margin-bottom: 20px;
font-size: 1.4rem;
}

.price {
margin-bottom: 25px;
}

.currency {
font-size: 1.2rem;
vertical-align: top;
}

.amount {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.pricing-features li {
padding: 10px 0;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.pricing-features i {
color: var(--success);
}

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

.cta-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.cta-content h2 {
margin-bottom: 15px;
font-size: 2rem;
}

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

.footer {
background: var(--secondary);
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.9;
}

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

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

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

.page-hero {
padding: 60px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}

.page-hero h1 {
margin-bottom: 15px;
font-size: 2.2rem;
}

.page-hero p {
font-size: 1.05rem;
opacity: 0.95;
}

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

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

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

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

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

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

.content-features {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 20px;
}

.content-feature {
display: flex;
gap: 15px;
align-items: flex-start;
}

.content-feature i {
color: var(--primary);
font-size: 1.5rem;
margin-top: 3px;
}

.content-feature h4 {
margin-bottom: 5px;
}

.content-feature p {
font-size: 14px;
margin: 0;
}

.content-image img {
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: #64748b;
}

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

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

.benefit-card {
background: white;
padding: 30px 25px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
}

.benefit-card i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 20px;
}

.benefit-card h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

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

.solutions {
padding: 80px 0;
}

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

.solutions-list {
display: flex;
flex-direction: column;
gap: 25px;
max-width: 900px;
margin: 0 auto;
}

.solution-item {
display: flex;
gap: 25px;
align-items: flex-start;
padding: 25px;
background: var(--light);
border-radius: 12px;
}

.solution-icon {
width: 60px;
height: 60px;
background: var(--primary);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
flex-shrink: 0;
}

.solution-content h3 {
margin-bottom: 10px;
}

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

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

.features-detailed-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.feature-detailed {
background: white;
padding: 25px 20px;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border);
}

.feature-detailed-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), #7c3aed);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px;
font-size: 1.5rem;
color: white;
}

.feature-detailed h3 {
margin-bottom: 10px;
font-size: 1.05rem;
}

.feature-detailed p {
font-size: 13px;
color: #64748b;
line-height: 1.5;
}

.products-showcase {
padding: 80px 0;
}

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

.product-card {
background: white;
border: 2px solid var(--border);
border-radius: 12px;
padding: 35px 25px;
text-align: center;
position: relative;
}

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

.product-header h3 {
margin-bottom: 20px;
font-size: 1.3rem;
}

.product-price {
margin-bottom: 25px;
}

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

.product-features li {
padding: 8px 0;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.product-features i {
color: var(--success);
}

.contact-hero {
padding: 60px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}

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

.contact-hero-content p {
font-size: 1.05rem;
opacity: 0.95;
max-width: 600px;
margin: 0 auto;
}

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

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

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

.contact-info-card {
background: var(--light);
padding: 25px;
border-radius: 12px;
gap: 20px;
align-items: flex-start;
}

.contact-info-icon {
width: 50px;
height: 50px;
background: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: white;
flex-shrink: 0;
}

.contact-info-card h3 {
margin-bottom: 8px;
font-size: 1.1rem;
}

.contact-info-card p {
font-size: 14px;
color: #64748b;
line-height: 1.6;
}

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

.form-header {
margin-bottom: 30px;
}

.form-header h2 {
margin-bottom: 10px;
}

.form-header p {
color: #64748b;
font-size: 14px;
}

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

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

.form-group label {
font-weight: 600;
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px 15px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: inherit;
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;
min-height: 120px;
}

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

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

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

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

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

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-container {
width: 100%;
height: 400px;
border-radius: 12px;
overflow: hidden;
}

.map-container iframe {
width: 100%;
height: 100%;
}

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

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

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

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

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

.thankyou-info {
background: var(--light);
padding: 25px;
border-radius: 12px;
margin-bottom: 30px;
text-align: left;
}

.thankyou-info p {
margin-bottom: 15px;
font-weight: 600;
}

.thankyou-info ul {
list-style-position: inside;
color: #64748b;
}

.thankyou-info li {
padding: 5px 0;
font-size: 14px;
}

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

.error-number {
font-size: 6rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

.error-content h1 {
margin-bottom: 20px;
}

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

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

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

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

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

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

.policy-block {
margin-bottom: 40px;
}

.policy-block h2 {
margin-bottom: 20px;
color: var(--primary);
}

.policy-block h3 {
margin: 25px 0 15px;
font-size: 1.15rem;
}

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

.policy-block ul {
margin: 15px 0 15px 25px;
color: #64748b;
}

.policy-block li {
margin-bottom: 8px;
line-height: 1.6;
}

@media (max-width: 1024px) {
h1 { font-size: 1.9rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
.mega-hero-content h1 { font-size: 2.5rem; }
.hero-visual { display: none; }
.services-showcase { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; gap: 50px; }
.testimonials-grid { grid-template-columns: 1fr; }
.pricing-cards { grid-template-columns: 1fr; max-width: 500px; }
.cta-box { flex-direction: column; text-align: center; padding: 40px; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.process-timeline { grid-template-columns: repeat(3, 1fr); }
.features-detailed-grid { grid-template-columns: repeat(2, 1fr); }
.products-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
.contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }
.mega-hero { padding: 80px 0 60px; }
.mega-hero-content h1 { font-size: 2rem; }
.hero-stats { gap: 15px; }
.stat-box { padding: 15px 20px; }
.hero-cta { flex-direction: column; align-items: flex-start; width: 100%; }
.btn-mega { width: 100%; text-align: center; }
.nav { display: none; 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); }
.nav.active { display: flex; }
.menu-toggle { display: flex; }
.services-grid { grid-template-columns: 1fr; }
.process-timeline { grid-template-columns: 1fr; }
.timeline::before { left: 10px; }
.timeline-item { padding-left: 50px; }
.timeline-dot { left: 1px; }
.features-grid { grid-template-columns: 1fr; gap: 40px; }
.content-grid { grid-template-columns: 1fr; gap: 40px; }
.content-grid.reverse { direction: ltr; }
.benefits-grid { grid-template-columns: 1fr; }
.features-detailed-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: 1fr; }
.footer-content { flex-direction: column; text-align: center; }
.footer-links { flex-direction: column; gap: 10px; }
.cookie-content { flex-direction: column; text-align: center; }
.cookie-buttons { flex-direction: column; width: 100%; }
.cookie-accept { width: 100%; }
}

@media (max-width: 480px) {
body { font-size: 14px; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }
.container { padding: 0 15px; }
.mega-hero { padding: 60px 0 50px; }
.mega-hero-content h1 { font-size: 1.7rem; }
.mega-hero-content > p { font-size: 0.95rem; }
.stat-box { padding: 12px 16px; }
.stat-num { font-size: 1.5rem; }
.stat-text { font-size: 12px; }
.hero-badge { font-size: 12px; padding: 6px 16px; }
.btn { width: 100%; text-align: center; }
.services-modern, .why-choose, .process-timeline, .testimonials, .pricing-modern, .tech-stack, .final-cta, .content-section, .benefits, .solutions, .features-detailed, .products-showcase, .contact-main { padding: 50px 0; }
.section-intro { margin-bottom: 35px; }
.service-modern, .benefit-card, .testimonial-card { padding: 25px 20px; }
.service-number { font-size: 2rem; }
.cta-box { padding: 30px 20px; }
.cta-content h2 { font-size: 1.6rem; }
.contact-form-section { padding: 25px 20px; }
.error-number { font-size: 4rem; }
.thankyou-icon { width: 80px; height: 80px; font-size: 2.5rem; }
.image-badge { left: 15px; bottom: 15px; padding: 15px 20px; }
.badge-number { font-size: 1.5rem; }
}

@media (max-width: 320px) {
body { font-size: 13px; }
h1 { font-size: 1.3rem; }
h2 { font-size: 1.2rem; }
.logo { font-size: 1.1rem; }
.btn { padding: 10px 20px; font-size: 13px; }
.mega-hero-content h1 { font-size: 1.5rem; }
.stat-box { padding: 10px 14px; }
.stat-num { font-size: 1.3rem; }
.service-number { font-size: 1.8rem; }
.cta-content h2 { font-size: 1.4rem; }
.amount { font-size: 2.5rem; }
}