/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.accent {
    color: #34a853;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a73e8;
}

.cta-button {
    background: #1a73e8;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1557b0;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #1a73e8;
}

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

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a73e8;
}

.btn-primary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* AI-Powered Optimization Icon */
.ai-optimization {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.neural-network {
    position: relative;
    width: 50px;
    height: 40px;
}

.neuron {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s infinite;
}

.neuron:nth-child(1) {
    top: 0;
    left: 0;
}

.neuron:nth-child(2) {
    top: 0;
    right: 0;
    animation-delay: 0.3s;
}

.neuron:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.connection {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    height: 2px;
    transform-origin: left center;
}

.connection:nth-child(4) {
    width: 30px;
    top: 6px;
    left: 12px;
    transform: rotate(35deg);
}

.connection:nth-child(5) {
    width: 25px;
    top: 20px;
    left: 25px;
    transform: rotate(-35deg);
}

/* Smart Campaign Creation Icon */
.campaign-creation {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.document-stack {
    position: relative;
    width: 40px;
    height: 50px;
}

.document {
    width: 30px;
    height: 35px;
    background: white;
    border-radius: 4px;
    position: absolute;
    opacity: 0.9;
}

.document:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
}

.document:nth-child(2) {
    top: 5px;
    left: 5px;
    transform: rotate(0deg);
}

.document:nth-child(3) {
    top: 10px;
    left: 10px;
    transform: rotate(5deg);
}

.sparkles {
    position: absolute;
    top: -10px;
    right: -5px;
}

.sparkle {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) {
    top: 0;
    left: 0;
}

.sparkle:nth-child(2) {
    top: 8px;
    left: 10px;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 16px;
    left: 5px;
    animation-delay: 1s;
}

/* Real-Time Monitoring Icon */
.realtime-monitoring {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.radar-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.radar-circle {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    animation: radarPulse 3s infinite;
}

.radar-sweep {
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, white, transparent);
    position: absolute;
    top: 25px;
    left: 50%;
    transform-origin: bottom center;
    animation: radarSweep 2s linear infinite;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    animation: dotPulse 2s infinite;
}

.pulse-dot:nth-child(3) {
    top: 10px;
    left: 35px;
}

.pulse-dot:nth-child(4) {
    top: 30px;
    left: 15px;
    animation-delay: 0.7s;
}

.pulse-dot:nth-child(5) {
    top: 35px;
    left: 35px;
    animation-delay: 1.4s;
}

/* Advanced Reporting Icon */
.advanced-reporting {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.chart-container {
    position: relative;
    width: 50px;
    height: 40px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 100%;
    width: 100%;
}

.bar {
    background: white;
    border-radius: 2px 2px 0 0;
    width: 8px;
    animation: barGrow 2s infinite;
}

.bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    height: 25px;
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    height: 40px;
    animation-delay: 0.6s;
}

.trend-line {
    position: absolute;
    top: 15px;
    left: 4px;
    width: 42px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transform: rotate(15deg);
    border-radius: 1px;
}

/* Competitor Intelligence Icon */
.competitor-intelligence {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.target-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.target-ring {
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    animation: targetPulse 2s infinite;
}

.target-ring.outer {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.target-ring.middle {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-delay: 0.3s;
}

.target-ring.inner {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: rgba(255, 255, 255, 0.8);
    animation-delay: 0.6s;
}

.crosshair {
    background: white;
    position: absolute;
    opacity: 1;
}

.crosshair.horizontal {
    width: 60px;
    height: 2px;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

.crosshair.vertical {
    width: 2px;
    height: 60px;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Multi-Account Management Icon */
.multi-account {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.network-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.central-node {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: centralPulse 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.outer-node {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    animation: nodePulse 2s infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.node-1 {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.2s;
}

.node-2 {
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    animation-delay: 0.4s;
}

.node-3 {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.node-4 {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.connection-line {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 3px;
    transform-origin: center;
    border-radius: 1px;
}

.line-1 {
    height: 15px;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
}

.line-2 {
    height: 15px;
    top: 50%;
    right: 13px;
    transform: translateY(-50%) rotate(90deg);
}

.line-3 {
    height: 15px;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
}

.line-4 {
    height: 15px;
    top: 50%;
    left: 13px;
    transform: translateY(-50%) rotate(90deg);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes radarPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes barGrow {
    0%, 100% { transform: scaleY(0.8); }
    50% { transform: scaleY(1.1); }
}

@keyframes targetPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes nodePulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a73e8, #34a853);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.benefit-list {
    space-y: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check {
    background: #34a853;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
}

.benefits-demo {
    display: flex;
    justify-content: center;
}

.demo-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.window-header {
    background: #f5f5f5;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.window-controls span:nth-child(1) { background: #ff5f56; }
.window-controls span:nth-child(2) { background: #ffbd2e; }
.window-controls span:nth-child(3) { background: #27ca3f; }

.window-title {
    font-weight: 500;
    color: #666;
}

.window-content {
    padding: 1.5rem;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    background: #e8f0fe;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.optimization-status {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34a853;
    flex-shrink: 0;
}

.status-indicator.active {
    background: #34a853;
    box-shadow: 0 0 0 2px rgba(52, 168, 83, 0.2);
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid #e8f0fe;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: #1a73e8;
    background: #e8f0fe;
}

.tech-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a73e8;
}

.tech-item p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a73e8, #34a853);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.footer-brand .accent {
    color: #34a853;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1a73e8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: #1a73e8;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}