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

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

html {
scroll-behavior: smooth;
}

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

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

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

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 20px;
}

.header-modern {
background: var(--white);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--primary);
}

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

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

.nav-link:hover,
.nav-link.active {
color: var(--primary);
}

.nav-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
cursor: pointer;
}

.nav-toggle span {
width: 25px;
height: 3px;
background: var(--dark);
border-radius: 2px;
transition: all 0.3s ease;
}

.hero-reimagined {
position: relative;
background: linear-gradient(165deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
padding: 140px 0 100px;
overflow: hidden;
}

.hero-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}

.hero-floating-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(37, 99, 235, 0.08);
border: 1px solid rgba(37, 99, 235, 0.2);
padding: 8px 20px;
border-radius: 50px;
margin-bottom: 35px;
animation: float 3s ease-in-out infinite;
}

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

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

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

.badge-text {
font-size: 0.85rem;
font-weight: 600;
color: var(--primary);
}

.hero-main-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}

.hero-heading {
display: flex;
flex-direction: column;
margin-bottom: 30px;
line-height: 1.1;
}

.hero-line-1 {
font-size: 3.5rem;
font-weight: 700;
color: var(--dark);
}

.hero-line-2 {
font-size: 3.5rem;
font-weight: 700;
color: var(--dark);
}

.hero-line-3 {
font-size: 4rem;
font-weight: 800;
}

.hero-subtext {
font-size: 1.15rem;
line-height: 1.7;
color: var(--gray);
margin-bottom: 40px;
max-width: 520px;
}

.hero-cta-group {
display: flex;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-primary-hero {
background: var(--primary);
color: var(--white);
padding: 16px 36px;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary-hero:hover {
background: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

.btn-secondary-hero {
display: flex;
align-items: center;
gap: 10px;
background: transparent;
color: var(--primary);
padding: 16px 36px;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
border: 2px solid var(--primary);
transition: all 0.3s ease;
}

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

.btn-icon {
font-size: 0.8rem;
}

.hero-trust-bar {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

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

.trust-numbers {
display: flex;
gap: 25px;
flex-wrap: wrap;
}

.trust-item {
font-size: 0.9rem;
color: var(--gray);
}

.trust-item strong {
color: var(--primary);
font-weight: 700;
margin-right: 4px;
}

.hero-image-stack {
position: relative;
height: 500px;
}

.image-card {
position: absolute;
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
}

.card-main {
top: 0;
left: 0;
right: 0;
height: 100%;
box-shadow: 0 25px 60px rgba(0,0,0,0.15);
z-index: 3;
}

.card-main img {
width: 100%;
height: 100%;
object-fit: cover;
}

.card-float-1 {
width: 180px;
height: 180px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
top: -30px;
right: -30px;
z-index: 1;
opacity: 0.15;
animation: float 4s ease-in-out infinite;
}

.card-float-2 {
width: 140px;
height: 140px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
bottom: -20px;
left: -20px;
z-index: 1;
opacity: 0.15;
animation: float 5s ease-in-out infinite reverse;
}

.hero-bottom-wave {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 120px;
z-index: 1;
}

.hero-bottom-wave svg {
width: 100%;
height: 100%;
display: block;
}

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

.page-hero-alt h1 {
font-size: 3rem;
margin-bottom: 20px;
}

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

.content-section-alt {
padding: 100px 0;
background: var(--white);
}

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

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

.content-text-box p {
color: var(--gray);
margin-bottom: 25px;
line-height: 1.7;
}

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

.check-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 15px;
color: var(--dark);
}

.check-list svg {
color: var(--primary);
flex-shrink: 0;
}

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

.process-section-alt {
padding: 100px 0;
background: var(--light);
}

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

.process-step {
background: var(--white);
padding: 35px;
border-radius: 16px;
text-align: center;
}

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

.process-step h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

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

.stats-section-alt {
padding: 100px 0;
background: var(--white);
}

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

.stat-card {
background: var(--light);
padding: 40px;
border-radius: 16px;
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

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

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

.contact-hero-section h1 {
font-size: 3rem;
margin-bottom: 20px;
}

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

.contact-main-section {
padding: 100px 0;
background: var(--white);
}

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

.form-header {
margin-bottom: 30px;
}

.form-header h2 {
margin-bottom: 10px;
}

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

.modern-form {
background: var(--light);
padding: 40px;
border-radius: 16px;
}

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

.form-field label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 0.9rem;
color: var(--dark);
}

.form-field input,
.form-field textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid #e2e8f0;
border-radius: 10px;
font-family: 'Sora', sans-serif;
font-size: 0.95rem;
transition: all 0.3s ease;
}

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

.form-field textarea {
resize: vertical;
min-height: 120px;
}

.form-checkbox {
display: flex;
align-items: flex-start;
gap: 10px;
}

.form-checkbox input[type="checkbox"] {
margin-top: 4px;
width: 18px;
height: 18px;
cursor: pointer;
}

.form-checkbox label {
font-size: 0.9rem;
color: var(--gray);
cursor: pointer;
}

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

.btn-form-submit {
width: 100%;
background: var(--primary);
color: var(--white);
padding: 14px;
border: none;
border-radius: 10px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-form-submit:hover {
background: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.info-card {
background: var(--light);
padding: 40px;
border-radius: 16px;
}

.info-card h3 {
margin-bottom: 30px;
}

.info-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 15px;
}

.info-icon {
flex-shrink: 0;
width: 48px;
height: 48px;
background: rgba(37, 99, 235, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
}

.info-text strong {
display: block;
margin-bottom: 5px;
color: var(--dark);
font-size: 0.95rem;
}

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

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

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

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

.faq-section {
padding: 100px 0;
background: var(--white);
}

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

.faq-card {
background: var(--light);
padding: 30px;
border-radius: 16px;
}

.faq-card h3 {
margin-bottom: 12px;
font-size: 1.1rem;
color: var(--dark);
}

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

.thankyou-section {
padding: 120px 0;
min-height: calc(100vh - 300px);
display: flex;
align-items: center;
background: var(--light);
}

.thankyou-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
background: var(--white);
padding: 60px 40px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thankyou-icon {
margin-bottom: 30px;
}

.thankyou-icon svg {
margin: 0 auto;
}

.thankyou-content h1 {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--dark);
}

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

.thankyou-info {
background: var(--light);
padding: 20px;
border-radius: 12px;
margin: 30px 0;
}

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

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

.thankyou-extra p {
font-size: 0.95rem;
color: var(--gray);
margin: 0;
}

.thankyou-extra strong {
color: var(--primary);
}

.trust-section {
padding: 50px 0;
background: var(--white);
border-bottom: 1px solid #e2e8f0;
}

.trust-text {
text-align: center;
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 30px;
}

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

.trust-item {
color: var(--gray);
font-weight: 600;
font-size: 0.95rem;
opacity: 0.7;
}

.features-modern {
padding: 100px 0;
background: var(--white);
}

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

.section-label {
display: inline-block;
background: rgba(37, 99, 235, 0.1);
color: var(--primary);
padding: 6px 18px;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 15px;
}

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

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

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

.feature-modern {
background: var(--light);
padding: 35px;
border-radius: 16px;
transition: all 0.3s ease;
}

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

.feature-icon-wrap {
margin-bottom: 20px;
}

.feature-icon {
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
}

.feature-icon.blue { background: var(--primary); }
.feature-icon.purple { background: var(--secondary); }
.feature-icon.pink { background: var(--accent); }
.feature-icon.green { background: #10b981; }
.feature-icon.orange { background: #f59e0b; }
.feature-icon.teal { background: #14b8a6; }

.feature-modern h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

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

.demo-section {
padding: 100px 0;
background: var(--light);
}

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

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

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

.demo-content > p {
color: var(--gray);
font-size: 1.05rem;
margin-bottom: 30px;
line-height: 1.7;
}

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

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

.demo-list svg {
color: var(--primary);
flex-shrink: 0;
}

.btn-demo {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 28px;
border-radius: 10px;
font-weight: 600;
font-size: 0.95rem;
}

.btn-demo:hover {
background: #1d4ed8;
transform: translateY(-2px);
}

.team-section {
padding: 100px 0;
background: var(--white);
}

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

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

.team-content > p {
color: var(--gray);
font-size: 1.05rem;
margin-bottom: 30px;
line-height: 1.7;
}

.team-stats {
display: flex;
gap: 40px;
margin-bottom: 30px;
}

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

.team-stat strong {
font-size: 2rem;
color: var(--primary);
font-weight: 700;
margin-bottom: 5px;
}

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

.team-quote {
font-style: italic;
color: var(--dark);
font-size: 1.05rem;
line-height: 1.7;
margin-bottom: 15px;
padding-left: 20px;
border-left: 4px solid var(--primary);
}

.team-author {
color: var(--gray);
font-size: 0.9rem;
font-weight: 600;
}

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

.workflow-advanced {
padding: 100px 0;
background: var(--light);
}

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

.workflow-card {
background: var(--white);
padding: 35px;
border-radius: 16px;
transition: all 0.3s ease;
}

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

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

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

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

.products-premium {
padding: 100px 0;
background: var(--white);
}

.pricing-toggle {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 50px;
}

.toggle-btn {
padding: 10px 25px;
border: 2px solid #e2e8f0;
background: var(--white);
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
color: var(--dark);
}

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

.save-badge {
background: var(--accent);
color: var(--white);
padding: 2px 8px;
border-radius: 10px;
font-size: 0.75rem;
margin-left: 5px;
}

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

.product-premium {
background: var(--light);
border-radius: 16px;
padding: 40px;
position: relative;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.product-premium:hover {
border-color: var(--primary);
transform: translateY(-5px);
}

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

.popular-badge {
position: absolute;
top: -15px;
right: 30px;
background: var(--accent);
color: var(--white);
padding: 6px 18px;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
}

.product-tier {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 15px;
}

.product-price {
display: flex;
align-items: baseline;
margin-bottom: 15px;
}

.currency {
font-size: 1.5rem;
font-weight: 600;
}

.amount {
font-size: 3rem;
font-weight: 700;
margin: 0 5px;
}

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

.product-premium.featured .period {
color: rgba(255,255,255,0.8);
}

.product-desc {
font-size: 0.95rem;
margin-bottom: 25px;
line-height: 1.6;
}

.product-premium.featured .product-desc {
color: rgba(255,255,255,0.9);
}

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

.product-benefits li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
font-size: 0.9rem;
}

.product-premium.featured .product-benefits li {
color: var(--white);
}

.product-benefits svg {
color: var(--primary);
flex-shrink: 0;
}

.product-premium.featured .product-benefits svg {
color: var(--white);
}

.btn-product-select {
display: block;
text-align: center;
background: var(--primary);
color: var(--white);
padding: 12px;
border-radius: 10px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
}

.product-premium.featured .btn-product-select {
background: var(--white);
color: var(--primary);
}

.btn-product-select:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.results-section {
padding: 100px 0;
background: var(--light);
}

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

.result-card {
background: var(--white);
padding: 35px;
border-radius: 16px;
text-align: center;
}

.result-metric {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.result-label {
font-size: 1.05rem;
font-weight: 600;
color: var(--dark);
margin-bottom: 10px;
}

.result-company {
font-size: 0.85rem;
color: var(--gray);
}

.final-cta {
padding: 100px 0;
background: var(--white);
}

.cta-card {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 20px;
padding: 60px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
color: var(--white);
}

.cta-content-wrap h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}

.cta-content-wrap > p {
font-size: 1.05rem;
margin-bottom: 25px;
opacity: 0.95;
line-height: 1.7;
}

.cta-features-mini {
display: flex;
gap: 25px;
flex-wrap: wrap;
font-size: 0.9rem;
}

.cta-action-wrap {
text-align: center;
flex-shrink: 0;
}

.btn-cta-large {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 16px 40px;
border-radius: 12px;
font-weight: 700;
font-size: 1.05rem;
margin-bottom: 10px;
transition: all 0.3s ease;
}

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

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

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

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}

.footer-brand h4 {
color: var(--white);
margin-bottom: 15px;
font-size: 1.2rem;
}

.footer-brand p {
color: var(--gray);
font-size: 0.9rem;
line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
color: var(--white);
margin-bottom: 20px;
font-size: 1rem;
}

.footer-links a {
display: block;
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 10px;
transition: color 0.3s ease;
}

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

.footer-contact p {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 8px;
}

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

.footer-bottom p {
color: var(--gray);
font-size: 0.85rem;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 9999;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
display: none;
}

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

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

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

.privacy-content a {
color: var(--primary);
text-decoration: underline;
}

.btn-accept {
background: var(--primary);
color: var(--white);
border: none;
padding: 10px 25px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
font-size: 0.9rem;
white-space: nowrap;
}

.btn-accept:hover {
background: #1d4ed8;
}

@media (max-width: 1024px) {
.hero-main-grid,
.demo-layout,
.team-layout,
.content-grid-modern,
.contact-layout-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-image-stack {
height: 400px;
}
.features-layout,
.workflow-grid,
.products-layout {
grid-template-columns: repeat(2, 1fr);
}
.process-grid,
.stats-grid-alt {
grid-template-columns: repeat(2, 1fr);
}
.results-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
.cta-card {
flex-direction: column;
text-align: center;
}
.faq-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
.nav-main {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
padding: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nav-main.active {
display: flex;
}
.nav-toggle {
display: flex;
}
.hero-reimagined,
.page-hero-alt,
.contact-hero-section {
padding: 80px 0 60px;
}
.hero-line-1,
.hero-line-2 {
font-size: 2.5rem;
}
.hero-line-3 {
font-size: 3rem;
}
.page-hero-alt h1,
.contact-hero-section h1 {
font-size: 2rem;
}
.hero-image-stack {
height: 300px;
}
.features-layout,
.workflow-grid,
.products-layout,
.results-grid,
.process-grid,
.stats-grid-alt,
.faq-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
.cta-card {
padding: 40px 30px;
}
.privacy-content {
flex-direction: column;
text-align: center;
}
.modern-form {
padding: 30px;
}
.thankyou-content {
padding: 40px 30px;
}
.thankyou-content h1 {
font-size: 2rem;
}
.thankyou-actions {
flex-direction: column;
width: 100%;
}
.thankyou-actions a {
width: 100%;
text-align: center;
justify-content: center;
}
}

@media (max-width: 480px) {
body { font-size: 14px; }
h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }
.container { padding: 0 15px; }
.hero-line-1,
.hero-line-2 {
font-size: 2rem;
}
.hero-line-3 {
font-size: 2.3rem;
}
.hero-cta-group { flex-direction: column; width: 100%; }
.btn-primary-hero,
.btn-secondary-hero { width: 100%; text-align: center; justify-content: center; }
.hero-image-stack { height: 250px; }
.cta-card { padding: 30px 20px; }
}

@media (max-width: 320px) {
body { font-size: 13px; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
.container { padding: 0 10px; }
.hero-line-1,
.hero-line-2 {
font-size: 1.7rem;
}
.hero-line-3 {
font-size: 2rem;
}
.hero-image-stack { height: 200px; }
.feature-modern,
.workflow-card,
.product-premium { padding: 25px; }
.thankyou-content {
padding: 30px 20px;
}
.thankyou-content h1 {
font-size: 1.7rem;
}
}