/* Filepath: marketing_site/style.css */

:root {
    --primary-color: #6355a5;   /* Soft indigo-purple */
    --secondary-color: #6b9980; /* Sage green */
    --accent-color: #e8826a;    /* Soft coral for CTAs */

    --background-color: #f8f7ff;
    --text-color: #3d3658;
    --card-bg: #ffffff;
    --border-color: #e4e0f5;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Navbar */
.navbar {
    background-color: var(--card-bg);
    box-shadow: 0 2px 8px rgba(99, 85, 165, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.navbar nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

.nav-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #7b6ec0;
}

.nav-button-outline {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1.5px solid var(--primary-color);
    padding: 7px 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-button-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 90px 0 100px;
    background: linear-gradient(160deg, #f0eeff 0%, #e8f5f0 100%);
}

.hero-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.3em;
    letter-spacing: -1px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 1em;
}

.hero .subtitle {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 2em;
    color: #5a5178;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    padding: 15px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button.primary {
    background-color: var(--accent-color);
}

.cta-button.primary:hover {
    background-color: #d96e55;
    transform: translateY(-1px);
}

.cta-button:hover {
    background-color: #d96e55;
}

.hero-pricing-badge {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(99, 85, 165, 0.1);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #8a7faa;
    margin-top: 0.25rem;
}

.hero-subtext {
    margin-top: 1em;
    font-size: 0.9rem;
    color: #8a7faa;
}

/* Stats */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(99, 85, 165, 0.1);
    margin-top: -44px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .navbar nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

    .navbar nav a {
        margin-left: 0;
        white-space: nowrap;
    }

    .nav-button,
    .nav-button-outline {
        padding: 10px 14px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
        padding: 1.25rem;
    }
}

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

.stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 90px 0;
}

.features h2, .pricing h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3em;
    font-size: 1.1rem;
    color: #5a5178;
}

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

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(99, 85, 165, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 6px 20px rgba(99, 85, 165, 0.12);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.15rem;
}

/* PAL Section */
.pal-section {
    background: linear-gradient(135deg, #3d2f8a 0%, #6355a5 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.pal-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.pal-badge {
    background-color: rgba(232, 130, 106, 0.2);
    color: #f2a08e;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(232, 130, 106, 0.35);
}

.pal-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 0;
}

.section-intro.light {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

.pal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

.pal-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 36px;
    border-radius: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pal-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(232, 130, 106, 0.5);
}

.pal-icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid rgba(232, 130, 106, 0.2);
}

.pal-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.pal-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .pal-section h2 {
        font-size: 2rem;
    }
    .pal-card {
        padding: 28px;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(160deg, #edf9f4 0%, #f0eeff 100%);
}

.pricing-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--card-bg);
    max-width: 420px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(99, 85, 165, 0.12);
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.price-desc {
    font-size: 1rem;
    color: #8a7faa;
    margin-bottom: 2em;
}

.pricing-guarantee {
    margin-top: 12px;
    font-weight: 800;
    color: #7a4b00;
    background: #fff3cd;
    border: 1px solid #ffe5a0;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2em;
}

.pricing-card li {
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
}

.pricing-card li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-subtext {
    font-size: 0.8rem;
    color: #8a7faa;
    margin-top: 1em;
}

.cta-button.full-width {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3d2f8a 0%, #6355a5 100%);
    color: #c8bfef;
    text-align: center;
    padding: 50px 0;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

.footer a {
    color: #ddd8f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #f2a08e;
    text-decoration: underline;
}

.legal-text {
    font-size: 0.75rem;
    color: rgba(200, 191, 239, 0.65);
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.4;
}

.copyright {
    opacity: 0.6;
    font-size: 0.85rem;
}
