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

:root {
--primary-color: #6366f1;
--secondary-color: #4f46e5;
--accent-color: #8b5cf6;
--highlight-color: #ec4899;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--bg-white: #ffffff;
--border-color: #e5e7eb;
--success-color: #10b981;
--error-color: #ef4444;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--text-dark);
font-size: 14px;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.header-unique {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 12px 0;
position: relative;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
z-index: 999;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--bg-white);
}

.nav-main {
display: flex;
gap: 20px;
}

.nav-main a {
color: var(--bg-white);
text-decoration: none;
font-size: 13px;
font-weight: 500;
transition: opacity 0.3s;
}

.nav-main a:hover {
opacity: 0.8;
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--bg-white);
font-size: 22px;
cursor: pointer;
}

.hero-modern {
position: relative;
min-height: 600px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--highlight-color) 100%);
overflow: hidden;
padding: 80px 0;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
opacity: 0.3;
}

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

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

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
color: var(--bg-white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 16px;
backdrop-filter: blur(10px);
}

.hero-content h1 {
font-size: 42px;
line-height: 1.2;
margin-bottom: 16px;
font-weight: 800;
color: var(--bg-white);
}

.hero-content p {
font-size: 17px;
line-height: 1.6;
margin-bottom: 28px;
color: var(--bg-white);
opacity: 0.95;
}

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

.btn-hero-primary {
background: var(--bg-white);
color: var(--primary-color);
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
transition: all 0.3s;
box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

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

.btn-hero-secondary {
background: rgba(255,255,255,0.15);
color: var(--bg-white);
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
transition: all 0.3s;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
background: rgba(255,255,255,0.25);
border-color: rgba(255,255,255,0.5);
}

.hero-image {
position: relative;
}

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

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

.showcase h2 {
text-align: center;
margin-bottom: 12px;
font-size: 32px;
font-weight: 700;
color: var(--text-dark);
}

.showcase > .container > p {
text-align: center;
margin-bottom: 40px;
font-size: 16px;
color: var(--text-light);
}

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

.showcase-item {
background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    min-height: 200px; 
    flex: 1; 
}

.showcase-item:hover {
transform: translateY(-6px);
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.showcase-item img {
width: 100%;
height: 250px;
object-fit: cover;
display: block;
}

.showcase-item h3 {
padding: 20px 20px 8px;
color: #ffffff;
font-size: 20px;
font-weight: 600;
}

.showcase-item p {
padding: 0 20px 20px;
color: rgba(255, 255, 255, 0.9);
font-size: 14px;
line-height: 1.6;
}

.technology {
padding: 60px 0;
}

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

.tech-item {
background: var(--bg-white);
padding: 28px;
border-radius: 12px;
border: 2px solid var(--border-color);
transition: all 0.3s;
}

.tech-item:hover {
border-color: var(--primary-color);
box-shadow: 0 8px 24px rgba(99,102,241,0.15);
}

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

.pricing {
padding: 60px 0;
background: var(--bg-light);
text-align: center;
}

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

.pricing-card {
background: var(--bg-white);
padding: 32px;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
position: relative;
transition: transform 0.3s;
}

.pricing-card:hover {
transform: scale(1.05);
}

.pricing-card.featured {
border: 3px solid var(--primary-color);
}

.pricing-card .badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--highlight-color);
color: var(--bg-white);
padding: 4px 16px;
border-radius: 12px;
font-size: 11px;
font-weight: 700;
}

.pricing-card h3 {
margin-bottom: 16px;
color: var(--text-dark);
}

.price {
font-size: 36px;
font-weight: 800;
color: var(--primary-color);
margin: 16px 0;
}

.pricing-card p {
margin-bottom: 24px;
color: var(--text-light);
}

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

.page-hero h1 {
font-size: 28px;
margin-bottom: 8px;
font-weight: 700;
}

.page-hero p {
font-size: 15px;
opacity: 0.95;
}

.btn-primary {
display: inline-block;
background: var(--bg-white);
color: var(--primary-color);
padding: 10px 24px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
display: inline-block;
background: var(--primary-color);
color: var(--bg-white);
padding: 8px 20px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 13px;
transition: background 0.3s;
}

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

section {
padding: 40px 0;
}

h2 {
font-size: 24px;
margin-bottom: 20px;
color: var(--text-dark);
font-weight: 700;
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--text-dark);
font-weight: 600;
}

p {
margin-bottom: 12px;
color: var(--text-light);
font-size: 14px;
}

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

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

.feature-item {
background: var(--bg-white);
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-item h3 {
color: var(--primary-color);
margin-bottom: 8px;
}

.categories {
text-align: center;
}

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

.category-card {
background: var(--bg-white);
padding: 24px;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.category-card:hover {
transform: translateY(-4px);
}

.category-card h3 {
color: var(--primary-color);
margin-bottom: 10px;
}

.category-card p {
margin-bottom: 16px;
}

.benefits {
background: var(--bg-light);
}

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

.benefit-item {
background: var(--bg-white);
padding: 20px;
border-radius: 8px;
}

.process {
text-align: center;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 24px;
}

.step {
padding: 20px;
}

.step-number {
display: inline-block;
width: 40px;
height: 40px;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50%;
line-height: 40px;
font-weight: 700;
margin-bottom: 12px;
}

.testimonials {
background: var(--bg-light);
}

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

.testimonial {
background: var(--bg-white);
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
font-style: italic;
margin-bottom: 12px;
color: var(--text-dark);
}

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

.stats {
text-align: center;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px;
margin-top: 24px;
}

.stat-item {
padding: 20px;
}

.stat-number {
display: block;
font-size: 36px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 8px;
}

.stat-label {
display: block;
font-size: 14px;
color: var(--text-light);
}

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

.cta h2 {
color: var(--bg-white);
margin-bottom: 12px;
}

.cta p {
color: var(--bg-white);
opacity: 0.95;
margin-bottom: 24px;
}

.newsletter {
background: var(--bg-light);
text-align: center;
}

.products {
padding: 40px 0;
}

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

.product-card {
background: var(--bg-white);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-4px);
}

.product-image {
width: 100%;
height: 200px;
overflow: hidden;
background: var(--bg-light);
}

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

.product-info {
padding: 20px;
}

.product-info h3 {
margin-bottom: 10px;
color: var(--text-dark);
}

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

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

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

.feature-box {
background: var(--bg-white);
padding: 20px;
border-radius: 8px;
}

.cta-section {
text-align: center;
padding: 50px 0;
background: var(--bg-light);
}

.presentation-intro {
padding: 40px 0;
text-align: center;
}

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

.use-cases {
padding: 40px 0;
}

.use-case-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.use-case {
background: var(--bg-white);
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
margin-bottom: 16px;
}

.contact-form {
margin-top: 20px;
}

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

.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 13px;
color: var(--text-dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 14px;
font-family: inherit;
}

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

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 8px;
font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 4px;
}

.checkbox-group span {
font-size: 13px;
}

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

.contact-details {
margin-top: 20px;
}

.contact-item {
margin-bottom: 20px;
}

.contact-item h3 {
font-size: 16px;
margin-bottom: 6px;
}

.contact-item p {
font-size: 14px;
}

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

.map-wrapper {
margin-top: 20px;
border-radius: 8px;
overflow: hidden;
}

.policy-page {
padding: 40px 0;
}

.policy-page h1 {
font-size: 28px;
margin-bottom: 16px;
}

.policy-page h2 {
font-size: 20px;
margin-top: 24px;
margin-bottom: 12px;
}

.policy-page h3 {
font-size: 16px;
margin-top: 16px;
margin-bottom: 8px;
}

.policy-page ul {
margin-left: 20px;
margin-bottom: 12px;
}

.policy-page li {
margin-bottom: 6px;
color: var(--text-light);
font-size: 14px;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--bg-white);
text-align: center;
padding: 20px;
}

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

.thankyou-content h1,
.error-content h1 {
font-size: 36px;
margin-bottom: 16px;
color: var(--bg-white);
}

.error-content h1 {
font-size: 72px;
}

.error-content h2 {
font-size: 28px;
margin-bottom: 12px;
color: var(--bg-white);
}

.thankyou-content p,
.error-content p {
font-size: 16px;
margin-bottom: 24px;
color: var(--bg-white);
opacity: 0.95;
}

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

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

.footer-col h4 {
font-size: 16px;
margin-bottom: 12px;
color: var(--bg-white);
}

.footer-col p,
.footer-col a {
font-size: 13px;
color: rgba(255,255,255,0.8);
text-decoration: none;
display: block;
margin-bottom: 6px;
}

.footer-col a:hover {
color: var(--bg-white);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}

.footer-bottom p {
font-size: 13px;
color: rgba(255,255,255,0.7);
margin: 0;
}

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

.footer-links a {
font-size: 13px;
color: rgba(255,255,255,0.8);
text-decoration: none;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: var(--bg-white);
padding: 16px;
z-index: 1000;
display: none;
}

.privacy-popup.show {
display: block;
}

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

.privacy-content p {
margin: 0;
font-size: 13px;
color: var(--bg-white);
}

.privacy-content a {
color: var(--accent-color);
}

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

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

#decline-privacy {
background: transparent;
border: 1px solid rgba(255,255,255,0.5);
}

.privacy-content button:hover {
background: var(--secondary-color);
}

#decline-privacy:hover {
background: rgba(255,255,255,0.1);
}

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

.hero-modern .container {
grid-template-columns: 1fr;
gap: 28px;
}

.hero-content h1 {
font-size: 28px;
}

.hero-content p {
font-size: 15px;
}

.hero-buttons {
justify-content: center;
}

.hero-image {
order: -1;
}

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

.nav-main {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--secondary-color);
flex-direction: column;
padding: 12px 15px;
gap: 0;
}

.nav-main.active {
display: flex;
}

.nav-main a {
padding: 10px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-toggle {
display: block;
}

.hero h1 {
font-size: 26px;
}

.hero p {
font-size: 15px;
}

.page-hero h1 {
font-size: 24px;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.category-grid,
.product-grid,
.feature-grid,
.benefits-list,
.process-steps,
.testimonial-grid,
.stats-grid,
.features-list,
.use-case-list {
grid-template-columns: 1fr;
}

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

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

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

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

.logo {
font-size: 16px;
}

.hero-modern {
padding: 40px 0;
}

.hero-content h1 {
font-size: 24px;
}

.hero-content p {
font-size: 14px;
}

.btn-hero-primary,
.btn-hero-secondary {
font-size: 14px;
padding: 12px 24px;
}

.showcase-item img {
height: 200px;
}

.hero {
padding: 40px 0;
}

.hero h1 {
font-size: 22px;
}

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

.page-hero {
padding: 30px 0;
}

.page-hero h1 {
font-size: 20px;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 15px;
}

section {
padding: 30px 0;
}

.btn-primary,
.btn-secondary {
font-size: 13px;
padding: 8px 18px;
}

.stat-number {
font-size: 28px;
}

.thankyou-content h1,
.error-content h2 {
font-size: 22px;
}

.error-content h1 {
font-size: 56px;
}
}

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

.logo {
font-size: 14px;
}

.hero-content h1 {
font-size: 20px;
}

.hero-badge {
font-size: 11px;
padding: 5px 12px;
}

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

.showcase-item img {
height: 180px;
}

.price {
font-size: 28px;
}

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

.hero h1 {
font-size: 20px;
}

.page-hero h1 {
font-size: 18px;
}

h2 {
font-size: 16px;
}

.feature-item,
.category-card,
.benefit-item,
.product-card,
.feature-box,
.use-case,
.testimonial {
padding: 15px;
}
}
