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

:root {
--primary: #0f172a;
--secondary: #3b82f6;
--accent: #06b6d4;
--light: #f1f5f9;
--gray: #64748b;
--success: #10b981;
}

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

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

.header {
padding: 15px 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--secondary);
text-decoration: none;
}

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

.nav a {
color: var(--primary);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

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

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

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

.mega-hero {
position: relative;
padding: 120px 0 80px;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: white;
overflow: hidden;
}

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

.hero-shape {
position: absolute;
background: rgba(59, 130, 246, 0.1);
border-radius: 50%;
filter: blur(40px);
}

.shape-1 {
width: 500px;
height: 500px;
top: -200px;
right: -100px;
animation: float 20s infinite ease-in-out, pulse 4s infinite;
}

.shape-2 {
width: 300px;
height: 300px;
bottom: -100px;
left: -50px;
animation: float 15s infinite ease-in-out reverse, pulse 6s infinite;
}

.shape-3 {
width: 400px;
height: 400px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: float 25s infinite ease-in-out, pulse 5s infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
25% { transform: translateY(-30px) rotate(90deg) scale(1.1); }
50% { transform: translateY(-60px) rotate(180deg) scale(0.9); }
75% { transform: translateY(-30px) rotate(270deg) scale(1.05); }
}

@keyframes pulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.6; }
}

.rain {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}

.rain::before,
.rain::after {
content: '';
position: absolute;
width: 1px;
height: 100%;
background: linear-gradient(transparent, rgba(59, 130, 246, 0.3), transparent);
animation: rain-fall linear infinite;
}

.rain::before {
left: 20%;
animation-duration: 1.5s;
animation-delay: 0s;
}

.rain::after {
left: 80%;
animation-duration: 1.8s;
animation-delay: 0.5s;
}

@keyframes rain-fall {
0% { transform: translateY(-100%); }
100% { transform: translateY(100vh); }
}

.hero-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

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

.hero-badge {
display: inline-block;
background: rgba(59, 130, 246, 0.2);
color: var(--secondary);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(59, 130, 246, 0.3);
}

.mega-hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 25px;
line-height: 1.1;
}

.mega-hero-content > p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.9;
line-height: 1.7;
}

.hero-stats-inline {
display: flex;
gap: 40px;
justify-content: center;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.stat-inline strong {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
display: block;
color: var(--secondary);
}

.stat-inline span {
font-size: 13px;
opacity: 0.8;
}

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

.btn {
display: inline-block;
padding: 12px 28px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

.section-header h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 12px;
color: var(--primary);
}

.section-header p {
font-size: 16px;
color: var(--gray);
}

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

.feature-item {
background: white;
padding: 30px;
border-radius: 12px;
transition: all 0.3s;
border: 1px solid #e2e8f0;
}

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

.feature-item h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--primary);
}

.feature-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.showcase {
padding: 80px 0;
}

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

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

.showcase-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
color: var(--primary);
}

.showcase-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 25px;
line-height: 1.8;
}

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

.showcase-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 15px;
color: var(--primary);
}

.showcase-list li:before {
content: "\2713";
color: var(--success);
font-weight: 700;
font-size: 18px;
}

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

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

.testimonial-card {
background: white;
padding: 30px;
border-radius: 12px;
border: 1px solid #e2e8f0;
}

.testimonial-card p {
font-size: 15px;
color: var(--gray);
line-height: 1.7;
margin-bottom: 20px;
}

.testimonial-author strong {
display: block;
font-size: 15px;
color: var(--primary);
margin-bottom: 5px;
}

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

.workflow {
padding: 80px 0;
background: white;
}

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

.workflow-step {
background: var(--light);
padding: 35px;
border-radius: 12px;
position: relative;
border: 1px solid #e2e8f0;
}

.step-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
color: var(--secondary);
opacity: 0.2;
margin-bottom: 15px;
}

.workflow-step h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--primary);
}

.workflow-step p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.integration {
padding: 80px 0;
}

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

.integration-content > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.8;
}

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

.benefit-box {
background: var(--light);
padding: 25px;
border-radius: 10px;
text-align: center;
}

.benefit-box h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: var(--primary);
}

.benefit-box p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
color: white;
text-align: center;
}

.final-cta-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 15px;
}

.final-cta-content p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
}

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

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

.footer-col h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 15px;
}

.footer-col p {
font-size: 14px;
opacity: 0.8;
margin-bottom: 8px;
}

.footer-col a {
display: block;
color: white;
text-decoration: none;
font-size: 14px;
opacity: 0.8;
margin-bottom: 8px;
transition: opacity 0.3s;
}

.footer-col a:hover {
opacity: 1;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
opacity: 0.7;
}

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

.footer-links a {
color: white;
text-decoration: none;
transition: opacity 0.3s;
}

.footer-links a:hover {
opacity: 0.7;
}

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

.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 {
font-size: 14px;
margin: 0;
}

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

.privacy-actions a {
color: white;
text-decoration: underline;
font-size: 14px;
}

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

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

.page-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
}

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

.risk-overview, .automation-intro {
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 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
color: var(--primary);
}

.content-text p {
font-size: 16px;
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

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

.risk-benefits {
margin-top: 30px;
}

.benefit-item {
display: flex;
gap: 15px;
align-items: flex-start;
margin-bottom: 20px;
}

.benefit-item h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
color: var(--primary);
}

.benefit-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

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

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

.capability-card {
background: white;
padding: 30px;
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 0.3s;
}

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

.capability-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--primary);
}

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

.pricing {
padding: 80px 0;
}

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

.pricing-card {
background: white;
border: 2px solid #e2e8f0;
border-radius: 12px;
padding: 35px;
position: relative;
transition: all 0.3s;
}

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

.pricing-card.featured {
border-color: var(--secondary);
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

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

.pricing-header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 25px;
border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
color: var(--primary);
}

.price {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 5px;
}

.currency {
font-size: 24px;
font-weight: 600;
color: var(--gray);
margin-top: 8px;
}

.amount {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
color: var(--primary);
}

.period {
font-size: 16px;
color: var(--gray);
margin-top: 20px;
}

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

.pricing-features li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 14px;
color: var(--primary);
}

.pricing-features li:before {
content: "\2713";
color: var(--success);
font-weight: 700;
font-size: 16px;
}

.pricing-card .btn {
width: 100%;
text-align: center;
}

.automation-list {
list-style: none;
margin-top: 25px;
}

.automation-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
font-size: 15px;
color: var(--primary);
}

.automation-list li:before {
content: "\2713";
color: var(--accent);
font-weight: 700;
font-size: 18px;
}

.automation-examples {
padding: 80px 0;
}

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

.example-card {
background: white;
padding: 35px;
border-radius: 12px;
border: 1px solid #e2e8f0;
}

.example-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--secondary);
opacity: 0.3;
margin-bottom: 15px;
}

.example-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--primary);
}

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

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

.contact-hero-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
}

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

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

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

.contact-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
color: var(--primary);
}

.contact-info > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 35px;
}

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

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

.contact-item h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
color: var(--primary);
}

.contact-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.contact-form-wrapper {
background: var(--light);
padding: 40px;
border-radius: 12px;
}

.contact-form h3 {
font-size: 24px;
font-weight: 600;
margin-bottom: 25px;
color: var(--primary);
}

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

.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--primary);
}

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

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-top: 15px;
}

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

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

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

.contact-form .btn {
width: 100%;
margin-top: 10px;
}

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

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 30px;
text-align: center;
color: var(--primary);
}

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

.thankyou-main, .error-main {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
}

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

.thankyou-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 15px;
color: var(--primary);
}

.thankyou-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
line-height: 1.7;
}

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

.error-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 120px;
font-weight: 700;
color: var(--secondary);
opacity: 0.2;
line-height: 1;
margin-bottom: 20px;
}

.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
margin-bottom: 15px;
color: var(--primary);
}

.error-content p {
font-size: 16px;
color: var(--gray);
margin-bottom: 30px;
}

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

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

.policy-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
font-weight: 700;
margin-bottom: 10px;
}

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

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

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

.policy-article h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 26px;
font-weight: 700;
margin-top: 40px;
margin-bottom: 15px;
color: var(--primary);
}

.policy-article h3 {
font-size: 20px;
font-weight: 600;
margin-top: 25px;
margin-bottom: 12px;
color: var(--primary);
}

.policy-article p {
font-size: 15px;
color: var(--gray);
margin-bottom: 15px;
line-height: 1.8;
}

@media (max-width: 1024px) {
.showcase-grid, .content-grid, .contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.features-grid, .capabilities-grid {
grid-template-columns: repeat(2, 1fr);
}
.pricing-grid {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}
.testimonials-grid {
grid-template-columns: 1fr;
}
.integration-benefits {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.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);
display: none;
}
.nav.active {
display: flex;
}
.menu-toggle {
display: flex;
}
.mega-hero-content h1 {
font-size: 36px;
}
.section-header h2 {
font-size: 28px;
}
.features-grid, .workflow-grid, .capabilities-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.footer-bottom {
flex-direction: column;
gap: 15px;
text-align: center;
}
.privacy-content {
flex-direction: column;
text-align: center;
}
.examples-grid {
grid-template-columns: 1fr;
}
.hero-stats-inline {
gap: 25px;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.mega-hero {
padding: 80px 0 50px;
}
.mega-hero-content h1 {
font-size: 28px;
}
.mega-hero-content > p {
font-size: 16px;
}
.section-header h2 {
font-size: 24px;
}
.hero-actions {
flex-direction: column;
}
.btn {
width: 100%;
text-align: center;
}
.contact-form-wrapper {
padding: 25px;
}
.error-number {
font-size: 80px;
}
.stat-inline strong {
font-size: 24px;
}
}

@media (max-width: 320px) {
.logo {
font-size: 16px;
}
.mega-hero-content h1 {
font-size: 24px;
}
.section-header h2 {
font-size: 22px;
}
.feature-item, .capability-card, .workflow-step {
padding: 20px;
}
}
