:root {
    --navy: #293241; --blue: #3D5A80; --coral: #EE6C4D; --coral-dark: #d95a3a;
    --coral-bright: #FF9472; --teal: #98C1D9;
    --text: #1e293b; --text-secondary: #475569; --text-muted: #64748b; --text-light: #94a3b8;
    --bg: #ffffff; --bg-alt: #f8fafc; --border: #e2e8f0;
    --green: #2D936C; --yellow: #F4A300;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); -webkit-font-smoothing: antialiased; }

/* HEADER */
header { border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); background: rgba(255,255,255,0.95); }
.header-inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; background: var(--coral); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 14px; letter-spacing: -0.5px; }
.logo-name { font-size: 18px; font-weight: 700; color: var(--navy); }
nav { display: flex; align-items: center; gap: 36px; }
nav a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.15s; }
nav a:hover { color: var(--navy); }
.header-cta { padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; background: var(--coral); color: white !important; }
.header-cta:hover { background: var(--coral-dark); }
.hamburger { display: none; }
.hamburger-btn { display: none; cursor: pointer; padding: 8px; }
.hamburger-btn span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; border-radius: 1px; }

/* LAYOUT PRIMITIVES */
.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.btn-primary { display: inline-block; background: var(--coral); color: white; padding: 16px 32px; font-size: 17px; font-weight: 700; border-radius: 8px; text-decoration: none; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; }
.btn-ghost:hover { color: white; border-color: white; }
.btn-secondary { display: inline-block; background: white; color: var(--coral); padding: 14px 28px; font-size: 16px; font-weight: 700; border-radius: 8px; text-decoration: none; border: 1px solid var(--coral); }
.btn-secondary:hover { background: var(--bg-alt); }

/* HERO */
.hero { padding: 76px 0 60px; background: var(--navy); color: white; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--navy) 0%, #344a68 40%, var(--navy) 100%); opacity: 0.7; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.08; letter-spacing: -1px; margin-bottom: 22px; }
.hero h1 .accent { color: var(--coral-bright); }
.hero-sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 520px; }
.hero-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-footnote { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 28px; max-width: 520px; }

/* GROWTH CARD (homepage right column) */
.growth-card { background: white; border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08); overflow: hidden; color: var(--text); transform: rotate(-0.4deg); }
.gc-top { padding: 20px 24px 16px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%); }
.gc-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.gc-title { font-size: 16px; font-weight: 700; color: var(--text); }
.gc-body { padding: 18px 24px 22px; }
.gc-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--border); }
.gc-row:last-child { border-bottom: none; padding-bottom: 0; }
.gc-row-label { font-size: 14px; color: var(--text-secondary); }
.gc-row-val { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
.gc-row-val.up { color: var(--green); }
.gc-foot { background: var(--bg-alt); padding: 14px 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.gc-foot-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.gc-foot-val { font-size: 22px; font-weight: 800; color: var(--coral); letter-spacing: -0.5px; }

/* PAGE HERO (inner pages — smaller, no card) */
.page-hero { padding: 64px 0 48px; background: var(--navy); color: white; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--navy) 0%, #344a68 40%, var(--navy) 100%); opacity: 0.7; }
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--coral-bright); margin-bottom: 14px; }
.page-hero h1 { font-size: 42px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.page-hero p { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 660px; }

/* STATS STRIP */
.stats-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 36px 0; }
.stats-label { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 22px; }
.stats-label .line { width: 32px; height: 1px; background: var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 980px; margin: 0 auto; }
.stat { text-align: center; }
.stat-num { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -1.5px; }
.stat-num .plus { color: var(--coral); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 10px; font-weight: 500; line-height: 1.4; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--navy); color: white; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--navy) 0%, #2a3d56 50%, var(--navy) 100%); opacity: 0.6; }
.section-dark .container { position: relative; z-index: 1; }
.section-top { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.section-dark .section-eyebrow { color: var(--coral-bright); }
.section-top h2 { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 14px; }
.section-dark .section-top h2 { color: white; }
.section-top p { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }
.section-dark .section-top p { color: rgba(255,255,255,0.8); }

/* 5-Ps GRID */
.ps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.p-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 22px 18px; text-align: center; }
.p-letter { width: 44px; height: 44px; background: var(--coral); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 14px; }
.p-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.p-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* BENEFITS (dark) */
.ben-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.ben-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 26px 22px; }
.ben-icon { font-size: 22px; margin-bottom: 12px; }
.ben-card h3 { font-size: 17px; font-weight: 700; color: white; line-height: 1.35; margin-bottom: 8px; }
.ben-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* SERVICES CARDS */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.svc-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 30px 28px; transition: border-color 0.2s, transform 0.2s; }
.svc-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.svc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.svc-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
.svc-list { list-style: none; padding: 0; margin: 0; }
.svc-list li { font-size: 13px; color: var(--text-muted); padding: 4px 0; padding-left: 16px; position: relative; }
.svc-list li::before { content: '→'; color: var(--coral); position: absolute; left: 0; font-weight: 700; }

/* SERVICES PAGE — full detail */
.svc-detail { max-width: 880px; margin: 0 auto; }
.svc-block { padding: 36px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 200px 1fr; gap: 40px; }
.svc-block:last-child { border-bottom: none; }
.svc-block-label { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); padding-top: 4px; }
.svc-block h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.4px; }
.svc-block p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.svc-block ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.svc-block ul li { font-size: 14px; color: var(--text); padding: 5px 0; padding-left: 18px; position: relative; break-inside: avoid; }
.svc-block ul li::before { content: '→'; color: var(--coral); position: absolute; left: 0; font-weight: 700; }

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; max-width: 980px; margin: 0 auto; align-items: start; }
.about-portrait { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 14px; padding: 38px 32px; color: white; }
.about-portrait .name { font-size: 22px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 4px; }
.about-portrait .role { font-size: 14px; color: var(--coral-bright); font-weight: 600; margin-bottom: 24px; }
.about-portrait .meta { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.about-portrait .meta strong { color: white; font-weight: 600; display: block; margin-top: 12px; margin-bottom: 2px; text-transform: uppercase; font-size: 11px; letter-spacing: 1.2px; }
.about-body h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; margin-top: 28px; letter-spacing: -0.4px; }
.about-body h3:first-child { margin-top: 0; }
.about-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.about-body .clients { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.about-body .client-pill { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: 13px; color: var(--text); font-weight: 600; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 880px; margin: 0 auto; }
.contact-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 14px; padding: 36px 32px; }
.contact-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.contact-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 22px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--border); }
.contact-line:first-of-type { border-top: none; padding-top: 0; }
.contact-line .icon { width: 38px; height: 38px; background: var(--coral); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.contact-line .lbl { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.contact-line .val { font-size: 16px; color: var(--text); font-weight: 600; }
.contact-line .val a { color: var(--text); text-decoration: none; }
.contact-line .val a:hover { color: var(--coral); }

/* REMIDI CALLOUT */
.remidi-callout { padding: 64px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.rc-card { max-width: 920px; margin: 0 auto; background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--coral); border-radius: 12px; padding: 36px 40px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; box-shadow: 0 8px 24px rgba(41,50,65,0.04); }
.rc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.rc-mark { width: 22px; height: 22px; background: var(--coral); color: white; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; }
.rc-card h3 { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; margin-bottom: 10px; line-height: 1.2; }
.rc-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; max-width: 560px; }
.rc-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; background: var(--coral); color: white; border-radius: 8px; text-decoration: none; font-size: 15px; font-weight: 700; white-space: nowrap; }
.rc-cta:hover { background: var(--coral-dark); }
.rc-cta .arrow { font-size: 17px; line-height: 1; }

/* NAV — external link arrow */
nav a .ext { font-size: 11px; opacity: 0.55; margin-left: 3px; }

/* CTA BLOCK */
.cta-block { padding: 64px 0; background: var(--bg-alt); border-top: 1px solid var(--border); text-align: center; }
.cta-block h2 { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.6px; }
.cta-block p { font-size: 17px; color: var(--text-secondary); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer { padding: 40px 0 24px; background: #1e293b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 18px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-mark { width: 28px; height: 28px; background: var(--coral); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 12px; }
.footer-brand-name { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; margin-top: 8px; max-width: 320px; }
.footer-heading { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; display: block; margin-bottom: 5px; }
.footer-link:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
    .hero-grid, .ben-grid, .footer-grid, .svc-grid, .ps-grid, .about-grid, .contact-grid, .rc-card { grid-template-columns: 1fr !important; }
    .rc-card { padding: 28px 24px; gap: 20px; }
    .svc-block { grid-template-columns: 1fr; gap: 12px; }
    .svc-block ul { columns: 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .hero h1, .page-hero h1 { font-size: 34px; }
    .hero, .page-hero { padding: 56px 0; }
    .container { padding: 0 20px; } .header-inner { padding: 0 20px; }
    .hamburger-btn { display: block; }
    nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 20px 40px; flex-direction: column; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    nav a { font-size: 16px; padding: 8px 0; }
    .hamburger:checked ~ nav { display: flex; }
}
