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

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

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

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
color: var(--dark);
}

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

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

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

.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 28px;
border-radius: 8px;
font-weight: 500;
font-size: 14px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
}

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

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

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

.btn-hero-primary {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 16px 32px;
font-size: 16px;
border-radius: 12px;
}

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

.btn-hero-secondary {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
color: var(--dark);
border: 2px solid var(--border);
padding: 16px 32px;
font-size: 16px;
border-radius: 12px;
}

.btn-hero-secondary:hover {
background: white;
border-color: white;
}

.btn-cta-large {
padding: 18px 40px;
font-size: 18px;
border-radius: 12px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
}

.btn-cta-large:hover {
transform: translateY(-3px);
box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.header {
padding: 15px 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
position: relative;
z-index: 1000;
}

.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;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

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

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

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

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

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

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

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

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--primary);
font-size: 14px;
}

.privacy-actions button {
background: white;
color: var(--dark);
padding: 8px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.mega-hero {
position: relative;
padding: 100px 0 80px;
overflow: hidden;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
}

.shape-1 {
width: 500px;
height: 500px;
background: var(--primary);
top: -200px;
right: -100px;
animation: float 20s infinite ease-in-out;
}

.shape-2 {
width: 400px;
height: 400px;
background: var(--accent);
bottom: -150px;
left: -100px;
animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
width: 300px;
height: 300px;
background: var(--secondary);
top: 50%;
left: 50%;
animation: float 25s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(30px, -30px) rotate(120deg); }
66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
padding: 8px 16px;
border-radius: 50px;
font-size: 13px;
font-weight: 500;
margin-bottom: 25px;
border: 1px solid var(--border);
}

.badge-dot {
width: 8px;
height: 8px;
background: var(--success);
border-radius: 50%;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.mega-title {
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 25px;
font-weight: 700;
}

.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.mega-subtitle {
font-size: 1.2rem;
color: var(--text);
margin-bottom: 35px;
line-height: 1.7;
}

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

.hero-stats-mini {
display: flex;
gap: 30px;
}

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

.stat-mini strong {
font-size: 1.5rem;
font-weight: 700;
color: var(--dark);
font-family: 'Space Grotesk', sans-serif;
}

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

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

.hero-image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper img {
width: 100%;
}

.floating-card {
position: absolute;
background: white;
padding: 12px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
font-weight: 500;
animation: floatCard 3s infinite ease-in-out;
}

.floating-card i {
font-size: 1.2rem;
}

.card-1 {
top: 10%;
right: -20px;
color: var(--success);
animation-delay: 0s;
}

.card-2 {
bottom: 30%;
left: -30px;
color: var(--primary);
animation-delay: 1s;
}

.card-3 {
bottom: 10%;
right: -15px;
color: var(--accent);
animation-delay: 2s;
}

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

.trust-bar {
padding: 40px 0;
background: white;
border-bottom: 1px solid var(--border);
}

.trust-text {
text-align: center;
font-size: 13px;
color: var(--text);
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}

.trust-logos {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.trust-item {
font-size: 14px;
font-weight: 500;
color: var(--text);
opacity: 0.6;
}

.value-props {
padding: 80px 0;
}

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

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

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

.section-header-center p {
color: var(--text);
font-size: 1.1rem;
}

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

.value-card {
padding: 30px;
background: white;
border-radius: 16px;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

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

.value-icon {
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
font-size: 1.5rem;
}

.icon-purple { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
.icon-blue { background: rgba(139, 92, 246, 0.1); color: var(--secondary); }
.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.icon-orange { background: rgba(251, 146, 60, 0.1); color: #fb923c; }
.icon-pink { background: rgba(236, 72, 153, 0.1); color: var(--accent); }
.icon-teal { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }

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

.value-card p {
font-size: 14px;
color: var(--text);
line-height: 1.7;
}

.feature-spotlight {
padding: 80px 0;
background: var(--light-bg);
}

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

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

.spotlight-content > p {
margin-bottom: 30px;
font-size: 1.05rem;
color: var(--text);
line-height: 1.8;
}

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

.spotlight-features li {
display: flex;
gap: 15px;
margin-bottom: 20px;
padding: 15px;
background: white;
border-radius: 12px;
border: 1px solid var(--border);
}

.spotlight-features i {
font-size: 1.5rem;
color: var(--primary);
flex-shrink: 0;
}

.spotlight-features strong {
display: block;
font-weight: 600;
color: var(--dark);
margin-bottom: 4px;
}

.spotlight-features span {
font-size: 13px;
color: var(--text);
}

.spotlight-visual {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.spotlight-visual img {
width: 100%;
}

.stats-showcase {
padding: 60px 0;
background: var(--dark);
}

.stats-wrapper {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.stat-box {
text-align: center;
padding: 30px;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
font-size: 3rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 10px;
}

.stat-label {
font-size: 15px;
color: #94a3b8;
margin-bottom: 8px;
}

.stat-growth {
font-size: 13px;
color: var(--success);
font-weight: 500;
}

.testimonials-modern {
padding: 80px 0;
}

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

.testimonial-modern {
padding: 30px;
background: white;
border-radius: 16px;
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.testimonial-modern:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
display: flex;
gap: 15px;
margin-bottom: 15px;
}

.testimonial-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 16px;
flex-shrink: 0;
}

.testimonial-info strong {
display: block;
font-weight: 600;
color: var(--dark);
margin-bottom: 4px;
}

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

.testimonial-rating {
margin-bottom: 15px;
}

.testimonial-rating i {
color: #fbbf24;
font-size: 14px;
}

.testimonial-modern p {
font-size: 14px;
line-height: 1.7;
color: var(--text);
}

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

.integration-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
margin-bottom: 40px;
}

.integration-category {
padding: 30px;
background: white;
border-radius: 16px;
border: 1px solid var(--border);
text-align: center;
}

.integration-category h3 {
font-size: 1.1rem;
margin-bottom: 10px;
color: var(--dark);
}

.integration-category p {
font-size: 13px;
color: var(--text);
}

.integration-cta {
text-align: center;
padding: 40px;
background: white;
border-radius: 16px;
border: 2px dashed var(--border);
}

.integration-cta p {
font-size: 1.1rem;
margin-bottom: 20px;
color: var(--text);
}

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

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

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

.final-cta-content > p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.1rem;
margin-bottom: 30px;
}

.cta-benefits {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 35px;
}

.cta-benefit {
display: flex;
align-items: center;
gap: 8px;
color: white;
font-size: 15px;
}

.cta-benefit i {
color: var(--success);
}

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

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

.cta-note {
margin-top: 20px;
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
}

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

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

.footer-info p {
font-size: 13px;
color: #94a3b8;
}

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

.footer-links a {
font-size: 13px;
color: #94a3b8;
}

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

.page-hero {
padding: 60px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
text-align: center;
}

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

.page-hero p {
font-size: 1.1rem;
color: var(--text);
}

.features-detailed {
padding: 80px 0;
}

.feature-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 60px;
}

.feature-row.reverse {
direction: rtl;
}

.feature-row.reverse > * {
direction: ltr;
}

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

.feature-content p {
margin-bottom: 25px;
}

.feature-benefits {
list-style: none;
}

.feature-benefits li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 15px;
}

.feature-benefits i {
color: var(--success);
font-size: 1.1rem;
}

.feature-visual {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
border-radius: 15px;
padding: 60px;
}

.feature-visual i {
font-size: 6rem;
color: var(--primary);
}

.user-experience {
padding: 80px 0;
background: var(--light-bg);
}

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

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

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

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

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

.ux-card h3 {
margin-bottom: 15px;
font-size: 1.1rem;
}

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

.download-options {
padding: 80px 0;
}

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

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

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

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

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

.platform-card h3 {
margin-bottom: 10px;
}

.platform-card p {
font-size: 14px;
color: var(--text);
margin-bottom: 8px;
}

.platform-card .version {
font-size: 13px;
color: #64748b;
margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.product-price .period {
font-size: 1rem;
color: var(--text);
}

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

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

.product-features i {
color: var(--success);
font-size: 1rem;
}

.installation-guide {
padding: 80px 0;
}

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

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

.guide-step {
text-align: center;
padding: 30px;
}

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

.guide-step h3 {
margin-bottom: 15px;
font-size: 1.2rem;
}

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

.support-resources {
padding: 80px 0;
background: var(--light-bg);
}

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

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

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

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

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

.resource-card h3 {
margin-bottom: 15px;
font-size: 1.1rem;
}

.resource-card p {
font-size: 14px;
color: var(--text);
margin-bottom: 20px;
}

.resource-card a {
color: var(--primary);
font-weight: 500;
font-size: 14px;
}

.resource-card a:hover {
text-decoration: underline;
}

.system-requirements {
padding: 80px 0;
}

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

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

.requirement-box {
padding: 30px;
background: white;
border-radius: 12px;
border: 1px solid var(--border);
}

.requirement-box h3 {
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}

.requirement-box h3 i {
color: var(--primary);
}

.requirement-box ul {
list-style: none;
}

.requirement-box li {
padding: 8px 0;
font-size: 14px;
color: var(--text);
border-bottom: 1px solid var(--border);
}

.requirement-box li:last-child {
border-bottom: none;
}

.contact-hero {
padding: 60px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
text-align: center;
}

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

.contact-hero p {
font-size: 1.1rem;
color: var(--text);
}

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

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

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

.contact-info-section > p {
margin-bottom: 30px;
}

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

.contact-method {
display: flex;
gap: 20px;
}

.contact-method i {
font-size: 1.5rem;
color: var(--primary);
flex-shrink: 0;
}

.contact-method h3 {
font-size: 1rem;
margin-bottom: 5px;
}

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

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

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

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

.form-group label {
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
resize: vertical;
}

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

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

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

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

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

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

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

.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 {
margin-bottom: 30px;
}

.thankyou-icon i {
font-size: 5rem;
color: var(--success);
}

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

.thankyou-content p,
.error-content p {
margin-bottom: 15px;
font-size: 1.1rem;
}

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

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

.policy-hero {
padding: 60px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
text-align: center;
}

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

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

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

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

.policy-section h2 {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid var(--border);
}

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

.policy-section p {
margin-bottom: 15px;
line-height: 1.8;
}

.policy-section ul,
.policy-section ol {
margin: 15px 0 15px 25px;
}

.policy-section li {
margin-bottom: 10px;
line-height: 1.8;
}

@media (max-width: 1024px) {
.mega-hero-content {
grid-template-columns: 1fr;
text-align: center;
}

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

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

.hero-stats-mini {
justify-content: center;
}

.value-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.stats-wrapper {
grid-template-columns: repeat(2, 1fr);
}

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

.integration-grid {
grid-template-columns: repeat(2, 1fr);
}
}

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

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transform: translateX(-100%);
transition: transform 0.3s ease;
gap: 15px;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: block;
}

.mega-hero {
padding: 60px 0 50px;
}

.mega-title {
font-size: 2.2rem;
}

.mega-subtitle {
font-size: 1rem;
}

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

.hero-stats-mini {
flex-direction: column;
gap: 15px;
}

.floating-card {
font-size: 12px;
padding: 8px 12px;
}

.card-2 {
left: 10px;
}

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

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

.feature-row.reverse {
direction: ltr;
}

.feature-visual {
padding: 40px;
}

.feature-visual i {
font-size: 4rem;
}

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

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

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

.guide-grid {
grid-template-columns: repeat(2, 1fr);
}

.resources-grid {
grid-template-columns: repeat(2, 1fr);
}

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

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

.contact-form-section {
padding: 30px 20px;
}

.stats-wrapper {
grid-template-columns: 1fr;
}

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

.cta-benefits {
flex-direction: column;
gap: 15px;
}

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

.privacy-actions {
flex-direction: column;
width: 100%;
}

.privacy-actions button {
width: 100%;
}

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

.footer-links {
justify-content: center;
}

.thankyou-actions,
.error-actions {
flex-direction: column;
}

.error-code {
font-size: 5rem;
}
}

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

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }
body { font-size: 14px; }

.btn {
padding: 10px 20px;
font-size: 13px;
}

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

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

.mega-title {
font-size: 1.8rem;
}

.value-card,
.ux-card,
.platform-card,
.product-card,
.resource-card,
.requirement-box {
padding: 20px;
}

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

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

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

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

.trust-logos {
gap: 20px;
}

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

.btn-cta-large {
padding: 14px 28px;
font-size: 16px;
}
}

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

h1 { font-size: 1.4rem; }
h2 { font-size: 1.2rem; }
body { font-size: 13px; }

.logo {
font-size: 1.1rem;
}

.btn {
padding: 8px 16px;
font-size: 12px;
}

.mega-title {
font-size: 1.5rem;
}

.mega-subtitle {
font-size: 0.9rem;
}

.value-icon {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.stat-value {
font-size: 1.8rem;
}

.product-price .price {
font-size: 1.8rem;
}

.step-number {
width: 50px;
height: 50px;
font-size: 1.2rem;
}

.floating-card {
display: none;
}
}
