/*
 Theme Name:   Core Institutional
 Theme URI:    https://coreinstitutional.com
 Description:  Core Institutional Child Theme
 Author:       Core Institutional
 Template:     astra
 Version:      1.0.0
 Text Domain:  ci-theme
*/

/* ── Brand Colors ────────────────────────────────────────────── */
:root {
    --ci-blue:       #1A3A5C;
    --ci-blue-dark:  #0D3A57;
    --ci-blue-light: #D5E8F0;
    --ci-orange:     #D97706;
    --otter-gray:       #F4F7FA;
    --otter-text:       #1A1A1A;
    --otter-muted:      #555555;
}

/* ── Typography ──────────────────────────────────────────────── */
body {
    font-family: 'Inter', 'Arial', sans-serif;
    color: var(--otter-text);
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--ci-blue-dark);
    line-height: 1.25;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary,
.wp-block-button__link {
    background-color: var(--ci-blue);
    color: #ffffff;
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover,
.wp-block-button__link:hover {
    background-color: var(--ci-blue-dark);
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--ci-blue);
    border: 2px solid var(--ci-blue);
    border-radius: 4px;
    padding: 10px 26px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-secondary:hover {
    background-color: var(--ci-blue);
    color: #ffffff;
}

/* ── Industry Cards ──────────────────────────────────────────── */
.otter-industry-card {
    background: #ffffff;
    border: 1px solid #E2EBF0;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.otter-industry-card:hover {
    box-shadow: 0 8px 32px rgba(26, 95, 138, 0.12);
    transform: translateY(-2px);
}
.otter-industry-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.otter-industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.otter-trust-bar {
    background: var(--ci-blue-dark);
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.otter-trust-bar span {
    margin: 0 20px;
    opacity: 0.9;
}

/* ── Hero Section ────────────────────────────────────────────── */
.otter-hero {
    background: linear-gradient(135deg, var(--ci-blue-dark) 0%, var(--ci-blue) 100%);
    color: #ffffff;
    padding: 80px 0;
}
.otter-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.otter-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 620px;
    margin-bottom: 32px;
}

/* ── Lead Capture Strip ──────────────────────────────────────── */
.otter-cta-strip {
    background: var(--ci-blue-light);
    border-left: 4px solid var(--ci-orange);
    padding: 40px 32px;
    border-radius: 4px;
    text-align: center;
}
.otter-cta-strip h2 {
    margin-bottom: 12px;
}

/* ── HIPAA / Compliance Badge ────────────────────────────────── */
.otter-compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EFF8F1;
    color: #166534;
    border: 1px solid #BBF7D0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Testimonial Cards ───────────────────────────────────────── */
.otter-testimonial {
    background: var(--otter-gray);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
}
.otter-testimonial .stars {
    color: var(--ci-orange);
    font-size: 1rem;
    margin-bottom: 12px;
}
.otter-testimonial blockquote {
    font-style: italic;
    margin: 0 0 16px;
    border: none;
    padding: 0;
}
.otter-testimonial .attribution {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--ci-blue-dark);
}
.otter-testimonial .attribution span {
    font-weight: 400;
    color: var(--otter-muted);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .otter-hero {
        padding: 48px 0;
    }
    .otter-industry-card {
        margin-bottom: 16px;
    }
}
