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

:root {
--primary: #6366f1;
--secondary: #0ea5e9;
--dark: #0f172a;
--gray: #64748b;
--light: #f8fafc;
--white: #ffffff;
--success: #10b981;
}

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

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

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

p { margin-bottom: 0.8rem; }

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 1rem;
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: 1rem;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 0.85rem;
flex: 1;
min-width: 200px;
}

.privacy-actions {
display: flex;
gap: 0.8rem;
align-items: center;
}

.privacy-actions a {
color: var(--secondary);
font-size: 0.85rem;
text-decoration: underline;
}

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 0.5rem 1.2rem;
border-radius: 4px;
cursor: pointer;
font-size: 0.85rem;
font-weight: 500;
}

.header {
background: var(--dark);
padding: 0.8rem 0;
position: relative;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.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(--white);
letter-spacing: -0.5px;
}

.nav {
display: flex;
gap: 1.5rem;
}

.nav a {
color: var(--light);
font-size: 0.9rem;
font-weight: 400;
position: relative;
}

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

.nav a::after {
content: '';
position: absolute;
bottom: -4px;
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;
color: var(--white);
font-size: 1.3rem;
cursor: pointer;
}

.mega-hero {
background: var(--dark);
color: var(--white);
padding: 5rem 0 4rem;
position: relative;
overflow: hidden;
min-height: 600px;
display: flex;
align-items: center;
}

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

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

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

.shape-3 {
width: 300px;
height: 300px;
background: var(--primary);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: pulse 3s infinite ease-in-out, colorShift 2.5s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
25% { transform: translateY(-30px) rotate(90deg); opacity: 0.25; }
50% { transform: translateY(-50px) rotate(180deg); opacity: 0.2; }
75% { transform: translateY(-30px) rotate(270deg); opacity: 0.25; }
}

@keyframes pulse {
0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
33% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.25; }
66% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
}

@keyframes colorShift {
0% { background: var(--primary); }
33% { background: var(--secondary); }
66% { background: var(--primary); }
100% { background: var(--secondary); }
}

.mega-hero-content {
position: relative;
z-index: 2;
max-width: 700px;
text-align: center;
margin: 0 auto;
}

.hero-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
border: 1px solid rgba(99, 102, 241, 0.3);
color: var(--white);
padding: 0.4rem 1rem;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 500;
margin-bottom: 1.5rem;
}

.mega-hero-content h1 {
font-size: 3rem;
margin-bottom: 1.2rem;
line-height: 1.1;
font-weight: 700;
}

.mega-hero-content > p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
line-height: 1.6;
}

.hero-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 3rem;
flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
padding: 0.9rem 2rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
}

.btn-hero-primary {
background: var(--primary);
color: var(--white);
box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
}

.btn-hero-secondary {
background: transparent;
color: var(--white);
border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.hero-stats-mini {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
}

.stat-mini {
text-align: center;
}

.stat-mini strong {
display: block;
font-size: 1.8rem;
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
margin-bottom: 0.2rem;
}

.stat-mini span {
font-size: 0.85rem;
opacity: 0.8;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 0.7rem 1.5rem;
border-radius: 6px;
font-weight: 500;
font-size: 0.9rem;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

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

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

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

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

section {
padding: 3rem 0;
}

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

.features h2 {
text-align: center;
margin-bottom: 2rem;
color: var(--dark);
}

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

.feature-card {
background: var(--white);
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.feature-card i {
font-size: 2rem;
color: var(--primary);
margin-bottom: 0.8rem;
}

.feature-card h3 {
color: var(--dark);
margin-bottom: 0.6rem;
}

.feature-card p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.showcase {
background: var(--white);
}

.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
}

.showcase-content img {
width: 100%;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.showcase-text p {
color: var(--gray);
margin-bottom: 1.2rem;
}

.showcase-list {
list-style: none;
}

.showcase-list li {
display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: 0.6rem;
font-size: 0.9rem;
}

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

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

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

.stat-item {
text-align: center;
}

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

.stat-number {
display: block;
font-size: 2rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 0.3rem;
}

.stat-label {
display: block;
font-size: 0.9rem;
opacity: 0.8;
}

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

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

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

.product-card {
background: var(--white);
border-radius: 8px;
padding: 1.8rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
position: relative;
transition: transform 0.3s ease;
}

.product-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

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

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

.product-price {
display: flex;
align-items: baseline;
margin-bottom: 1.5rem;
}

.product-price .currency {
font-size: 1.2rem;
font-weight: 600;
}

.product-price .amount {
font-size: 2.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin: 0 0.2rem;
}

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

.product-features {
list-style: none;
margin-bottom: 1.5rem;
}

.product-features li {
display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: 0.6rem;
font-size: 0.9rem;
}

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

.product-card .btn-primary,
.product-card .btn-secondary {
width: 100%;
text-align: center;
}

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

.platform-showcase {
padding: 4rem 0;
background: var(--white);
}

.showcase-header {
text-align: center;
max-width: 700px;
margin: 0 auto 3rem;
}

.showcase-header h2 {
font-size: 2.2rem;
margin-bottom: 1rem;
}

.showcase-header p {
color: var(--gray);
font-size: 1.05rem;
}

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

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

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

.platform-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.2rem;
}

.platform-icon i {
font-size: 1.8rem;
color: var(--white);
}

.platform-item h3 {
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.platform-item p {
color: var(--gray);
font-size: 0.9rem;
line-height: 1.6;
margin: 0;
}

.visual-demo {
padding: 4rem 0;
background: var(--light);
}

.demo-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.demo-content h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.demo-content p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.feature-checklist {
list-style: none;
margin-bottom: 2rem;
}

.feature-checklist li {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.8rem;
font-size: 0.95rem;
}

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

.btn-link {
color: var(--primary);
font-weight: 600;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.btn-link:hover {
gap: 0.8rem;
}

.btn-link i {
font-size: 0.85rem;
}

.demo-visual img {
width: 100%;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intelligence-section {
padding: 4rem 0;
background: var(--white);
}

.intelligence-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.intelligence-visual img {
width: 100%;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intelligence-content h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.intelligence-content p {
color: var(--gray);
margin-bottom: 2rem;
line-height: 1.7;
}

.intelligence-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}

.metric-box {
background: var(--light);
padding: 1.2rem;
border-radius: 8px;
text-align: center;
}

.metric-value {
font-size: 2rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
color: var(--primary);
margin-bottom: 0.3rem;
}

.metric-label {
font-size: 0.8rem;
color: var(--gray);
}

.performance-metrics {
padding: 4rem 0;
background: var(--dark);
color: var(--white);
}

.metrics-header {
text-align: center;
margin-bottom: 3rem;
}

.metrics-header h2 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

.metrics-header p {
opacity: 0.8;
font-size: 1.05rem;
}

.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem;
}

.metric-card {
text-align: center;
padding: 2rem;
background: rgba(255,255,255,0.05);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.1);
}

.metric-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
}

.metric-icon i {
font-size: 1.5rem;
}

.metric-number {
font-size: 2.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 0.5rem;
}

.metric-text {
font-size: 0.9rem;
opacity: 0.8;
}

.realtime-demo {
padding: 4rem 0;
background: var(--light);
}

.realtime-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.realtime-text h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.realtime-text > p {
color: var(--gray);
margin-bottom: 2rem;
line-height: 1.7;
}

.realtime-features {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.realtime-feature {
display: flex;
gap: 1rem;
align-items: flex-start;
}

.realtime-feature i {
font-size: 1.5rem;
color: var(--primary);
margin-top: 0.2rem;
}

.realtime-feature strong {
display: block;
margin-bottom: 0.3rem;
font-size: 1rem;
}

.realtime-feature p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.realtime-visual img {
width: 100%;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-plans {
padding: 4rem 0;
background: var(--white);
}

.pricing-header {
text-align: center;
margin-bottom: 3rem;
}

.pricing-header h2 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

.pricing-header p {
color: var(--gray);
font-size: 1.05rem;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1100px;
margin: 0 auto;
}

.price-card {
background: var(--white);
border: 2px solid #e2e8f0;
border-radius: 12px;
padding: 2rem;
transition: all 0.3s ease;
position: relative;
}

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

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

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

.price-header {
margin-bottom: 1.5rem;
}

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

.price-header p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.price-amount {
display: flex;
align-items: baseline;
margin-bottom: 2rem;
}

.price-amount .currency {
font-size: 1.2rem;
font-weight: 600;
}

.price-amount .amount {
font-size: 3rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin: 0 0.3rem;
}

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

.price-features {
list-style: none;
margin-bottom: 2rem;
}

.price-features li {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.8rem;
font-size: 0.9rem;
}

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

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

.btn-price:hover {
background: #e2e8f0;
}

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

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

.testimonials {
padding: 4rem 0;
background: var(--light);
}

.testimonials-header {
text-align: center;
margin-bottom: 3rem;
}

.testimonials-header h2 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

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

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

.testimonial-content {
margin-bottom: 1.5rem;
}

.testimonial-content p {
color: var(--gray);
font-style: italic;
line-height: 1.7;
margin: 0;
}

.testimonial-author strong {
display: block;
font-size: 1rem;
margin-bottom: 0.2rem;
}

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

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

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

.final-cta-content > p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-actions {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
padding: 0.9rem 2rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
}

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

.btn-cta-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 30px rgba(255,255,255,0.3);
}

.btn-cta-secondary {
background: transparent;
color: var(--white);
border: 2px solid rgba(255,255,255,0.5);
}

.btn-cta-secondary:hover {
background: rgba(255,255,255,0.1);
border-color: var(--white);
}

.cta-note {
font-size: 0.85rem;
opacity: 0.8;
margin: 0;
}

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

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

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

.content-section {
padding: 3rem 0;
}

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

.content-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
}

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

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

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

.content-text p {
color: var(--gray);
margin-bottom: 1rem;
}

.content-visual {
display: flex;
align-items: center;
justify-content: center;
}

.content-visual i {
font-size: 10rem;
color: var(--primary);
opacity: 0.2;
}

.content-visual img {
width: 100%;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.capabilities {
background: var(--white);
}

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

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

.capability-item {
padding: 1.5rem;
background: var(--light);
border-radius: 8px;
transition: transform 0.3s ease;
}

.capability-item:hover {
transform: translateY(-4px);
}

.capability-item i {
font-size: 2rem;
color: var(--secondary);
margin-bottom: 0.8rem;
}

.capability-item h3 {
margin-bottom: 0.6rem;
}

.capability-item p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.workflow {
background: var(--light);
}

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

.workflow-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}

.workflow-step {
text-align: center;
padding: 1.5rem;
background: var(--white);
border-radius: 8px;
position: relative;
}

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

.workflow-step h3 {
margin-bottom: 0.6rem;
}

.workflow-step p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.advanced-features {
background: var(--white);
}

.advanced-features h2 {
text-align: center;
margin-bottom: 2rem;
}

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

.advanced-card {
background: var(--light);
padding: 1.5rem;
border-radius: 8px;
transition: transform 0.3s ease;
}

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

.advanced-card i {
font-size: 2rem;
color: var(--accent);
margin-bottom: 0.8rem;
}

.advanced-card h3 {
margin-bottom: 0.6rem;
}

.advanced-card p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.ml-capabilities {
background: var(--light);
}

.ml-capabilities h2 {
text-align: center;
margin-bottom: 2rem;
}

.ml-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
}

.ml-text h3 {
margin-bottom: 1rem;
}

.ml-text p {
color: var(--gray);
margin-bottom: 1.2rem;
}

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

.feature-list li {
display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: 0.6rem;
font-size: 0.9rem;
}

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

.ml-visual {
display: flex;
align-items: center;
justify-content: center;
}

.ml-visual i {
font-size: 10rem;
color: var(--accent);
opacity: 0.2;
}

.use-cases {
background: var(--white);
}

.use-cases h2 {
text-align: center;
margin-bottom: 2rem;
}

.use-cases-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}

.use-case {
padding: 1.5rem;
background: var(--light);
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.use-case h3 {
margin-bottom: 0.6rem;
color: var(--dark);
}

.use-case p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}

.cta-section {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: var(--white);
text-align: center;
padding: 3rem 0;
}

.cta-section h2 {
font-size: 2rem;
margin-bottom: 0.8rem;
}

.cta-section p {
font-size: 1rem;
margin-bottom: 1.5rem;
opacity: 0.95;
}

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

.contact-hero h1 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}

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

.contact-main {
padding: 3rem 0;
background: var(--light);
}

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

.contact-form-wrapper {
background: var(--white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
margin-bottom: 1.5rem;
}

.form-group {
margin-bottom: 1.2rem;
}

.form-group label {
display: block;
margin-bottom: 0.4rem;
font-weight: 500;
font-size: 0.9rem;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.7rem;
border: 1px solid #cbd5e1;
border-radius: 4px;
font-family: 'Sora', sans-serif;
font-size: 0.9rem;
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: 1.5rem;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 0.6rem;
font-size: 0.85rem;
cursor: pointer;
}

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

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

.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.contact-info-card {
background: var(--white);
padding: 1.8rem;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
margin-bottom: 1.2rem;
color: var(--dark);
}

.contact-detail {
display: flex;
gap: 1rem;
margin-bottom: 1.2rem;
}

.contact-detail:last-child {
margin-bottom: 0;
}

.contact-detail i {
font-size: 1.3rem;
color: var(--primary);
margin-top: 0.2rem;
}

.contact-detail strong {
display: block;
margin-bottom: 0.2rem;
font-size: 0.9rem;
}

.contact-detail p {
margin: 0;
color: var(--gray);
font-size: 0.85rem;
}

.map-section {
padding: 3rem 0;
background: var(--white);
}

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

.map-wrapper {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.fullheight-main {
min-height: calc(100vh - 120px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-section,
.error-section {
padding: 3rem 0;
text-align: center;
}

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

.thankyou-icon {
font-size: 4rem;
color: var(--success);
margin-bottom: 1.5rem;
}

.thankyou-icon i {
animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
0% { transform: scale(0); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}

.thankyou-content h1 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--dark);
}

.thankyou-content p {
color: var(--gray);
margin-bottom: 2rem;
font-size: 1rem;
}

.thankyou-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

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

.error-content h1 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--dark);
}

.error-content p {
color: var(--gray);
margin-bottom: 2rem;
font-size: 1rem;
}

.error-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

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

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

.policy-hero p {
font-size: 0.9rem;
opacity: 0.8;
}

.policy-content {
padding: 3rem 0;
background: var(--white);
}

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

.policy-article h2 {
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--dark);
font-size: 1.4rem;
}

.policy-article h2:first-child {
margin-top: 0;
}

.policy-article p {
color: var(--gray);
margin-bottom: 1rem;
line-height: 1.7;
}

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

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

.footer-info p {
margin: 0;
font-size: 0.85rem;
opacity: 0.8;
}

.footer-links {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
}

.footer-links a {
font-size: 0.85rem;
color: var(--light);
}

.footer-links a:hover {
color: var(--white);
text-decoration: underline;
}

@media (max-width: 768px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1rem; }
body { font-size: 13px; }

.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: var(--dark);
flex-direction: column;
padding: 1rem;
gap: 0.8rem;
transform: translateX(-100%);
transition: transform 0.3s ease;
z-index: 999;
}

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

.menu-toggle {
display: block;
}

.mega-hero {
padding: 3rem 0;
min-height: auto;
}

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

.mega-hero-content > p {
font-size: 1rem;
}

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

.btn-hero-primary, .btn-hero-secondary {
width: 100%;
}

.hero-stats-mini {
gap: 1.5rem;
}

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

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

.demo-layout,
.intelligence-layout,
.realtime-content {
grid-template-columns: 1fr;
}

.intelligence-layout {
direction: ltr;
}

.intelligence-visual {
order: -1;
}

.metrics-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}

.intelligence-metrics {
grid-template-columns: 1fr;
}

.showcase-header h2,
.pricing-header h2,
.testimonials-header h2,
.metrics-header h2 {
font-size: 1.8rem;
}

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

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

.btn-cta-primary, .btn-cta-secondary {
width: 100%;
}

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

.contact-form-wrapper,
.contact-info-card {
padding: 1.5rem;
}

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

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

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

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

.thankyou-actions a,
.error-actions a {
width: 100%;
max-width: 300px;
}
}
.container {
padding: 0 0.8rem;
}

section {
padding: 2.5rem 0;
}

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

.stat-mini strong {
font-size: 1.3rem;
}

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

.price-amount .amount {
font-size: 2.5rem;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.privacy-actions {
width: 100%;
justify-content: space-between;
}

.hero-stats-mini {
flex-direction: column;
gap: 1rem;
}
}
