/* ================================================
   Brayson Management — Small Business Division
   Brand Colors: Navy Blue (#2B3E7D) & Yellow (#FFD83D)
   Version: 1.0.0
   ================================================ */

:root {
    --primary-navy: #2B3E7D;
    --primary-yellow: #FFD83D;
    --dark-navy: #1a2547;
    --light-navy: #3d5298;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-muted: #595f6b;
    --dark-gray: #343a40;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease, opacity .3s ease, box-shadow .3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 50px;
}

:root { color-scheme: light; }

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--primary-navy); }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--primary-navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--light-navy); }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section    { padding: 80px 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { font-family: 'Georgia', serif; font-size: 2.4rem; color: var(--primary-navy); margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; color: var(--text-muted); }
.section-label { display: inline-block; background: var(--primary-yellow); color: var(--primary-navy); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; margin-bottom: 12px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 1rem; text-align: center; cursor: pointer;
    transition: var(--transition); border: 2px solid transparent; text-decoration: none;
    line-height: 1.4;
}
.btn-primary  { background: var(--primary-yellow); color: var(--primary-navy); border-color: var(--primary-yellow); }
.btn-primary:hover  { background: #e6c100; border-color: #e6c100; color: var(--primary-navy); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary-navy); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary-navy); border-color: var(--primary-navy); }
.btn-outline:hover { background: var(--primary-navy); color: var(--white); }
.btn-large { padding: 18px 44px; font-size: 1.1rem; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .brand-name { font-weight: 700; font-size: 1rem; color: var(--primary-navy); }
.nav-logo-text .brand-sub  { font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; }

.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-link  { color: var(--primary-navy); font-weight: 500; font-size: .95rem; padding: 6px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-yellow); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { background: var(--primary-yellow); color: var(--primary-navy) !important; padding: 10px 22px; border-radius: 6px; font-weight: 700; }
.nav-cta:hover { background: var(--primary-navy); color: var(--primary-yellow) !important; }
.nav-cta::after { display: none !important; }

/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: flex; align-items: center; gap: 5px;
    color: var(--primary-navy); font-weight: 500; font-size: .95rem;
    padding: 6px 0; background: none; border: none; cursor: pointer;
    font-family: inherit; position: relative;
}
.nav-dropdown-toggle::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--primary-yellow);
    transition: var(--transition);
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown-toggle[aria-expanded="true"]::after { width: 100%; }

.nav-dropdown-arrow {
    display: inline-block; width: 10px; height: 10px; margin-left: 2px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
    transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown-menu {
    display: none;
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%);
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,.14); border: 1px solid rgba(43,62,125,.08);
    min-width: 240px; z-index: 1100;
    padding: 8px 0;
    /* slide-in */
    opacity: 0; transform: translateX(-50%) translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.nav-dropdown-menu.open {
    display: block;
    opacity: 1; transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* small caret above the panel */
.nav-dropdown-menu::before {
    content: ''; position: absolute; top: -6px; left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent; border-right: 6px solid transparent;
    border-bottom: 6px solid var(--white);
    filter: drop-shadow(0 -1px 1px rgba(0,0,0,.06));
}

.nav-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; color: var(--dark-gray);
    font-size: .9rem; font-weight: 500; text-decoration: none;
    transition: background .15s ease, color .15s ease;
    white-space: nowrap;
}
.nav-dropdown-item:hover, .nav-dropdown-item:focus {
    background: var(--light-gray); color: var(--primary-navy);
    outline: none;
}
.nav-dropdown-item .dd-icon {
    font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0;
}
.nav-dropdown-divider {
    height: 1px; background: rgba(43,62,125,.08); margin: 6px 0;
}

.mobile-menu-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; color: var(--primary-navy); cursor: pointer;
    min-width: 44px; min-height: 44px; padding: 8px; border-radius: 4px;
    touch-action: manipulation;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 140px 0 90px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-label  { display: inline-block; background: rgba(255,216,61,.15); border: 1px solid rgba(255,216,61,.4); color: var(--primary-yellow); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 24px; }
.hero-title  { font-family: 'Georgia', serif; font-size: 3.6rem; color: var(--white); margin-bottom: 24px; line-height: 1.15; }
.hero-title span { color: var(--primary-yellow); }
.hero-subtitle { font-size: 1.25rem; color: rgba(255,255,255,.88); margin-bottom: 44px; line-height: 1.8; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-trust  { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .9rem; }
.hero-trust-item svg { color: var(--primary-yellow); flex-shrink: 0; }

/* ===== INDUSTRY TICKER ===== */
.industry-bar { background: var(--primary-yellow); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 28px; font-weight: 600; font-size: .92rem; color: var(--primary-navy); flex-shrink: 0; }
.ticker-dot  { width: 6px; height: 6px; background: var(--primary-navy); border-radius: 50%; opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
.services { background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border-top: 4px solid var(--primary-yellow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 64px; height: 64px; background: var(--primary-navy); color: var(--primary-yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; margin-bottom: 22px;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--primary-navy); }
.service-card p  { color: var(--text-muted); margin-bottom: 20px; font-size: .95rem; }
.service-features li { padding: 7px 0; color: var(--dark-gray); display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.service-features li::before {
    content: ''; display: inline-block; flex-shrink: 0; width: 16px; height: 16px;
    background-color: var(--primary-yellow); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232B3E7D'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* ===== WHO WE SERVE ===== */
.industries { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.industry-card {
    background: var(--light-gray); border-radius: var(--radius-md);
    padding: 28px 20px; text-align: center;
    border-bottom: 3px solid transparent; transition: var(--transition);
}
.industry-card:hover { border-bottom-color: var(--primary-yellow); transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-icon { font-size: 2.2rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 1rem; color: var(--primary-navy); margin: 0; }

/* ===== HOW IT WORKS (SMB) ===== */
.smb-hiw {
    background: var(--light-gray);
    padding: 100px 0;
}
.smb-hiw .section-header {
    margin-bottom: 64px;
}
.smb-hiw-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 900px;
    margin: 0 auto 72px;
}
.smb-hiw-steps::before {
    content: '';
    position: absolute;
    left: 47px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-yellow) 0%, rgba(255,216,61,.15) 100%);
    pointer-events: none;
}
.smb-hiw-step {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0 32px;
    padding-bottom: 48px;
}
.smb-hiw-step:last-child { padding-bottom: 0; }
.smb-hiw-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-navy);
    border: 3px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .3s ease, box-shadow .3s ease;
}
.smb-hiw-step:hover .smb-hiw-num {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(255,216,61,.2);
}
.smb-hiw-body {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 32px;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}
.smb-hiw-step:hover .smb-hiw-body {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.smb-hiw-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    background: var(--primary-navy);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.smb-hiw-body h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}
.smb-hiw-body p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.smb-hiw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.smb-hiw-tag {
    background: var(--white);
    border: 1px solid #dde3f0;
    color: var(--primary-navy);
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}
/* Outcome strip */
.smb-hiw-outcome {
    background: var(--primary-navy);
    border-radius: 16px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.smb-hiw-outcome::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255,216,61,.08) 0%, transparent 60%);
    pointer-events: none;
}
.smb-hiw-outcome-item {
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.smb-hiw-outcome-item + .smb-hiw-outcome-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.15);
}
.smb-hiw-outcome-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.smb-hiw-outcome-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 8px;
}
.smb-hiw-outcome-label {
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
}
/* Responsive */
@media (max-width: 768px) {
    .smb-hiw-steps::before { left: 27px; }
    .smb-hiw-step { grid-template-columns: 56px 1fr; gap: 0 16px; }
    .smb-hiw-num { width: 44px; height: 44px; font-size: 1rem; }
    .smb-hiw-body { padding: 20px 20px; }
    .smb-hiw-outcome {
        grid-template-columns: 1fr;
        padding: 32px 28px;
        gap: 32px;
    }
    .smb-hiw-outcome-item + .smb-hiw-outcome-item::before { display: none; }
}

/* ===== PRICING ===== */
.pricing { background: var(--white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e4e8f4;
    border-radius: var(--radius-lg);
    padding: 36px 32px 40px;
    position: relative;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}
.pricing-card.featured {
    background: var(--primary-navy);
    border-color: var(--primary-yellow);
    transform: scale(1.04);
    z-index: 1;
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary-yellow); color: var(--primary-navy);
    font-size: .72rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 4px 16px; border-radius: 50px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: .78rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,.6); }

.pricing-name {
    font-size: 1.45rem; font-weight: 700; color: var(--primary-navy);
    margin-bottom: 4px;
}
.pricing-card.featured .pricing-name { color: var(--white); }

.pricing-desc {
    font-size: .9rem; color: var(--text-muted); margin-bottom: 24px;
    min-height: 40px;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.7); }

.pricing-price {
    display: flex; align-items: flex-end; gap: 4px;
    margin-bottom: 6px;
}
.pricing-amount {
    font-size: 2.8rem; font-weight: 800; line-height: 1;
    color: var(--primary-navy);
}
.pricing-card.featured .pricing-amount { color: var(--primary-yellow); }
.pricing-currency {
    font-size: 1.3rem; font-weight: 700; color: var(--text-muted);
    align-self: flex-start; padding-top: 6px;
}
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.6); }
.pricing-period {
    font-size: .88rem; color: var(--text-muted); margin-bottom: 28px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.6); }

.pricing-divider {
    height: 1px; background: #e4e8f4; margin-bottom: 24px;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.15); }

.pricing-features {
    list-style: none; display: flex; flex-direction: column; gap: 11px;
    margin-bottom: 32px; flex: 1;
}
.pricing-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .92rem; color: var(--dark-gray); line-height: 1.4;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.88); }
.pricing-features li::before {
    content: '✓'; flex-shrink: 0; width: 20px; height: 20px;
    background: rgba(43,62,125,.08); color: var(--primary-navy);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 800; margin-top: 1px;
}
.pricing-card.featured .pricing-features li::before {
    background: rgba(255,216,61,.2); color: var(--primary-yellow);
}
.pricing-features li.muted { color: var(--text-muted); }
.pricing-card.featured .pricing-features li.muted { color: rgba(255,255,255,.35); }
.pricing-features li.muted::before {
    content: '–'; background: transparent; color: var(--text-muted);
}

.pricing-note {
    text-align: center; font-size: .82rem; color: var(--text-muted);
    margin-top: 40px;
}

/* add-on strip below pricing cards */
.pricing-addons {
    background: var(--light-gray); border-radius: var(--radius-lg);
    padding: 32px 36px; margin-top: 48px;
    display: grid; grid-template-columns: auto 1fr;
    gap: 16px 40px; align-items: start;
}
.pricing-addons h4 { grid-column: 1 / -1; color: var(--primary-navy); margin-bottom: 0; }
.addon-list {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.addon-item {
    display: flex; justify-content: space-between; gap: 24px;
    font-size: .9rem; color: var(--dark-gray);
}
.addon-price { font-weight: 700; color: var(--primary-navy); white-space: nowrap; }

@media (max-width: 968px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .pricing-addons { grid-template-columns: 1fr; }
}

/* ===== WHY BRAYSON ===== */
.why-brayson { background: var(--primary-navy); color: var(--white); }
.why-brayson .section-header h2 { color: var(--white); }
.why-brayson .section-header p   { color: rgba(255,255,255,.75); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.why-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg); padding: 32px 28px;
    transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); }
.why-icon { width: 52px; height: 52px; background: var(--primary-yellow); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.why-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }

/* ===== RESULTS / STATS ===== */
.results { background: var(--light-gray); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 56px; }
.stat-box { background: var(--white); border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--primary-yellow); }
.stat-box .stat-number { font-size: 2.8rem; font-weight: 800; color: var(--primary-navy); line-height: 1; margin-bottom: 8px; }
.stat-box .stat-label  { color: var(--text-muted); font-size: .9rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow); border-left: 4px solid var(--primary-yellow);
}
.testimonial-quote { font-size: 1.05rem; color: var(--dark-gray); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-navy); display: flex; align-items: center; justify-content: center; color: var(--primary-yellow); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--primary-navy); font-size: .95rem; }
.testimonial-role { color: var(--text-muted); font-size: .85rem; }
.stars { color: var(--primary-yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--primary-yellow); padding: 72px 0; text-align: center; }
.cta-band h2 { color: var(--primary-navy); font-family: 'Georgia', serif; font-size: 2.4rem; margin-bottom: 16px; }
.cta-band p  { color: var(--primary-navy); font-size: 1.1rem; margin-bottom: 36px; opacity: .85; }
.cta-band .btn-primary { background: var(--primary-navy); color: var(--white); border-color: var(--primary-navy); }
.cta-band .btn-primary:hover { background: var(--dark-navy); border-color: var(--dark-navy); }

/* ===== CONTACT SECTION ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.75rem; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--primary-yellow); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { fill: var(--primary-navy); }
.contact-item-text strong { display: block; color: var(--primary-navy); font-weight: 600; margin-bottom: 2px; }
.contact-item-text span, .contact-item-text a { color: var(--text-muted); font-size: .95rem; }

/* ===== FORMS ===== */
.contact-form, .newsletter-form-wrap {
    background: var(--light-gray); padding: 40px; border-radius: var(--radius-lg);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; color: var(--primary-navy); font-weight: 600; margin-bottom: 8px; font-size: .95rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: var(--radius-md);
    font-family: inherit; font-size: 1rem; color: var(--dark-gray); background: var(--white);
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-navy); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { width: 100%; padding: 16px; font-size: 1.05rem; }
.form-note { font-size: .82rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); padding: 120px 0 70px; text-align: center; }
.page-hero h1 { font-family: 'Georgia', serif; color: var(--white); font-size: 3rem; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--white); }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { background: var(--primary-navy); border-radius: var(--radius-lg); padding: 48px 36px; text-align: center; color: var(--white); }
.about-img-wrap .big-icon { font-size: 5rem; margin-bottom: 16px; }
.about-img-wrap h3 { color: var(--primary-yellow); margin-bottom: 8px; }
.about-img-wrap p  { color: rgba(255,255,255,.8); margin: 0; font-size: .95rem; }
.about-badge { position: absolute; bottom: -18px; right: -18px; background: var(--primary-yellow); color: var(--primary-navy); border-radius: var(--radius-lg); padding: 16px 20px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .badge-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .badge-label  { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

.about-text h2 { font-family: 'Georgia', serif; }
.about-text p  { color: var(--text-muted); line-height: 1.8; }
.about-values  { background: var(--light-gray); }
.values-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card    { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.value-icon    { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.15rem; color: var(--primary-navy); margin-bottom: 10px; }
.value-card p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

.team-section { background: var(--white); }
.team-card { background: var(--light-gray); border-radius: var(--radius-lg); padding: 40px 32px; max-width: 600px; margin: 0 auto; text-align: center; border-top: 4px solid var(--primary-yellow); }
.team-avatar { width: 96px; height: 96px; background: var(--primary-navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-yellow); font-size: 2.5rem; font-weight: 700; margin: 0 auto 20px; }
.team-card h3 { color: var(--primary-navy); margin-bottom: 4px; }
.team-card .role { color: var(--primary-yellow); font-weight: 600; font-size: .95rem; margin-bottom: 16px; background: var(--primary-navy); display: inline-block; padding: 4px 14px; border-radius: 50px; }
.team-card p  { color: var(--text-muted); line-height: 1.8; }

/* ===== NEWSLETTER PAGE ===== */
.newsletter-hero { background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); padding: 120px 0 80px; text-align: center; }
.newsletter-hero h1 { font-family: 'Georgia', serif; color: var(--white); font-size: 3rem; margin-bottom: 16px; }
.newsletter-hero p  { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto 40px; }
.newsletter-hero .hero-label { margin-bottom: 20px; }
.newsletter-section { background: var(--light-gray); }
.newsletter-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.newsletter-info h2 { font-family: 'Georgia', serif; margin-bottom: 16px; }
.newsletter-info p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.nl-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.nl-perk  { display: flex; align-items: flex-start; gap: 14px; }
.nl-perk-icon { width: 42px; height: 42px; background: var(--primary-yellow); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.nl-perk-text strong { display: block; color: var(--primary-navy); font-weight: 600; margin-bottom: 2px; }
.nl-perk-text span  { color: var(--text-muted); font-size: .9rem; }
.newsletter-past { background: var(--white); }
.past-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.past-card { background: var(--light-gray); border-radius: var(--radius-md); padding: 24px; border-left: 4px solid var(--primary-yellow); }
.past-card .issue-date  { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.past-card h4  { color: var(--primary-navy); font-size: 1rem; margin-bottom: 8px; }
.past-card p   { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--primary-navy); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p  { color: rgba(255,255,255,.7); font-size: .95rem; margin-top: 16px; line-height: 1.7; }
.footer-logo { height: 44px; width: auto; margin-bottom: 4px; }
.footer-logo-text .brand-name { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.footer-logo-text .brand-sub  { font-size: .72rem; color: rgba(255,255,255,.5); }
.footer-col h4  { color: var(--primary-yellow); font-size: 1rem; margin-bottom: 18px; }
.footer-col li  { margin-bottom: 10px; }
.footer-col li a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.footer-col li a:hover { color: var(--primary-yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p   { color: rgba(255,255,255,.5); font-size: .82rem; margin: 0; }
.footer-bottom a   { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary-yellow); color: var(--primary-navy); }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--light-gray); padding: 14px 0; border-bottom: 1px solid #e9ecef; }
.breadcrumb ol { display: flex; gap: 8px; align-items: center; font-size: .88rem; }
.breadcrumb li + li::before { content: '›'; color: var(--text-muted); margin-right: 4px; }
.breadcrumb a { color: var(--primary-navy); }
.breadcrumb li:last-child { color: var(--text-muted); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-yellow { color: var(--primary-yellow); }
.bg-light    { background: var(--light-gray); }
.bg-navy     { background: var(--primary-navy); }
.mt-8  { margin-top: 8px; }
.mb-24 { margin-bottom: 24px; }

/* ===== PAST CLIENTS ===== */
.past-clients { background: var(--light-gray); padding: 80px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.client-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 28px;
    box-shadow: 0 4px 6px rgba(0,0,0,.08); border-top: 4px solid var(--primary-yellow);
    transition: transform .3s ease, box-shadow .3s ease;
}
.client-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.client-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.client-avatar {
    width: 52px; height: 52px; background: var(--primary-navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-yellow); font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.client-name { font-weight: 700; color: var(--primary-navy); font-size: 1.05rem; }
.client-role { font-size: .85rem; color: var(--text-muted); }
.client-bio { color: var(--text-muted); font-size: .92rem; margin-bottom: 16px; }
.client-linkedin {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary-navy); font-size: .85rem; font-weight: 600;
    text-decoration: none; border: 1px solid #d0d8f0;
    padding: 6px 12px; border-radius: 50px; transition: var(--transition);
}
.client-linkedin:hover { background: var(--primary-navy); color: var(--white); }

/* ===== ALERT BANNERS ===== */
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; padding: 14px 20px; border-radius: var(--radius-md); margin-bottom: 20px; display: none; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; padding: 14px 20px; border-radius: var(--radius-md); margin-bottom: 20px; display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-title  { font-size: 2.6rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid  { grid-template-columns: 1fr; }
    .about-badge { position: static; margin-top: 20px; display: inline-block; }
    .newsletter-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section   { padding: 56px 0; }
    .hero     { padding: 110px 0 64px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .services-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row  { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-header h2 { font-size: 1.9rem; }

    .nav-menu {
        display: none; position: fixed; top: 0; left: -100%; flex-direction: column;
        background: var(--white); width: 85%; max-width: 320px; height: 100vh;
        padding: 80px 32px 40px; box-shadow: var(--shadow-lg);
        transition: left .3s ease; z-index: 999; align-items: flex-start;
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }

    /* Mobile dropdown — accordion */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-toggle { width: 100%; padding: 6px 0; justify-content: space-between; }
    .nav-dropdown-menu {
        position: static; transform: none; box-shadow: none;
        border: none; border-left: 3px solid var(--primary-yellow);
        border-radius: 0; padding: 4px 0 4px 12px; margin-top: 4px;
        background: var(--light-gray); min-width: unset; width: 100%;
        opacity: 1;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-item { padding: 8px 12px; font-size: .88rem; white-space: normal; }
    .nav-dropdown-divider { margin: 4px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-trust { flex-direction: column; gap: 12px; }
    .pricing-grid { max-width: 100%; }
    .btn-large { padding: 16px 28px; font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .container { padding: 0 16px; }
}
