/* Global Styles */
:root {
    --revenue-green: #10B981;
    --forecast-blue: #2563EB;
    --neutral-gray: #6B7280;
    --accent-orange: #EA580C;
    --luxury-gold: #D4AF37;
    --white: #FFFFFF;
    --black: #111827;
    --light-gray: #F9FAFB;
    --dark-gray: #1F2937;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--neutral-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--luxury-gold);
    text-decoration: underline;
}

.btn-accept {
    background: var(--revenue-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forecast-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--neutral-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--forecast-blue);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #1E40AF 100%);
    padding: 120px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px, rgba(255,255,255,0.03) 41px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 40px, rgba(255,255,255,0.03) 41px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--revenue-green);
    font-family: 'Lora', serif;
}

.stat-number::after {
    content: '%';
    font-size: 2rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.cta-button {
    display: inline-block;
    background: var(--revenue-green);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.hero-image {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

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

/* Pricing Dashboard Section */
.pricing-dashboard {
    background: var(--light-gray);
}

.dashboard-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon {
    width: 40px;
    height: 40px;
    color: var(--forecast-blue);
}

.card-header h3 {
    font-size: 1.25rem;
    color: var(--black);
}

.metric-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Lora', serif;
    color: var(--forecast-blue);
}

.metric-change {
    font-size: 1.25rem;
    font-weight: 600;
}

.metric-change.positive {
    color: var(--revenue-green);
}

.metric-change.positive::before {
    content: '▲ ';
}

.dashboard-card p {
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Competitive Intelligence */
.competitive-intelligence {
    background: var(--white);
}

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

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--revenue-green);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--black);
}

.feature-item p {
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Channel Management */
.channel-management {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
}

.channel-management .section-title,
.channel-management .section-subtitle {
    color: var(--white);
}

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

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.channel-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.channel-icon svg {
    width: 100%;
    height: 100%;
    color: var(--luxury-gold);
}

.channel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.channel-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* AI Technology */
.ai-technology {
    background: var(--light-gray);
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.tech-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Lora', serif;
    color: var(--forecast-blue);
    opacity: 0.3;
    flex-shrink: 0;
}

.tech-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}

.tech-content p {
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--forecast-blue);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.benefit-icon.revenue {
    background: var(--revenue-green);
}

.benefit-icon.forecast {
    background: var(--forecast-blue);
}

.benefit-icon.time {
    background: var(--accent-orange);
}

.benefit-icon.optimization {
    background: var(--luxury-gold);
}

.benefit-icon.integration {
    background: var(--neutral-gray);
}

.benefit-icon.scalability {
    background: var(--dark-gray);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Analytics Section */
.analytics-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: var(--white);
}

.analytics-section .section-title,
.analytics-section .section-subtitle {
    color: var(--white);
}

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

.analytics-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.analytics-card.featured {
    grid-column: span 2;
}

.analytics-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--white);
}

.analytics-visual {
    margin-bottom: 20px;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--revenue-green), var(--luxury-gold));
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1s ease;
}

@keyframes chartGrow {
    from {
        height: 0;
    }
}

.analytics-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Automation Features */
.automation-features {
    background: var(--light-gray);
}

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

.automation-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.automation-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.automation-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-orange);
}

.automation-card h3 {
    font-size: 1.3rem;
    color: var(--black);
}

.automation-card p {
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Market Trends */
.market-trends {
    background: var(--white);
}

.trend-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trend-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--neutral-gray);
    line-height: 1.7;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--revenue-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Implementation Process */
.implementation-process {
    background: var(--light-gray);
}

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

.process-step {
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--forecast-blue), var(--revenue-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Lora', serif;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--black);
}

.step-content p {
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-block;
    background: var(--forecast-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--forecast-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--neutral-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 4px;
}

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

/* Contact Section */
.contact-section {
    background: var(--light-gray);
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--forecast-blue);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--black);
}

.contact-item p {
    color: var(--neutral-gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

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

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

.submit-button {
    background: var(--revenue-green);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--luxury-gold);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-domain {
    color: var(--forecast-blue);
    font-weight: 600;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--luxury-gold);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    section {
        padding: 80px 0;
    }

    .hero .container,
    .two-column-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .analytics-card.featured {
        grid-column: span 1;
    }

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

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .dashboard-preview,
    .channel-grid,
    .benefits-grid,
    .automation-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .dashboard-card,
    .benefit-card,
    .automation-card {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}
