﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Core public palette */
:root {
    --primary-purple: #374151;
    --primary-pink: #111827;
    --accent-violet: #9ca3af;
    --accent-rose: #e5e7eb;

    --accent-blue: #3e6ce8;
    --accent-blue-dark: #3260de;
    --accent-blue-light: #dbe3fd;
    --accent-blue-muted: #bdcef9;

    --light-bg: #f9fafb;
    --lighter-bg: #ffffff;
    --purple-bg: #f9fafb;
    --section-bg: #f9fafb;
    --surface-dark: #111827;

    --text-light: #ffffff;
    --text-dark: #111827;
    --text-dark-rgb: 17, 24, 39;
    --text-muted: #6b7280;
    --text-muted-strong: #4b5563;
    --footer-text: White;
    --footer-text-muted: #d1d5db;

    --wall-stone: #d1d5db;
    --success-color: #16a34a;
    --error-color: #b91c1c;
    --warning-color: #d97706;
    --success-bg: rgba(22, 163, 74, 0.08);
    --error-bg: rgba(185, 28, 28, 0.08);
    --warning-bg: rgba(217, 119, 6, 0.08);

    --card-bg: #ffffff;
    --card-gradient: #ffffff;
    --border-color: #e5e7eb;
    --hover-bg: #e5e7eb;

    --primary-gradient: linear-gradient(135deg, #374151, #111827);
    --comparison-grawlr-tint: #dbe3fd;

    --page-hero-bg: url('/assets/images/page/background-cta-header-condensed-white.png');
}

/* Buttons — shared across public marketing pages */
.btn-primary {
    background: var(--primary-gradient);
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Pricing highlight (contact “24 hours” uses .grawlr-text-highlight in company.css) */
.grawlr-text-highlight,
.pricing-trial-highlight {
    display: inline;
    background-color: transparent;
    color: inherit;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    box-decoration-break: initial;
    -webkit-box-decoration-break: initial;
}

.main-content {
    flex: 1 0 auto;
    background-color: var(--lighter-bg);
}

a.contact-email {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

a.contact-email:hover {
    color: var(--accent-blue-dark);
    text-decoration: underline;
}
