/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111112;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 24px;
    color: #111112;
}

.logo-icon {
    font-size: 28px;
    color: #ac03fc;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #474747;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ac03fc;
}

.btn-primary {
    background: #ac03fc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-primary:hover {
    background: #8a02ca;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.announcement {
    display: inline-block;
    background: linear-gradient(135deg, #ac03fc, #d946ef);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111112;
}

.hero-description {
    font-size: 20px;
    color: #474747;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: #ac03fc;
}

.trusted-by {
    margin-top: 80px;
    text-align: center;
}

.trusted-by p {
    color: #7e7e7e;
    margin-bottom: 24px;
    font-size: 14px;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-placeholder {
    color: #7e7e7e;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.7;
}

/* Features Preview Section */
.features-preview {
    padding: 120px 0;
    background: #f6f6f9;
}

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

.feature-visual {
    position: relative;
    height: 400px;
}

.geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, #ac03fc, #d946ef);
    border-radius: 12px;
}

.shape-1 {
    width: 200px;
    height: 120px;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.shape-2 {
    width: 160px;
    height: 100px;
    top: 80px;
    left: 120px;
    opacity: 0.7;
}

.shape-3 {
    width: 180px;
    height: 140px;
    top: 160px;
    left: 40px;
    opacity: 0.8;
}

.shape-4 {
    width: 140px;
    height: 80px;
    top: 240px;
    left: 180px;
    opacity: 0.6;
}

.feature-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.feature-text h3 {
    font-size: 24px;
    font-weight: 600;
}

.feature-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111112;
}

.feature-content p {
    font-size: 18px;
    color: #474747;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Capabilities Section */
.capabilities {
    padding: 120px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #111112;
}

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

.capability-card {
    padding: 40px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ac03fc;
}

.capability-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.capability-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111112;
}

.capability-card p {
    color: #474747;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f6f6f9;
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #111112;
    margin-bottom: 24px;
    font-style: italic;
}

.author-info h4 {
    font-weight: 600;
    color: #111112;
    margin-bottom: 4px;
}

.author-info p {
    color: #7e7e7e;
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111112;
}

.cta-content p {
    font-size: 20px;
    color: #474747;
    margin-bottom: 48px;
}

.cta-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #111112;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #7e7e7e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #ac03fc;
}

.contact-info p {
    color: #7e7e7e;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #7e7e7e;
}

/* Additional Page Styles */

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111112;
}

.pricing-description {
    font-size: 20px;
    color: #474747;
    margin-bottom: 48px;
}

.pricing-plans {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #ac03fc;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ac03fc, #d946ef);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111112;
}

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

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #ac03fc;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #ac03fc;
}

.period {
    font-size: 16px;
    color: #7e7e7e;
    margin-left: 8px;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f3;
}

.feature-value {
    font-weight: 600;
    color: #111112;
}

.feature-label {
    color: #7e7e7e;
    font-size: 14px;
}

.feature-description p {
    color: #474747;
    line-height: 1.6;
}

.btn-secondary {
    background: white;
    color: #ac03fc;
    border: 2px solid #ac03fc;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #ac03fc;
    color: white;
    transform: translateY(-1px);
}

.pricing-faq {
    padding: 80px 0;
    background: #f6f6f9;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111112;
}

.faq-item p {
    color: #474747;
    line-height: 1.6;
}

.pricing-cta {
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.features-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111112;
}

.features-description {
    font-size: 20px;
    color: #474747;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-section {
    padding: 80px 0;
}

.features-main-grid {
    display: grid;
    gap: 80px;
}

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

.feature-large:nth-child(even) {
    direction: rtl;
}

.feature-large:nth-child(even) > * {
    direction: ltr;
}

.feature-benefits {
    list-style: none;
    margin-top: 24px;
}

.feature-benefits li {
    padding: 8px 0;
    color: #474747;
    position: relative;
    padding-left: 24px;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ac03fc;
    font-weight: bold;
}

.targeting-demo {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #f6f6f9, #e5e5e5);
    border-radius: 16px;
    overflow: hidden;
}

.target-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 4px solid #ac03fc;
    border-radius: 50%;
    background: rgba(172, 3, 252, 0.1);
}

.data-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    background: #ac03fc;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.multichannel-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px;
}

.channel-item {
    background: linear-gradient(135deg, #ac03fc, #d946ef);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.analytics-demo {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 200px;
    padding: 20px;
    background: #f6f6f9;
    border-radius: 16px;
}

.chart-bar {
    background: linear-gradient(135deg, #ac03fc, #d946ef);
    width: 40px;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    padding-bottom: 8px;
}

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

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.features-cta {
    padding: 80px 0;
    text-align: center;
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.product-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111112;
}

.product-description {
    font-size: 20px;
    color: #474747;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    gap: 60px;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ac03fc, #d946ef);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111112;
}

.step-content p {
    color: #474747;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f6f6f9;
    color: #ac03fc;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.competitive-advantages {
    padding: 80px 0;
    background: #f6f6f9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
}

.comparison-card.featured {
    border-color: #ac03fc;
    transform: scale(1.02);
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111112;
}

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

.comparison-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
}

.comparison-list.positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 18px;
}

.comparison-list.negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 18px;
}

.technology-stack {
    padding: 80px 0;
}

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

.tech-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ac03fc;
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.tech-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111112;
}

.tech-card p {
    color: #474747;
    line-height: 1.6;
}

.results-showcase {
    padding: 80px 0;
    background: #f6f6f9;
}

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

.result-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: #ac03fc;
    margin-bottom: 8px;
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    color: #111112;
    margin-bottom: 8px;
}

.result-card p {
    color: #7e7e7e;
    font-size: 14px;
}

.product-cta {
    padding: 80px 0;
    text-align: center;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111112;
}

.contact-description {
    font-size: 20px;
    color: #474747;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111112;
}

.contact-info > p {
    color: #474747;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    font-size: 24px;
    color: #22c55e;
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111112;
}

.benefit-text p {
    color: #7e7e7e;
    font-size: 14px;
}

.contact-details {
    background: #f6f6f9;
    padding: 32px;
    border-radius: 12px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111112;
}

.contact-item {
    margin-bottom: 16px;
    color: #474747;
    line-height: 1.5;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.contact-form {
    display: grid;
    gap: 24px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #111112;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ac03fc;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 16px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111112;
}

.success-message p {
    color: #474747;
    line-height: 1.6;
}

.contact-faq {
    padding: 80px 0;
    background: #f6f6f9;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #111112;
}

.legal-description {
    font-size: 16px;
    color: #7e7e7e;
}

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

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #111112;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #474747;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document li {
    color: #474747;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-details {
    background: #f6f6f9;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

/* Navigation Active State */
.nav-links a.active {
    color: #ac03fc;
    font-weight: 600;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title,
    .pricing-title,
    .features-title,
    .product-title,
    .contact-title {
        font-size: 40px;
    }
    
    .hero-description,
    .pricing-description,
    .features-description,
    .product-description,
    .contact-description {
        font-size: 18px;
    }
    
    .hero-form,
    .cta-form {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .capabilities-grid,
    .testimonials-grid,
    .pricing-grid,
    .features-detailed-grid,
    .tech-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .feature-content h2,
    .cta-content h2 {
        font-size: 36px;
    }
    
    .feature-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-large:nth-child(even) {
        direction: ltr;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .comparison-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-document {
        padding: 40px 20px;
    }
}
