/* ==========================================================================
   DRS CRM — Marketing site design system
   ========================================================================== */

:root {
    /*
     * DRS CRM logo palette
     * Logo gradient: light sky blue (top) → royal blue (bottom)
     */
    --brand-light: #89cff0;
    --brand-light-soft: #b8dff5;
    --brand-primary: #0056b3;
    --brand-primary-dark: #004094;
    --brand-mid: #2d7ec8;
    --brand-gradient: linear-gradient(180deg, #89cff0 0%, #0056b3 100%);
    --brand-gradient-soft: linear-gradient(180deg, #c5e8f7 0%, #b8dff5 25%, #dceef8 52%, #ffffff 100%);

    --sky-top: #c5e8f7;
    --sky-mid: #b8dff5;
    --sky-light: #dceef8;
    --sky-bottom: #f4f9fc;
    --bg-gradient: var(--brand-gradient-soft);
    --bg-section-sky: linear-gradient(180deg, #eef7fc 0%, #d4ebfa 48%, #e8f4fa 72%, #f4f9fc 100%);

    --brand-navy: var(--brand-primary);
    --brand-blue: var(--brand-primary);
    --brand-accent: var(--brand-mid);

    --navy-950: #003366;
    --navy-900: var(--brand-primary-dark);
    --navy-800: #004a8f;
    --navy-700: var(--brand-primary);
    --blue-600: var(--brand-primary);
    --blue-500: var(--brand-mid);
    --blue-100: #e8f4fc;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 86, 179, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 86, 179, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 86, 179, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--slate-800);
    background: var(--sky-bottom);
    -webkit-font-smoothing: antialiased;
}

.page-home {
    background: var(--bg-gradient);
    background-attachment: local;
}

.page-home .site-header {
    background: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(69, 135, 198, 0.12);
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
}

.site-header .navbar {
    padding: 14px 0;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.site-header .navbar-collapse {
    align-items: center;
}

@media (min-width: 992px) {
    .site-header .navbar-collapse {
        display: flex !important;
        flex-grow: 1;
        justify-content: space-between;
        gap: 32px;
    }

    .site-header .navbar-nav {
        flex: 1;
        justify-content: center;
    }
}

.site-header .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.site-header .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--slate-600) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 22px !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-primary) !important;
    background: rgba(137, 207, 240, 0.35);
}

.site-header .nav-actions {
    gap: 12px;
    flex-shrink: 0;
}

.navbar-toggler {
    border-color: var(--slate-200);
}

.navbar-toggler-icon {
    filter: invert(0.4);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--brand-gradient);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.45);
    color: var(--white) !important;
}

.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: transparent;
    color: var(--navy-900) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--slate-200);
    transition: border-color 0.2s, background 0.2s;
}

.btn-nav-outline:hover {
    border-color: var(--brand-primary);
    background: rgba(137, 207, 240, 0.15);
    color: var(--navy-900) !important;
}

/* Legacy button aliases (pricing, etc.) */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--white);
    color: var(--navy-900) !important;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--navy-900) !important;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: var(--navy-900) !important;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--slate-200);
    transition: all 0.2s;
}

.btn-white-outline:hover {
    border-color: var(--brand-primary);
    background: rgba(137, 207, 240, 0.15);
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero-pro {
    position: relative;
    padding: 72px 0 100px;
    overflow: hidden;
    background: transparent;
    color: var(--brand-navy);
    border-bottom: 1px solid rgba(69, 135, 198, 0.15);
}

.hero-pro-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
    z-index: 0;
}

.hero-pro-bg::after {
    content: none;
}

.hero-pro .container {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(137, 207, 240, 0.35);
    border: 1px solid rgba(0, 86, 179, 0.15);
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-pro h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--brand-navy);
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: var(--white);
    color: #111 !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: var(--brand-navy) !important;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--brand-primary);
    color: #111 !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    background: rgba(137, 207, 240, 0.35);
    color: var(--brand-navy) !important;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--brand-blue) !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-hero-ghost:hover {
    color: var(--brand-navy) !important;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--slate-600);
}

.hero-trust i {
    color: #16a34a;
    margin-right: 6px;
}

/* Hero preview card */
.hero-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
}

.hero-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
}

.hero-preview-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-200);
}

.hero-preview-header .dot:nth-child(1) { background: #f87171; }
.hero-preview-header .dot:nth-child(2) { background: #fbbf24; }
.hero-preview-header .dot:nth-child(3) { background: #4ade80; }

.hero-preview-title {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-500);
}

.hero-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.preview-stat {
    background: var(--white);
    padding: 16px 12px;
    text-align: center;
}

.preview-stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.preview-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.2;
}

.preview-stat small {
    font-size: 10px;
    color: var(--slate-500);
}

.hero-preview-rows {
    padding: 12px;
}

.preview-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.2s;
}

.preview-row:hover {
    background: var(--slate-50);
}

.preview-row .avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preview-row strong {
    display: block;
    font-size: 14px;
    color: var(--slate-800);
}

.preview-row small {
    font-size: 12px;
    color: var(--slate-500);
}

.preview-row > div {
    flex: 1;
    min-width: 0;
}

.badge-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
}

.badge-status.contacted { background: rgba(137, 207, 240, 0.45); color: var(--brand-primary); }
.badge-status.qualified { background: #ffedd5; color: #c2410c; }
.badge-status.new { background: var(--slate-100); color: var(--slate-600); }

/* Sky background sections (testimonials, steps, etc.) */
.section-bg-sky {
    background: var(--bg-section-sky);
    padding: 80px 0;
}

.section-bg-sky--tight-top {
    padding-top: 56px;
}

.section-bg-sky--stats {
    padding: 24px 0 72px;
    margin-top: -56px;
    position: relative;
    z-index: 2;
}

/* Stats strip */
.stats-strip {
    margin-top: 0;
    position: relative;
    z-index: 2;
    padding: 0;
    background: transparent;
}

.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
}

.stat-pill-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-100), var(--brand-light-soft));
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-pill strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-900);
}

.stat-pill span {
    font-size: 13px;
    color: var(--slate-500);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section-pro {
    padding: 80px 0;
    background: var(--white);
}

.page-home .section-pro.section-pro--white {
    background: var(--white);
}

.page-home #features.section-pro {
    background: var(--white);
    padding-top: 80px;
}

.section-pro--muted,
.section-pro.section-bg-sky {
    background: var(--bg-section-sky);
}

.section-head {
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary);
    background: rgba(137, 207, 240, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.page-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.0625rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

/* Module blocks */
.module-block {
    margin-bottom: 56px;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    background: var(--white);
}

.module-block--leads { border-top: 4px solid var(--brand-primary); }
.module-block--process { border-top: 4px solid var(--brand-mid); background: linear-gradient(180deg, #eef7fc 0%, var(--white) 120px); }
.module-block--settings { border-top: 4px solid var(--brand-light); }
.module-block--team { border-top: 4px solid var(--brand-primary-dark); background: linear-gradient(180deg, #eef7fc 0%, var(--white) 120px); }

.module-block-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.module-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.module-block-head h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Pro cards */
.pro-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pro-card:hover {
    border-color: var(--brand-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pro-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.pro-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(137, 207, 240, 0.25);
    border: 1px solid rgba(0, 86, 179, 0.12);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.pro-card:hover .pro-card-icon {
    background: var(--brand-gradient);
    border-color: transparent;
    color: var(--white);
}

.pro-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0;
    line-height: 1.3;
    padding-top: 8px;
}

.pro-card > p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
}

.pro-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pro-card-list li {
    font-size: 13px;
    color: var(--slate-600);
    padding: 5px 0 5px 22px;
    position: relative;
}

.pro-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
}

.pro-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s;
}

.pro-card-link:hover {
    color: var(--navy-900);
    gap: 12px;
}

/* Steps */
.step-card-pro {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    height: 100%;
    text-align: left;
    transition: box-shadow 0.2s;
}

.step-card-pro:hover {
    box-shadow: var(--shadow-md);
}

.step-num {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.step-card-pro h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.step-card-pro p {
    font-size: 15px;
    color: var(--slate-500);
    margin: 0;
    line-height: 1.6;
}

/* CTA banner */
.cta-banner {
    padding: 80px 0;
    background: var(--white);
}

.cta-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px 56px;
    border-radius: var(--radius-lg);
    background: var(--brand-gradient);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-banner-inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-banner-inner p {
    margin: 0;
    opacity: 0.85;
    font-size: 1.0625rem;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-cta-light {
    padding: 14px 28px;
    background: var(--white);
    color: var(--navy-900) !important;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-cta-light:hover {
    transform: translateY(-2px);
    color: var(--navy-900) !important;
}

.btn-cta-outline {
    padding: 14px 28px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

/* Testimonials */
.testimonial-pro {
    height: 100%;
    background: var(--white);
    border: none;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 45, 91, 0.08);
    transition: box-shadow 0.25s, transform 0.25s;
    text-align: left;
}

.testimonial-pro:hover {
    box-shadow: 0 12px 32px rgba(0, 45, 91, 0.12);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 32px;
    color: var(--brand-blue);
    opacity: 0.35;
    margin-bottom: 12px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--brand-navy);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-pro > p {
    font-size: 15px;
    color: var(--brand-navy);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-person {
    display: block;
    padding-top: 4px;
}

.testimonial-person strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-navy);
}

.testimonial-person small {
    font-size: 14px;
    color: var(--brand-accent);
    font-weight: 500;
}

/* Legacy testimonial cards (pricing page) */
.testimonial-card {
    background: var(--white);
    border: none;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 45, 91, 0.08);
    height: 100%;
}

.testimonial-text {
    font-size: 15px;
    color: var(--brand-navy);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--brand-navy);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--white);
    color: var(--slate-600);
    padding: 28px 0 24px;
    border-top: 1px solid var(--slate-200);
}

.site-footer .container {
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-navy);
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--brand-primary);
    opacity: 1;
}

.footer-divider {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-accent);
    opacity: 0.5;
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    opacity: 0.65;
}

/* --------------------------------------------------------------------------
   Legal pages (Privacy, Terms)
   -------------------------------------------------------------------------- */
.hero--compact {
    padding: 64px 0 56px;
}

.legal-updated {
    font-size: 14px !important;
    color: var(--brand-accent) !important;
    font-weight: 600;
    margin-top: 12px !important;
}

.legal-section {
    padding: 56px 0 80px;
    background: var(--white);
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content > p:first-child {
    font-size: 17px;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 32px 0 12px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--slate-600);
}

.legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-contact {
    list-style: none;
    padding-left: 0;
    background: rgba(137, 207, 240, 0.12);
    border: 1px solid rgba(69, 135, 198, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}

.legal-contact li {
    margin-bottom: 10px;
}

.legal-contact li:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Legacy pages: Hero, pricing, contact, feature cards
   -------------------------------------------------------------------------- */
.hero {
    background: var(--bg-gradient);
    color: var(--brand-navy);
    padding: 80px 0 70px;
    text-align: center;
    border-bottom: 1px solid rgba(69, 135, 198, 0.15);
}

.hero h1 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--brand-navy);
}

.hero p {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 640px;
    margin: 0 auto;
}

.section-pro--white {
    background: var(--white);
}

/* Pricing page */
.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.plan-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.plan-badge--free { background: var(--slate-100); color: var(--slate-600); }
.plan-badge--popular { background: var(--brand-gradient); color: var(--white); }
.plan-badge--pro { background: #dcfce7; color: #15803d; }
.plan-badge--enterprise { background: #fef3c7; color: #b45309; }

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 12px;
    min-height: 42px;
}

.pricing-records {
    font-size: 14px;
    color: var(--brand-primary);
    background: rgba(137, 207, 240, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--slate-600);
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: #16a34a;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-note {
    font-size: 14px;
    color: var(--slate-500);
}

.pricing-note i {
    color: var(--brand-primary);
    margin-right: 6px;
}

.pricing-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
}

.pricing-table {
    margin: 0;
}

.pricing-table thead th {
    background: var(--brand-gradient);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 12px;
    border: none;
    text-align: center;
}

.pricing-table thead th:first-child {
    text-align: left;
    border-radius: 8px 0 0 0;
}

.pricing-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.pricing-table tbody td {
    padding: 14px 12px;
    font-size: 14px;
    vertical-align: middle;
    border-color: var(--slate-200);
}

.pricing-table tbody td:first-child {
    font-weight: 500;
    color: var(--slate-800);
}

.pricing-yes { color: #16a34a; }
.pricing-no { color: #dc2626; opacity: 0.7; }

.main-panel {
    background: var(--white);
    padding: 60px 0;
}

.content-section {
    margin-bottom: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--slate-200);
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 36px;
    color: var(--blue-600);
    margin-bottom: 16px;
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--slate-500);
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    text-align: left;
}

.feature-card ul li {
    font-size: 14px;
    color: var(--slate-600);
    padding: 6px 0 6px 22px;
    position: relative;
}

.feature-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #22c55e;
    position: absolute;
    left: 0;
    font-size: 11px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-900);
    margin: 16px 0;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate-500);
}

/* Contact page */
.contact-section {
    padding: 64px 0 80px;
    background: var(--bg-section-sky);
}

.contact-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
    padding: 36px 32px;
    height: 100%;
}

.contact-panel-head {
    margin-bottom: 28px;
}

.contact-panel-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-panel-head p {
    font-size: 15px;
    color: var(--slate-500);
    margin: 0;
    line-height: 1.6;
}

.contact-panel--info {
    background: linear-gradient(180deg, var(--white) 0%, #f8fbfe 100%);
}

.contact-alert {
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
}

.contact-form-fields .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid var(--slate-200);
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.12);
}

.form-control::placeholder {
    color: var(--slate-400);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--slate-200);
}

.contact-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(137, 207, 240, 0.35);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.contact-info-list strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.contact-info-list a,
.contact-info-list span {
    font-size: 15px;
    color: var(--brand-navy);
    line-height: 1.5;
    text-decoration: none;
}

.contact-info-list a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.contact-quick-help {
    background: rgba(137, 207, 240, 0.2);
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 8px;
}

.contact-quick-help h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.contact-quick-help p {
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.55;
}

.btn-primary-custom {
    background: var(--brand-gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive */
@media (max-width: 991px) {
    .hero-pro {
        padding: 56px 0 64px;
    }

    .hero-preview {
        margin-top: 16px;
    }

    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-block {
        padding: 28px 20px;
    }

    .cta-banner-inner {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .site-header .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
        margin-top: 12px;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--slate-200);
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-bg-sky--stats {
        margin-top: -24px;
        padding-bottom: 48px;
    }

    .stats-strip-inner {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .stat-pill {
        border-bottom: 1px solid var(--slate-100);
        padding-bottom: 16px;
    }

    .stat-pill:last-child {
        border-bottom: none;
    }

    .hero-preview-stats {
        grid-template-columns: 1fr;
    }

    .preview-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 12px;
    }

    .preview-stat strong {
        font-size: 18px;
    }

    .contact-panel {
        padding: 28px 20px;
    }

    .contact-section {
        padding: 48px 0 64px;
    }
}
