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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #06b6d4;
--dark: #0f172a;
--gray: #64748b;
--light: #f8fafc;
--white: #ffffff;
}

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

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

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

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

.btn-mega {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

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

.btn-ghost {
display: inline-block;
padding: 1rem 2.5rem;
background: transparent;
color: var(--dark);
border: 2px solid var(--dark);
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
}

.btn-ghost:hover {
background: var(--dark);
color: var(--white);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 1.25rem;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s 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: 1.5rem;
}

.privacy-content p {
margin: 0;
font-size: 0.9rem;
}

.privacy-actions {
display: flex;
gap: 1rem;
align-items: center;
flex-shrink: 0;
}

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

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 0.6rem 1.5rem;
border-radius: 6px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
}

.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid 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: 1.4rem;
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: 2.5rem;
}

.nav a {
color: var(--dark);
font-size: 0.95rem;
font-weight: 500;
position: relative;
}

.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;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

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

.mega-hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #ddd6fe 100%);
}

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

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

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

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

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

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
50% { transform: translate(-50%, -50%) scale(1.1); }
}

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

.hero-badge {
display: inline-block;
padding: 0.5rem 1.25rem;
background: rgba(255, 255, 255, 0.9);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 2rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mega-hero-content h1 {
margin-bottom: 1.5rem;
color: var(--dark);
line-height: 1.1;
}

.mega-hero-content > p {
font-size: 1.25rem;
color: var(--gray);
margin-bottom: 3rem;
line-height: 1.7;
}

.hero-stats {
display: flex;
justify-content: center;
gap: 4rem;
margin-bottom: 3rem;
}

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

.stat-value {
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 0.9rem;
color: var(--gray);
font-weight: 500;
}

.hero-actions {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.hero-scroll {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
font-size: 0.85rem;
color: var(--gray);
animation: bounce 2s infinite;
}

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

.capabilities {
padding: 6rem 0;
background: var(--white);
}

.capabilities-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: start;
}

.capability-main {
position: sticky;
top: 100px;
}

.capability-tag {
display: inline-block;
padding: 0.4rem 1rem;
background: var(--light);
color: var(--primary);
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1.5rem;
}

.capability-main h2 {
margin-bottom: 1.5rem;
}

.capability-main p {
color: var(--gray);
margin-bottom: 2rem;
line-height: 1.8;
font-size: 1.05rem;
}

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

.capability-features {
display: flex;
flex-direction: column;
gap: 2.5rem;
}

.cap-feature {
padding: 2rem;
background: var(--light);
border-radius: 16px;
border-left: 4px solid var(--primary);
}

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

.cap-feature p {
color: var(--gray);
line-height: 1.7;
font-size: 0.95rem;
}

.methodology {
padding: 6rem 0;
background: var(--light);
}

.method-header {
text-align: center;
margin-bottom: 4rem;
}

.method-header h2 {
margin-bottom: 1rem;
}

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

.method-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}

.method-step {
background: var(--white);
padding: 2.5rem 2rem;
border-radius: 16px;
position: relative;
}

.step-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
position: absolute;
top: 1rem;
right: 1.5rem;
}

.method-step h3 {
margin-bottom: 1rem;
position: relative;
z-index: 1;
}

.method-step p {
color: var(--gray);
line-height: 1.7;
font-size: 0.95rem;
}

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

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

.intel-tag {
display: inline-block;
padding: 0.4rem 1rem;
background: var(--light);
color: var(--secondary);
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1.5rem;
}

.intel-content h2 {
margin-bottom: 1.5rem;
}

.intel-content > p {
color: var(--gray);
margin-bottom: 2.5rem;
line-height: 1.8;
font-size: 1.05rem;
}

.intel-metrics {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.metric-box {
display: flex;
gap: 1.25rem;
padding: 1.75rem;
background: var(--light);
border-radius: 12px;
}

.metric-icon {
font-size: 2rem;
flex-shrink: 0;
}

.metric-info h4 {
margin-bottom: 0.5rem;
}

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

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

.integration-ecosystem {
padding: 6rem 0;
background: var(--dark);
color: var(--white);
}

.eco-header {
text-align: center;
margin-bottom: 4rem;
}

.eco-header h2 {
color: var(--white);
margin-bottom: 1rem;
}

.eco-header p {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
}

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

.eco-category {
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-category h3 {
color: var(--white);
margin-bottom: 0.75rem;
}

.eco-category p {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.7;
}

.social-proof {
padding: 6rem 0;
background: var(--light);
}

.proof-header {
text-align: center;
margin-bottom: 4rem;
}

.proof-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
}

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

.proof-quote {
font-size: 1.05rem;
line-height: 1.8;
color: var(--dark);
margin-bottom: 2rem;
position: relative;
}

.proof-quote::before {
content: '"';
font-size: 4rem;
color: var(--primary);
opacity: 0.2;
position: absolute;
top: -1rem;
left: -0.5rem;
}

.proof-author {
display: flex;
align-items: center;
gap: 1rem;
}

.author-info strong {
display: block;
color: var(--dark);
font-weight: 600;
margin-bottom: 0.25rem;
}

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

.pricing-modern {
padding: 6rem 0;
background: var(--white);
}

.pricing-intro {
text-align: center;
margin-bottom: 4rem;
}

.pricing-intro h2 {
margin-bottom: 1rem;
}

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

.pricing-table {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.price-column {
background: var(--white);
border: 2px solid var(--light);
border-radius: 16px;
padding: 2.5rem 2rem;
position: relative;
transition: all 0.3s ease;
}

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

.price-column.featured {
border-color: var(--primary);
box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

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

.price-tier {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}

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

.currency {
font-size: 1.1rem;
color: var(--gray);
}

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

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

.price-desc {
color: var(--gray);
font-size: 0.95rem;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--light);
}

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

.price-features li {
padding: 0.75rem 0;
color: var(--dark);
font-size: 0.95rem;
border-bottom: 1px solid var(--light);
}

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

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

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

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

.btn-price.primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.final-push {
padding: 6rem 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
}

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

.push-content h2 {
color: var(--white);
margin-bottom: 1.5rem;
}

.push-content > p {
font-size: 1.15rem;
margin-bottom: 2.5rem;
opacity: 0.95;
line-height: 1.8;
}

.push-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}

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

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

.push-note {
font-size: 0.9rem;
opacity: 0.9;
}

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

.footer-content {
display: grid;
grid-template-columns: 1.5fr 2fr;
gap: 3rem;
margin-bottom: 2rem;
}

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

.footer-info p {
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
margin-bottom: 0.4rem;
}

.footer-links {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
align-items: flex-start;
}

.footer-links a {
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
text-align: center;
padding-top: 1.5rem;
border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
}

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

.page-hero h1 {
margin-bottom: 1.25rem;
}

.page-hero p {
font-size: 1.15rem;
color: var(--gray);
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

.content-section {
padding: 6rem 0;
background: var(--white);
}

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

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

.content-text p {
color: var(--gray);
margin-bottom: 1.25rem;
line-height: 1.8;
font-size: 1.05rem;
}

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

.feature-highlights {
margin-top: 2.5rem;
}

.highlight-item {
display: flex;
gap: 1.25rem;
margin-bottom: 2rem;
padding: 1.5rem;
background: var(--light);
border-radius: 12px;
}

.highlight-item h4 {
margin-bottom: 0.5rem;
}

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

.workflow-views {
padding: 6rem 0;
background: var(--light);
}

.views-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}

.view-card {
background: var(--white);
padding: 2.5rem 2rem;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

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

.view-card h3 {
margin-bottom: 0.75rem;
font-size: 1.15rem;
}

.view-card p {
font-size: 0.95rem;
color: var(--gray);
line-height: 1.6;
}

.automation {
padding: 6rem 0;
background: var(--white);
}

.automation-content {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 4rem;
align-items: center;
}

.automation-text h2 {
margin-bottom: 1.5rem;
}

.automation-text p {
color: var(--gray);
margin-bottom: 2rem;
line-height: 1.8;
font-size: 1.05rem;
}

.automation-list {
list-style: none;
margin-bottom: 2.5rem;
}

.automation-list li {
padding: 1rem 0;
color: var(--dark);
font-size: 1rem;
border-bottom: 1px solid var(--light);
}

.automation-stats {
display: grid;
gap: 2rem;
}

.stat-card {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 2.5rem;
border-radius: 16px;
color: var(--white);
text-align: center;
}

.stat-number {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 0.75rem;
}

.stat-card p {
font-size: 1rem;
opacity: 0.95;
margin: 0;
}

.collaboration-features {
padding: 6rem 0;
background: var(--white);
}

.collab-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

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

.collab-text h2 {
margin-bottom: 1.5rem;
}

.collab-text p {
color: var(--gray);
margin-bottom: 1.25rem;
line-height: 1.8;
font-size: 1.05rem;
}

.collab-features-list {
margin-top: 2.5rem;
}

.collab-feature {
display: flex;
gap: 1.25rem;
margin-bottom: 2rem;
padding: 1.5rem;
background: var(--light);
border-radius: 12px;
}

.collab-feature h4 {
margin-bottom: 0.5rem;
}

.collab-feature p {
font-size: 0.95rem;
color: var(--gray);
margin: 0;
line-height: 1.6;
}

.planning-tools {
padding: 6rem 0;
background: var(--light);
}

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

.planning-card {
background: var(--white);
padding: 2.5rem 2rem;
border-radius: 12px;
transition: all 0.3s ease;
}

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

.planning-card h3 {
margin-bottom: 0.75rem;
}

.planning-card p {
font-size: 0.95rem;
color: var(--gray);
line-height: 1.7;
}

.integration {
padding: 6rem 0;
background: var(--white);
}

.integration-content {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 4rem;
align-items: center;
}

.integration-text h2 {
margin-bottom: 1.5rem;
}

.integration-text p {
color: var(--gray);
margin-bottom: 2.5rem;
line-height: 1.8;
font-size: 1.05rem;
}

.integration-categories {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.integration-cat h4 {
margin-bottom: 0.5rem;
}

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

.integration-benefits {
display: grid;
gap: 1.5rem;
}

.benefit-item {
background: var(--light);
padding: 2rem;
border-radius: 12px;
}

.benefit-item h4 {
margin-bottom: 0.5rem;
}

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

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

.contact-hero h1 {
margin-bottom: 1.25rem;
}

.contact-hero p {
font-size: 1.15rem;
color: var(--gray);
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

.contact-main {
padding: 6rem 0;
background: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 4rem;
}

.contact-info-section h2 {
margin-bottom: 1.25rem;
}

.contact-info-section > p {
color: var(--gray);
margin-bottom: 3rem;
line-height: 1.8;
font-size: 1.05rem;
}

.contact-methods {
margin-bottom: 3rem;
}

.contact-method {
display: flex;
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.method-details h4 {
margin-bottom: 0.5rem;
}

.method-details p {
color: var(--gray);
font-size: 0.95rem;
margin: 0;
line-height: 1.6;
}

.contact-hours {
background: var(--light);
padding: 2rem;
border-radius: 12px;
}

.contact-hours h4 {
margin-bottom: 0.75rem;
}

.contact-hours p {
color: var(--gray);
font-size: 0.95rem;
margin: 0;
line-height: 1.6;
}

.contact-form-section {
background: var(--light);
padding: 3rem;
border-radius: 16px;
}

.contact-form h3 {
margin-bottom: 2rem;
}

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

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.9rem;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 0.95rem;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
min-height: 130px;
}

.checkbox-group {
margin-bottom: 2rem;
}

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

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

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

.contact-form .btn-mega {
width: 100%;
}

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

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

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

.map-container iframe {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.thankyou-section,
.error-section {
padding: 6rem 0;
background: var(--white);
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

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

.thankyou-content h1,
.error-content h1 {
margin-bottom: 1.5rem;
}

.thankyou-content p,
.error-content p {
font-size: 1.15rem;
color: var(--gray);
margin-bottom: 2.5rem;
line-height: 1.8;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 3rem;
}

.thankyou-info {
background: var(--light);
padding: 2rem;
border-radius: 12px;
}

.thankyou-info p {
margin: 0;
font-size: 1rem;
}

.error-code {
font-size: 8rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 1.5rem;
}

.error-links {
margin-top: 2.5rem;
}

.error-links h3 {
margin-bottom: 1.5rem;
}

.quick-links {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.quick-links a {
padding: 0.85rem 1.75rem;
background: var(--light);
border-radius: 50px;
font-size: 0.95rem;
transition: all 0.3s ease;
}

.quick-links a:hover {
background: var(--primary);
color: var(--white);
}

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

.policy-hero h1 {
margin-bottom: 0.75rem;
}

.policy-hero p {
color: var(--gray);
font-size: 0.95rem;
}

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

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

.policy-text h2 {
margin-top: 3rem;
margin-bottom: 1.5rem;
color: var(--dark);
}

.policy-text h3 {
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--dark);
}

.policy-text h4 {
margin-top: 2rem;
margin-bottom: 0.75rem;
color: var(--dark);
}

.policy-text p {
color: var(--gray);
margin-bottom: 1.5rem;
line-height: 1.8;
font-size: 1rem;
}

.policy-text ul {
margin-bottom: 2rem;
padding-left: 2rem;
}

.policy-text li {
color: var(--gray);
margin-bottom: 0.75rem;
line-height: 1.7;
}

.policy-text strong {
color: var(--dark);
}

@media (max-width: 1024px) {
.capabilities-grid,
.intel-layout,
.content-grid,
.collab-grid,
.automation-content,
.integration-content {
grid-template-columns: 1fr;
gap: 3rem;
}

.capability-main {
position: static;
}

.method-grid,
.eco-grid,
.proof-grid,
.pricing-table,
.planning-grid {
grid-template-columns: repeat(2, 1fr);
}

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

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

.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}

.hero-stats {
gap: 2.5rem;
}
}

@media (max-width: 768px) {
h1 { font-size: 2.25rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.25rem; }

.container {
padding: 0 1.25rem;
}

.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
flex-direction: column;
gap: 0;
padding: 1rem 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.nav.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.nav a {
padding: 0.85rem 1.5rem;
border-bottom: 1px solid var(--light);
}

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

.mega-hero-content {
padding: 2rem 0;
}

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

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

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

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

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

.hero-actions .btn-mega,
.hero-actions .btn-ghost {
width: 100%;
text-align: center;
}

.hero-scroll {
display: none;
}

.shape-1 {
width: 400px;
height: 400px;
}

.shape-2 {
width: 300px;
height: 300px;
}

.shape-3 {
width: 200px;
height: 200px;
}

.capabilities,
.methodology,
.intelligence,
.integration-ecosystem,
.social-proof,
.pricing-modern,
.final-push,
.content-section,
.workflow-views,
.automation,
.collaboration-features,
.planning-tools,
.integration,
.contact-main,
.policy-content {
padding: 4rem 0;
}

.method-grid,
.eco-grid,
.proof-grid,
.pricing-table,
.planning-grid,
.views-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.cap-feature,
.method-step,
.price-column,
.planning-card,
.view-card {
padding: 2rem 1.5rem;
}

.step-number {
font-size: 2.5rem;
}

.amount {
font-size: 2.5rem;
}

.stat-number {
font-size: 3rem;
}

.content-image,
.collab-image,
.intel-visual {
order: -1;
}

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

.contact-form-section {
padding: 2.5rem;
}

.thankyou-section,
.error-section {
padding: 4rem 0;
min-height: calc(100vh - 150px);
}

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

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

.thankyou-actions .btn-mega,
.thankyou-actions .btn-ghost,
.error-actions .btn-mega,
.error-actions .btn-ghost {
width: 100%;
}

.quick-links {
flex-direction: column;
}

.policy-text {
padding: 0 0.5rem;
}

.privacy-content {
flex-direction: column;
gap: 1rem;
}

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

.footer-links {
flex-direction: column;
gap: 0.75rem;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.85rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.15rem; }

.container {
padding: 0 1rem;
}

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

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

.hero-badge {
font-size: 0.8rem;
padding: 0.4rem 1rem;
}

.btn-mega,
.btn-ghost {
padding: 0.85rem 2rem;
font-size: 0.95rem;
}

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

.stat-label {
font-size: 0.85rem;
}

.capability-tag,
.intel-tag {
font-size: 0.8rem;
padding: 0.35rem 0.85rem;
}

.cap-feature,
.method-step,
.price-column,
.planning-card,
.view-card,
.eco-category,
.proof-card {
padding: 1.75rem 1.25rem;
}

.step-number {
font-size: 2rem;
top: 0.75rem;
right: 1rem;
}

.amount {
font-size: 2.25rem;
}

.stat-number {
font-size: 2.5rem;
}

.metric-box {
flex-direction: column;
padding: 1.5rem;
}

.metric-icon {
font-size: 1.75rem;
}

.contact-form-section {
padding: 2rem;
}

.form-group input,
.form-group textarea {
padding: 0.8rem;
font-size: 0.9rem;
}

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

.footer {
padding: 2rem 0 1rem;
}

.push-content h2 {
font-size: 1.65rem;
}

.push-content > p {
font-size: 1.05rem;
}
}

@media (max-width: 375px) {
h1 { font-size: 1.65rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

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

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

.btn-mega,
.btn-ghost {
padding: 0.8rem 1.75rem;
font-size: 0.9rem;
}

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

.cap-feature,
.method-step,
.price-column,
.planning-card,
.view-card,
.eco-category,
.proof-card {
padding: 1.5rem 1rem;
}

.amount {
font-size: 2rem;
}

.stat-number {
font-size: 2.25rem;
}

.contact-form-section {
padding: 1.75rem;
}

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

@media (max-width: 320px) {
h1 { font-size: 1.5rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1rem; }
h4 { font-size: 0.95rem; }

.container {
padding: 0 0.875rem;
}

.mega-hero {
padding: 3rem 0 2rem;
}

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

.mega-hero-content > p {
font-size: 0.9rem;
margin-bottom: 2rem;
}

.hero-badge {
font-size: 0.75rem;
padding: 0.35rem 0.85rem;
margin-bottom: 1.5rem;
}

.btn-mega,
.btn-ghost {
padding: 0.75rem 1.5rem;
font-size: 0.875rem;
}

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

.stat-label {
font-size: 0.8rem;
}

.capabilities,
.methodology,
.intelligence,
.integration-ecosystem,
.social-proof,
.pricing-modern,
.final-push,
.content-section,
.workflow-views,
.automation,
.collaboration-features,
.planning-tools,
.integration,
.contact-main,
.policy-content {
padding: 3rem 0;
}

.capability-tag,
.intel-tag {
font-size: 0.75rem;
padding: 0.3rem 0.75rem;
}

.cap-feature,
.method-step,
.price-column,
.planning-card,
.view-card,
.eco-category,
.proof-card {
padding: 1.25rem 0.875rem;
}

.step-number {
font-size: 1.75rem;
}

.amount {
font-size: 1.85rem;
}

.currency,
.period {
font-size: 0.9rem;
}

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

.stat-card {
padding: 2rem 1.5rem;
}

.metric-box {
padding: 1.25rem;
}

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

.contact-form-section {
padding: 1.5rem;
}

.form-group input,
.form-group textarea {
padding: 0.75rem;
font-size: 0.875rem;
}

.form-group label {
font-size: 0.9rem;
}

.checkbox-label {
font-size: 0.85rem;
}

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

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

.thankyou-content p,
.error-content p {
font-size: 1rem;
}

.thankyou-info,
.contact-hours {
padding: 1.5rem;
}

.footer {
padding: 1.75rem 0 1rem;
}

.footer-brand {
font-size: 1.15rem;
}

.footer-info p,
.footer-links a {
font-size: 0.85rem;
}

.push-content h2 {
font-size: 1.35rem;
}

.push-content > p {
font-size: 0.95rem;
}

.push-note {
font-size: 0.85rem;
}

.policy-text p,
.policy-text li {
font-size: 0.9rem;
}

.shape-1 {
width: 300px;
height: 300px;
}

.shape-2 {
width: 200px;
height: 200px;
}

.shape-3 {
width: 150px;
height: 150px;
}
}
