﻿/* =========================================================
   AI MARKETING – LANDING PAGE EXTENSION
   Depends on site.css
   ========================================================= */

body.public-landing {
    background: var(--bg);
}

/* -----------------------------
   HERO
----------------------------- */
.hero-section {
    background: radial-gradient(circle at 20% 20%, rgba(99,102,241,0.25), transparent 40%), radial-gradient(circle at 80% 80%, rgba(202,165,95,0.18), transparent 40%);
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-section {
    padding-left: 0;
    padding-right: 0;
}

    .hero-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }

/* ===============================
   HEADER LOGO (PUBLIC)
================================ */
.public-header .logo img {
    height: 138px; /* ⬅️ IDEĀLS SaaS izmērs */
    width: auto;
    object-fit: contain;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 520px;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
}

.hero-trust {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* -----------------------------
   SECTIONS
----------------------------- */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 56px;
}

/* -----------------------------
   GRIDS
----------------------------- */
.value-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

    .integrations-grid span {
        padding: 14px;
        border-radius: var(--radius);
        background: var(--bg-secondary);
        border: 1px solid var(--border);
    }

/* -----------------------------
   PRICING
----------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pricing-card.highlight {
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 2px rgba(99,102,241,0.25);
}

.pricing-note {
    margin-top: 24px;
    text-align: center;
    color: var(--text-muted);
}

/* -----------------------------
   CTA
----------------------------- */
.cta-box {
    background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(202,165,95,0.25));
    border-radius: var(--radius);
    padding: 72px 40px;
    text-align: center;
}

/* -----------------------------
   RESPONSIVE
----------------------------- */
@media (max-width: 900px) {
    .hero-grid,
    .value-grid,
    .steps-grid,
    .features-grid,
    .pricing-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
}
