/* ============================================
   LEASETIME — FOUNDER'S PROFILE PAGE CSS
   Aligned with company-profile.css system
   Brand: #FAB702 | #ffffff | #0a0a0a
   Fonts: Syne (headings) + Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');



/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--offwhite);
    color: var(--black);
    overflow-x: hidden;
}

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--grey-bg); }
::-webkit-scrollbar-thumb { background: var(--brand); }

/* ================================================
   KEYFRAMES
================================================ */
@keyframes fpFadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fpFadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes fpTagFade  { from { opacity:0; letter-spacing:.30em; } to { opacity:1; letter-spacing:.18em; } }
@keyframes fpLineGrow { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@keyframes fpPulse    { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.8); } }
@keyframes fpShimmer  { 0% { background-position:0% 50%; } 100% { background-position:200% 50%; } }
@keyframes fpTickerScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ================================================
   SCROLL-REVEAL  (fp- prefix, same logic as cp-)
================================================ */
.fp-reveal {
    opacity:0; transform:translateY(32px);
    transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.fp-reveal.d1 { transition-delay:.05s; }
.fp-reveal.d2 { transition-delay:.12s; }
.fp-reveal.d3 { transition-delay:.20s; }
.fp-reveal.d4 { transition-delay:.28s; }
.fp-reveal.fp-visible { opacity:1; transform:none; }

/* ================================================
   SHARED LABEL  (same as cp-tag)
================================================ */
.fp-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-size: 11px; font-weight: 500;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 14px;
}
.fp-label::before { content:''; display:block; width:24px; height:1px; background:var(--brand); }

/* ================================================
   SHARED SECTION WRAPPER  — same as company-profile uses .container
   fp-section-wrap mirrors .container width behaviour
================================================ */
.fp-section-wrap {
    width: 100%;
    max-width: 1140px; /* match Bootstrap container */
    margin: 0 auto;
    padding: 0 15px;
}

.fp-hero-left {
    width: 100%;
    display: flex;
    justify-content: center;
}
.fp-hero-left .fp-section-wrap {
    max-width: 1140px;
}

.fp-hero-desc,
.fp-hero-stats {
    max-width: 520px;
}
/* ================================================
   HERO  — mirrors cp-hero exactly
================================================ */
.fp-hero {
    position: relative;
    min-height: 520px;
     display: flex;
    align-items: flex-end;
    /*grid-template-columns: 1fr 1fr;*/
    overflow: hidden;
    background: var(--black);
}


/* left gold bar */
.fp-hero::before {
    content: '';
    position: absolute; left:0; top:0; bottom:0; width:3px;
    background: linear-gradient(to bottom, transparent, var(--brand) 30%, #fffefa 70%, transparent);
    z-index: 3;
}

/* bottom gold line */
.fp-hero::after {
    content: '';
    position: absolute; bottom:52px; left:0; right:0; height:2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    transform-origin: left; z-index: 3;
    animation: fpLineGrow 1.2s .8s ease both;
}

/* ---- LEFT PANEL ---- */
.fp-hero-left {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: 
        linear-gradient(105deg, rgba(10,10,10,.95) 55%, rgba(10,10,10,.85) 100%),
        url('../images/founderbanner.jfif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.fp-hero-left .fp-section-wrap {
    padding: 140px 15px 100px;
}

/* eyebrow */
.fp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 22px;
    /*background: rgba(250,183,2,.09);*/
    border: 1px solid #F9B701;
    padding: 6px 16px 6px 12px;
    width: fit-content;
    animation: fpFadeIn .6s ease both;
}
.fp-hero-eyebrow::before {
    content: '';
    display: block; width:6px; height:6px; border-radius:50%;
    background: var(--brand); flex-shrink:0;
    animation: fpPulse 2s 1s ease infinite;
}
.fp-hero-eyebrow .fp-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: .18em; margin: 0;
    color: var(--white); opacity: 0;
    animation: fpTagFade .8s .4s ease forwards;
}
.fp-hero-eyebrow .fp-label::before { display: none; }

/* name heading */
.fp-hero-name {
    font-family: var(--font-head);
    font-size: clamp(36px,5.5vw,68px);
    font-weight: 800; color: var(--white);
    line-height: 1.05; letter-spacing: -.02em;
    margin: 0 0 18px;
    animation: fpFadeUp .9s .3s cubic-bezier(.22,1,.36,1) both;
}
.fp-hero-name strong { font-weight: 800; }
.fp-hero-name em {
    font-style: normal;
    background: var(--brand);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fpShimmer 3s 1.5s linear infinite;
    -webkit-text-stroke: 1px #fff;
}

/* subtitle */
.fp-hero-title {
    font-family: var(--font-body); font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .10em;
    color: var(--white); margin: 0 0 20px;
    opacity: 0;
    animation: fpFadeUp .9s .42s cubic-bezier(.22,1,.36,1) forwards;
}

/* desc */
.fp-hero-desc {
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,.50);
    max-width: 520px; line-height: 1.8; margin: 0 0 44px;
    opacity: 0;
    animation: fpFadeUp .9s .55s cubic-bezier(.22,1,.36,1) forwards;
}

/* stats bar — identical to cp-hero-stats */
.fp-hero-stats {
    display: flex; gap: 0;
    border: 1px solid #F9B701;;
    max-width: 520px;
    opacity: 0;
    animation: fpFadeUp .9s .70s cubic-bezier(.22,1,.36,1) forwards;
}
.fp-hero-stat {
    flex: 1; padding: 22px 18px; text-align: center;
    border-right: 1px solid #F9B701;;
}
.fp-hero-stat:last-child { border-right: none; }
.fp-hs-num {
    font-family: var(--font-head); font-size: 28px; font-weight: 800;
    color: var(--brand); display: block; line-height: 1;
}
.fp-hs-lbl {
    font-family: var(--font-body); font-size: 10px; font-weight: 400;
    color: var(--white); letter-spacing: .08em; text-transform: uppercase;
    margin-top: 5px; display: block;
}

/* ---- RIGHT PANEL (image) ---- */
.fp-hero-right {
    position: relative; overflow: hidden;
}
.fp-hero-img {
    position: absolute; inset: 0;
    background: url('../images/founder.jpg') center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.fp-hero:hover .fp-hero-img { transform: scale(1); }

.fp-hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,.65) 0%, transparent 55%),
                linear-gradient(to top,   rgba(10,10,10,.55) 0%, transparent 60%);
    z-index: 1;
}
.fp-hero-diag {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, rgba(10,10,10,.90) 0%, transparent 30%);
}

/* ---- TICKER ---- */
.fp-hero-ticker {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 52px; overflow: hidden; z-index: 4;
    background: var(--brand);
    display: flex; align-items: center;
}
.fp-ticker-track {
    display: flex; align-items: center; gap: 0;
    animation: fpTickerScroll 28s linear infinite;
    width: max-content;
}
.fp-ticker-track:hover { animation-play-state: paused; }
.fp-ticker-item {
    font-family: var(--font-body); font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--white); white-space: nowrap;
    padding: 0 28px;
    border-right: 1px solid rgba(10,10,10,.15);
}
.fp-ticker-item:last-child { border-right: none; }

/* ================================================
   BREADCRUMB — identical to cp-breadcrumb
================================================ */
.fp-breadcrumb {
    background: #111;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 14px 0;
}
.fp-breadcrumb-inner {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-size: 12px;
    color: rgba(255,255,255,.35); letter-spacing: .04em;
}
.fp-breadcrumb-inner a { color:rgba(255,255,255,.35); text-decoration:none; transition:color .2s; }
.fp-breadcrumb-inner a:hover { color: var(--brand); }
.fp-breadcrumb-inner .bsep { color: var(--brand); font-size: 10px; }

/* ================================================
   EXECUTIVE OVERVIEW BAND
   Mirrors cp-about (white bg, two-col)
================================================ */
.fp-overview {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}
.fp-overview-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 15px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: center;
}

.fp-ov-quote {
    font-family: var(--font-head); font-size: clamp(20px,2.2vw,28px); font-weight: 700;
    color: var(--black); line-height: 1.35;
    border-left: 3px solid var(--brand);
    padding: 20px 28px;
    background: rgba(250,183,2,.04);
    margin: 0;
}
.fp-ov-quote em { font-style: normal; color: var(--brand); }

.fp-ov-text {
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    color: #444; line-height: 1.95; margin: 0 0 24px;
}

.fp-ov-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fp-ov-chip {
    background: var(--offwhite); color: var(--black);
    font-family: var(--font-body); font-size: 10px; font-weight: 500;
    padding: 5px 12px; text-transform: uppercase; letter-spacing: .06em;
    border: 1px solid var(--border);
    transition: background .2s, border-color .2s, color .2s;
}
.fp-ov-chip:hover { background: var(--brand); border-color: var(--brand); color: var(--black); }

/* ================================================
   CORE EXPERTISE
   Mirrors cp-services (black bg, grid cards)
================================================ */
.fp-expertise {
    background: var(--black);
    padding: 96px 0;
    position: relative; overflow: hidden;
}

/* shared section header for dark sections */
.fp-sec-header { margin-bottom: 56px; }
.fp-sec-header .fp-label { color: var(--brand); }
.fp-sec-header h2 {
    font-family: var(--font-head);
    font-size: clamp(28px,3.5vw,44px); font-weight: 800;
    color: var(--black); letter-spacing: -.02em; line-height: 1.1;
    margin: 0 0 16px;
}
.fp-sec-header h2 em { font-style: normal; color: var(--brand); }
.fp-sec-header p {
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    color: #898989; line-height: 1.85;
    max-width: 620px; margin: 0;
}
.fp-sec-header.light h2 { color: var(--black); }
.fp-sec-header.light p  { color: var(--grey-text); }
.fp-sec-header.center { text-align: center; }
.fp-sec-header.center .fp-label { justify-content: center; }
.fp-sec-header.center .fp-label::before { display: none; }
.fp-sec-header.center .fp-label::after { content:''; display:block; width:24px; height:1px; background:var(--brand); }
.fp-sec-header.center p { margin: 0 auto; }

.fp-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,.08);
}

.fp-exp-card {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative; overflow: hidden;
    transition: background .3s;
}
.fp-exp-card:nth-child(3n)   { border-right: none; }
.fp-exp-card:nth-last-child(-n+3) { border-bottom: none; }

.fp-exp-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--brand);
    transition: width .35s ease;
}
.fp-exp-card:hover { background: rgba(250,183,2,.06); }
.fp-exp-card:hover::after { width: 100%; }

.fp-exp-num {
    font-family: var(--font-head); font-size: 11px; font-weight: 700;
    letter-spacing: .14em; color: var(--brand);
    display: block; margin-bottom: 14px;
}
.fp-exp-icon {
    width: 48px; height: 48px;
    border: 1.5px solid rgba(250,183,2,.35);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 1.4rem;
    transition: background .25s, border-color .25s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.fp-exp-card:hover .fp-exp-icon { background: var(--brand); border-color: var(--brand); transform: rotate(6deg); }
.fp-exp-title {
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    color: var(--white); margin: 0 0 10px; line-height: 1.3;
}
.fp-exp-desc {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.45); line-height: 1.75; margin: 0;
}

/* ================================================
   CAREER TIMELINE
   Mirrors cp-history (black bg, grid)
================================================ */
.fp-timeline-section {
    background: var(--grey-bg);
    padding: 96px 0;
}

.fp-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}

.fp-tl-item {
    display: contents; /* use card directly */
}

.fp-tl-card {
    padding: 36px 40px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: background .3s;
}
.fp-tl-card:nth-child(even) { border-right: none; }

.fp-timeline > .fp-tl-item { display: contents; }

/* Simpler: treat fp-tl-item as the grid cell */
.fp-tl-item {
    display: block;
    padding: 36px 40px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: background .3s;
}
.fp-tl-item:nth-child(even) { border-right: none; }
.fp-tl-item:nth-last-child(-n+2) { border-bottom: none; }

.fp-tl-item::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--brand);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.fp-tl-item:hover::before { transform: scaleX(1); }
.fp-tl-item:hover { background: rgba(250,183,2,.03); }

.fp-tl-org {
    font-family: var(--font-head); font-size: 18px; font-weight: 700;
    color: var(--black); display: block; margin-bottom: 4px; line-height: 1.2;
}
.fp-tl-role {
    font-family: var(--font-body); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .10em;
    color: var(--brand); margin-bottom: 12px; display: block;
}
.fp-tl-desc {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: var(--grey-text); line-height: 1.8; margin: 0 0 14px;
}
.fp-tl-years {
    font-family: var(--font-body); font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(0,0,0,.35);
}
/* hide the empty/dot divs generated by PHP */
.fp-tl-dot, .fp-tl-empty { display: none; }

/* ================================================
   TRACK RECORD + COMPLIANCE  — dark split
   Mirrors cp-mv (black bg, 2-col)
================================================ */
.fp-dark-split {
    background: var(--black);
    padding: 96px 0;
    position: relative; overflow: hidden;
}
.fp-ds-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,.08);
}

.fp-ds-col {
    padding: 60px 52px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.fp-ds-col:last-child { border-right: none; }

.fp-ds-title {
    font-family: var(--font-head); font-size: clamp(22px,2.5vw,32px); font-weight: 800;
    color: var(--white); letter-spacing: -.01em; line-height: 1.15;
    margin: 0 0 32px;
}
.fp-ds-title em { font-style: normal; color: var(--brand); }

.fp-ds-items { display: flex; flex-direction: column; gap: 0; }
.fp-ds-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.fp-ds-item:last-child { border-bottom: none; }
.fp-ds-bullet {
    flex-shrink: 0; font-size: 1.1rem; margin-top: 2px;
}
.fp-ds-item-text {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.55); line-height: 1.75; margin: 0;
}
.fp-ds-item-text strong { color: rgba(255,255,255,.85); font-weight: 500; }

/* stat row inside dark split */
.fp-ds-stat-row {
    display: flex; gap: 0;
    border: 1px solid rgba(255,255,255,.08);
    margin-top: 32px;
}
.fp-ds-stat {
    flex: 1; padding: 24px 20px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.fp-ds-stat:last-child { border-right: none; }
.fp-ds-stat-n {
    font-family: var(--font-head); font-size: 36px; font-weight: 800;
    color: var(--brand); display: block; line-height: 1; margin-bottom: 5px;
}
.fp-ds-stat-l {
    font-family: var(--font-body); font-size: 10px; font-weight: 400;
    color: rgba(255,255,255,.30); text-transform: uppercase; letter-spacing: .08em;
}

/* ================================================
   STRATEGIC POSITIONING
   Mirrors cp-positioning (grey-bg, 3-col cards)
================================================ */
.fp-positioning {
    padding: 96px 0;
    background: var(--white);
}

.fp-pos-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.fp-pos-card {
    background: var(--white);
    padding: 48px 36px;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.fp-pos-card:last-child { border-right: none; }
.fp-pos-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--brand);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
}
.fp-pos-card:hover::after { transform: scaleX(1); }
.fp-pos-card:hover { background: rgba(250,183,2,.02); }

.fp-pos-big-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; line-height: 1; }
.fp-pos-card-title {
    font-family: var(--font-head); font-size: 18px; font-weight: 700;
    color: var(--black); margin: 0 0 12px; line-height: 1.3;
}
.fp-pos-card-text {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: var(--grey-text); line-height: 1.8; margin: 0;
}
.fp-pos-num {
    font-family: var(--font-head); font-size: 60px; font-weight: 800;
    color: rgba(250,183,2,.10); line-height: 1;
    position: absolute; bottom: 16px; right: 24px;
    transition: color .3s; pointer-events: none; user-select: none;
}
.fp-pos-card:hover .fp-pos-num { color: rgba(250,183,2,.22); }

/* ================================================
   CURRENT ACTIVITIES (active work streams)
   Mirrors cp-projects (grey-bg)
================================================ */
.fp-activities {
    padding: 96px 0;
    background: var(--grey-bg);
}
.fp-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 0;
    border: 1px solid var(--border);
}
.fp-act-card {
    padding: 36px 32px;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.fp-act-card:hover { background: rgba(250,183,2,.03); }
.fp-act-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--brand);
    transition: width .35s ease;
}
.fp-act-card:hover::after { width: 100%; }
.fp-act-icon { font-size: 2.2rem; margin-bottom: 18px; line-height: 1; display: block; }
.fp-act-title {
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    color: var(--black); margin-bottom: 10px; line-height: 1.3;
}
.fp-act-desc {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: var(--grey-text); line-height: 1.75; margin: 0;
}

/* ================================================
   PROFESSIONAL STATEMENT
   Mirrors cp-mv card style (black bg)
================================================ */
.fp-statement {
    background: var(--black);
    padding: 96px 0;
    position: relative; overflow: hidden;
}
.fp-stmt-inner {
    max-width: 820px; margin: 0 auto; padding: 0 15px;
    text-align: center;
}
.fp-stmt-quote-icon {
    font-family: var(--font-head); font-size: 100px; font-weight: 800;
    color: var(--white); line-height: .7;
    display: block; margin-bottom: -10px;
}
.fp-stmt-text {
    font-family: var(--font-head); font-size: clamp(18px,2.4vw,26px); font-weight: 600;
    color: var(--white); line-height: 1.6; margin: 0 0 40px;
}
.fp-stmt-text em { font-style: normal; color: var(--brand); }
.fp-stmt-author {
    display: inline-flex; align-items: center; gap: 16px;
}
.fp-stmt-avatar {
    width: 52px; height: 52px;
    background: var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 16px; font-weight: 800;
    color: var(--black); flex-shrink: 0;
}
.fp-stmt-name {
    text-align: left;
    display: flex; flex-direction: column; gap: 3px;
}
.fp-stmt-name strong { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); }
.fp-stmt-name span  { font-family: var(--font-body); font-size: 11px; font-weight: 400; color: rgba(255,255,255,.40); letter-spacing:.04em; }

/* ================================================
   CTA  — identical to cp-cta (gold bg)
================================================ */
.fp-cta { background: var(--brand); padding: 72px 0; }
.fp-cta-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 15px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
}
.fp-cta-inner h2 {
    font-family: var(--font-head);
    font-size: clamp(22px,3vw,36px); font-weight: 800;
    color: var(--black); letter-spacing: -.02em;
    margin: 0 0 8px; line-height: 1.15;
}
.fp-cta-inner h2 em { font-style: normal; }
.fp-cta-inner p {
    font-family: var(--font-body); font-size: 14px; font-weight: 300;
    color: rgba(10,10,10,.65); margin: 0; line-height: 1.7;
}
.fp-cta-btns { display: flex; gap: 14px; flex-shrink: 0; }

.fp-btn-gold {
    display: inline-block; background: var(--black); color: var(--white);
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 16px 36px; text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.fp-btn-gold:hover {
    background: #1f1f1f; color: var(--white); text-decoration: none;
    transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.fp-btn-ghost {
    display: inline-block; background: transparent; color: var(--black);
    border: 1.5px solid var(--black);
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 15px 36px; text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
}
.fp-btn-ghost:hover {
    background: var(--black); color: var(--white);
    text-decoration: none; transform: translateY(-2px);
}

/* ================================================
   RESPONSIVE — same breakpoints as company-profile
================================================ */
@media (max-width:1100px) {
    .fp-expertise-grid { grid-template-columns: repeat(2,1fr); }
    .fp-exp-card:nth-child(3n)  { border-right: 1px solid rgba(255,255,255,.08); }
    .fp-exp-card:nth-child(2n)  { border-right: none; }
    .fp-exp-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.08); }
    .fp-exp-card:nth-last-child(-n+2) { border-bottom: none; }

    .fp-pos-grid { grid-template-columns: 1fr; }
    .fp-pos-card { border-right: none; border-bottom: 1px solid var(--border); }
    .fp-pos-card:last-child { border-bottom: none; }
}

@media (max-width:991px) {
    .fp-hero { grid-template-columns: 1fr; min-height: auto; }
    .fp-hero-right { min-height: 300px; }
    .fp-hero-left  { padding: 120px 32px 80px; }

    .fp-overview-inner { grid-template-columns: 1fr; gap: 32px; }

    .fp-timeline { grid-template-columns: 1fr; }
    .fp-tl-item  { border-right: none; }
    .fp-tl-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .fp-tl-item:last-child { border-bottom: none; }

    .fp-ds-inner { grid-template-columns: 1fr; }
    .fp-ds-col   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 48px 32px; }
    .fp-ds-col:last-child { border-bottom: none; }

    .fp-cta-inner { flex-direction: column; text-align: center; align-items: center; }
    .fp-cta-btns  { justify-content: center; }
}

@media (max-width:767px) {
    .fp-hero { min-height: 380px; }
    .fp-hero-left { padding: 100px 20px 70px; }

    .fp-overview, .fp-expertise, .fp-timeline-section,
    .fp-dark-split, .fp-positioning, .fp-activities,
    .fp-statement, .fp-cta { padding: 64px 0; }

    .fp-expertise-grid { grid-template-columns: 1fr; }
    .fp-exp-card { border-right: none; }
    .fp-exp-card:nth-last-child(n) { border-bottom: 1px solid rgba(255,255,255,.08); }
    .fp-exp-card:last-child { border-bottom: none; }

    .fp-hero-stats { flex-direction: column; gap: 0; max-width: 100%; }
    .fp-hero-stat  { border-right: none; border-bottom: 1px solid #F9B701;; }
    .fp-hero-stat:last-child { border-bottom: none; }

    .fp-ds-stat-row { flex-direction: column; }
    .fp-ds-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .fp-ds-stat:last-child { border-bottom: none; }

    .fp-activities-grid { grid-template-columns: 1fr; }
    .fp-act-card { border-right: none; }

    .fp-cta-inner { text-align: center; }
    .fp-cta-btns  { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion:reduce) {
    .fp-reveal { opacity:1; transform:none; transition:none; }
    .fp-hero-name, .fp-hero-desc, .fp-hero-eyebrow,
    .fp-hero-eyebrow .fp-label, .fp-hero::after,
    .fp-hero-title { animation:none; opacity:1; }
    .fp-hero-name em { animation:none; -webkit-text-fill-color:var(--brand); color:var(--brand); }
    .fp-ticker-track { animation:none; }
}