/* ============================================================
   CONSULTING PULSE — Professional HR & IR Consulting
   Colors: Navy #1B2B4B | Gold #C9A84C | White #FFFFFF
============================================================ */
:root {
    --navy: #1B2B4B;
    --navy-dark: #0F1A2E;
    --navy-light: #253D6A;
    --gold: #C9A84C;
    --gold-light: #E2C270;
    --gold-dark: #A8832A;
    --white: #ffffff;
    --light-bg: #F8F9FC;
    --light-bg2: #EEF1F8;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --border-gold: rgba(201,168,76,0.3);
    --shadow-sm: 0 2px 8px rgba(27,43,75,0.08);
    --shadow-md: 0 8px 32px rgba(27,43,75,0.12);
    --shadow-lg: 0 16px 64px rgba(27,43,75,0.16);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}
a { text-decoration:none; color:inherit; transition: var(--transition); }
img { max-width:100%; height:auto; }
ul { list-style:none; padding:0; margin:0; }
::selection { background:rgba(201,168,76,0.25); color: var(--navy); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-cp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-primary-cp:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline-cp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-outline-cp:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* ============================================================
   NAVBAR
============================================================ */
.cp-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 0;
}
.cp-navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--gold);
}
.cp-navbar.scrolled .nav-logo-text { color: var(--navy) !important; }
.cp-navbar.scrolled .nav-logo-sub { color: var(--gold) !important; }
.cp-navbar.scrolled .cp-nav-menu > li > a { color: var(--text-dark); }
.cp-navbar.scrolled .cp-nav-menu > li > a:hover { color: var(--gold); }
.cp-navbar.scrolled .nav-cta { background: var(--gold); color: var(--navy-dark) !important; }

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 76px;
}
.nav-logo-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}
.nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.cp-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.cp-nav-menu > li { position: relative; }
.cp-nav-menu > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.cp-nav-menu > li > a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.cp-nav-menu > li > a.active { color: var(--gold); }

/* Dropdown */
.cp-nav-menu .dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 3px;
    transition: transform 0.3s;
}
.cp-nav-menu li:hover .dropdown-arrow { transform: rotate(180deg); }
.cp-nav-menu .nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    padding: 8px 0;
}
.cp-nav-menu li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cp-nav-menu .nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 0;
    transition: var(--transition);
}
.cp-nav-menu .nav-dropdown li a:hover {
    background: var(--light-bg);
    color: var(--gold);
    padding-left: 28px;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
}
.nav-cta:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.cp-navbar.scrolled .nav-hamburger span { background: var(--navy); }

/* Mobile Drawer */
.nav-mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.nav-mobile-overlay.open { opacity: 1; visibility: visible; }
.nav-mobile-drawer {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: var(--white);
    z-index: 1100;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
}
.nav-mobile-drawer.open { right: 0; }
.nav-mobile-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.nav-mobile-close button {
    background: none; border: none;
    font-size: 1.5rem; cursor: pointer;
    color: var(--text-muted);
}
.nav-mobile-drawer a, .nav-mobile-drawer .mob-group-btn {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}
.nav-mobile-drawer a:hover, .mob-group-btn:hover { color: var(--gold); }
.mob-group-btn {
    background: none; border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mob-sub { padding-left: 1rem; display: none; }
.mob-sub.open { display: block; }
.mob-sub a {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--light-bg2);
}

/* ============================================================
   HERO — HOME
============================================================ */
.cp-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1F3A6E 100%);
    overflow: hidden;
}
.cp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
    opacity: 0.12;
}
.cp-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.cp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 2rem 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-text-wrap {}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 0.75rem;
}
.hero-title span { color: var(--gold); }
.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 1.25rem;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    letter-spacing: 0.03em;
}
.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    max-width: 460px;
    width: 100%;
}
.hero-img-card img {
    width: 100%;
    height: clamp(300px, 50vh, 480px);
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}
.hero-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(27,43,75,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.hero-img-badge-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hero-img-badge-text strong { color: var(--white); font-size: 0.9rem; display: block; }
.hero-img-badge-text span { color: var(--gold-light); font-size: 0.78rem; }

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,18,40,0.90) 0%, rgba(12,28,60,0.80) 55%, rgba(12,28,60,0.60) 100%);
}
/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.3);
    border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 32px;
}
/* Slider arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}
.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-50%) scale(1.08);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
/* Progress bar */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    width: 0%;
    z-index: 10;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .hero-arrow { display: none; }
    .hero-slider-dots { bottom: 20px; }
}

/* ============================================================
   HERO PREMIUM ELEMENTS
============================================================ */
/* Gold accent divider under heading */
.hero-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.25));
    border-radius: 2px;
    margin: 1.1rem 0 1.4rem;
}

/* Decorative orbit circles in background */
.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.hero-deco::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -120px;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(201,168,76,0.07);
    border-radius: 50%;
}
.hero-deco::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 80px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(201,168,76,0.05);
    border-radius: 50%;
}

/* Decorative frame offset behind image */
.hero-img-frame {
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: 16px;
    left: 16px;
    border: 2px solid rgba(201,168,76,0.28);
    border-radius: var(--radius-lg);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

/* Floating "40+ Years" tag on image card */
.hero-exp-tag {
    position: absolute;
    top: 22px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-radius: var(--radius);
    padding: 13px 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(201,168,76,0.5);
    z-index: 5;
}
.hero-exp-tag .num {
    font-size: 1.55rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.hero-exp-tag .lbl {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-top: 4px;
    white-space: nowrap;
}

/* Controls bar: dots + slide counter */
.hero-controls-bar {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 22px;
    z-index: 10;
}
.hero-controls-bar .hero-slider-dots {
    position: static;
    transform: none;
    bottom: auto;
    left: auto;
}
.hero-slide-counter {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.4);
}
.hero-count-current {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}
.hero-count-sep { color: rgba(255,255,255,0.25); margin: 0 2px; }

/* Scroll indicator (bottom-right) */
.hero-scroll-cue {
    position: absolute;
    bottom: 36px;
    right: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.hero-scroll-cue span {
    color: rgba(255,255,255,0.32);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}
.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: heroScroll 2.4s ease-in-out infinite;
}
@keyframes heroScroll {
    0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(0.45); transform-origin: top; }
}

/* Stats separator */
.hero-stats-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}
.hero-stat-item {
    flex: 1;
    padding: 0 1.5rem 0 0;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.hero-stat-item:first-child { padding-left: 0; }
.hero-stat-item .hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-item .hero-stat-num span { color: var(--gold); }
.hero-stat-item .hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-exp-tag { display: none; }
    .hero-img-frame { display: none; }
    .hero-scroll-cue { display: none; }
    .hero-controls-bar { bottom: 18px; gap: 14px; }
    .hero-stat-item { padding: 0 0.75rem 0 0; }
    .hero-stat-item:last-child { padding-left: 0.75rem; }
    .hero-stat-item .hero-stat-num { font-size: 1.5rem; }
}

/* ============================================================
   SECTION PADDING
============================================================ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.container-cp {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   MARQUEE BAND
============================================================ */
.cp-band {
    background: var(--navy);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.band-track {
    display: flex;
    gap: 3rem;
    animation: bandScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.band-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding-right: 3rem;
}
.band-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes bandScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SECTION (HOME)
============================================================ */
.cp-about-home { background: var(--light-bg); }
.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-home-imgs {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}
.about-img-accent img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.about-exp-badge {
    position: absolute;
    top: 24px;
    left: -16px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-exp-badge .num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-exp-badge .label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.about-home-text {}
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.check-icon {
    width: 22px; height: 22px;
    background: rgba(201,168,76,0.15);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-quote {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--navy);
}

/* ============================================================
   CHAOS TO CULTURE JOURNEY
============================================================ */
.chaos-journey { background: var(--navy); padding: 70px 0; }
.chaos-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.chaos-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 30px;
    position: relative;
    min-width: 160px;
}
.chaos-step-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 2px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.chaos-step:hover .chaos-step-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.08);
}
.chaos-step-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}
.chaos-step-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}
.chaos-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 -10px;
    flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.cp-services { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--light-bg);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy-dark);
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.service-learn {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-learn:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.cp-why { background: var(--light-bg); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}
.why-img {
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}
.why-img .img-hover-wrap {
    flex: 1;
    height: 100%;
    min-height: 420px;
}
.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}
.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.why-feature:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-sm);
}
.why-feature-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-dark);
    flex-shrink: 0;
}
.why-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.why-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   FOUNDER SECTION
============================================================ */
.cp-founder { background: var(--white); }
.founder-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-lg);
    padding: 4rem;
    overflow: hidden;
    position: relative;
}
.founder-inner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.founder-img-wrap {
    position: relative;
    text-align: center;
}
.founder-img {
    width: 260px; height: 300px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    margin: 0 auto;
    display: block;
}
.founder-name-badge {
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: var(--radius);
    padding: 10px 16px;
    text-align: center;
    margin-top: 1.25rem;
}
.founder-name-badge .fn { font-size: 1rem; font-weight: 800; display: block; }
.founder-name-badge .ft { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.founder-text {}
.founder-text .section-tag { color: var(--gold-light); }
.founder-text .section-title { color: var(--white); }
.founder-text .section-title span { color: var(--gold); }
.founder-bio {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.founder-quote {
    background: rgba(201,168,76,0.1);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-light);
    position: relative;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.cp-testimonials { background: var(--light-bg); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(201,168,76,0.15);
    font-family: Georgia, serif;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
}
.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.testi-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}
.testi-author-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testi-author-title { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   CTA SECTION
============================================================ */
.cp-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cp-cta .section-title { color: var(--white); max-width: 640px; margin: 0.5rem auto 1rem; }
.cp-cta .section-title span { color: var(--gold); }
.cp-cta p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cp-cta .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px; height: 46px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0; visibility: hidden;
    z-index: 900;
    font-size: 1rem;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201,168,76,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto 1.5rem;
}
.breadcrumb-cp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb-cp a { color: var(--gold-light); }
.breadcrumb-cp a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.phil-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.phil-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.phil-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.phil-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.phil-icon.chaos { background: rgba(220,53,69,0.12); color: #DC3545; }
.phil-icon.culture { background: rgba(201,168,76,0.15); color: var(--gold); }
.phil-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.phil-list { display: flex; flex-direction: column; gap: 6px; }
.phil-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
}
.phil-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Steps/Timeline */
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}
.approach-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}
.approach-step:last-child { padding-bottom: 0; }
.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.step-num {
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}
.step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--border));
    margin-top: 8px;
}
.approach-step:last-child .step-line { display: none; }
.step-content { padding-top: 8px; }
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-content p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   SERVICE DETAIL PAGE
============================================================ */
.service-detail-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.service-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.service-sub-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.service-sub-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-sm);
    background: var(--light-bg);
}
.sub-card-icon {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.sub-card-text h5 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.sub-card-text p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.sidebar-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}
.sidebar-services-list li {
    border-bottom: 1px solid var(--border);
}
.sidebar-services-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.sidebar-services-list li a:hover { color: var(--gold); padding-left: 4px; }
.sidebar-services-list li a.active { color: var(--gold); font-weight: 600; }
.sidebar-contact-info { display: flex; flex-direction: column; gap: 10px; }
.sidebar-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.sidebar-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 3.5rem;
    align-items: stretch;
}
/* Left column — flex so form fills remaining height after heading */
.contact-grid > div:first-child {
    display: flex;
    flex-direction: column;
}
.contact-grid > div:first-child .cp-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* Message textarea grows to fill form's extra height */
.contact-grid > div:first-child .cp-form .form-group:has(textarea) {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-grid > div:first-child .cp-form .form-group:has(textarea) textarea {
    flex: 1;
    min-height: 100px;
    resize: vertical;
}
/* Right column — flex column so cards stack and fill full height */
.contact-grid > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Remove margin-bottom from contact-info-card since gap handles spacing */
.contact-grid > div:last-child .contact-info-card {
    margin-bottom: 0;
}
/* Last right-column card fills remaining height */
.contact-grid > div:last-child > div:last-child {
    flex: 1;
    min-height: 100px;
}
.cp-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid var(--border);
    box-sizing: border-box;
}
.cp-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cp-form input,
.cp-form textarea,
.cp-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.cp-form input::placeholder,
.cp-form textarea::placeholder {
    color: #b0b7c3;
    font-size: 0.88rem;
}
.cp-form input:focus,
.cp-form textarea:focus,
.cp-form select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.cp-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a2440' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.cp-form textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}
.cp-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}
.cp-form-submit:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-required { color: #DC3545; }
.form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 0.9rem;
    background: #fffdf4;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,0.2);
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ci-icon {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-item .ci-content strong {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.contact-info-item .ci-content span,
.contact-info-item .ci-content a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    display: block;
}
.wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1rem;
}
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ============================================================
   FOOTER
============================================================ */
.cp-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 70px 0 0;
    border-top: 3px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 260px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-transform-line {
    background: rgba(201,168,76,0.08);
    border-top: 1px solid rgba(201,168,76,0.15);
    text-align: center;
    padding: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-transform-line span { color: var(--gold); }

/* ============================================================
   PROCESS SECTION
============================================================ */
.cp-process { background: var(--light-bg); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--border));
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 64px; height: 64px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   INDUSTRIES
============================================================ */
.cp-industries { background: var(--white); }
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.industry-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    cursor: default;
}
.industry-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.industry-tag i { color: var(--gold); font-size: 0.9rem; }

/* ============================================================
   CERTIFICATIONS / TRUST BADGES
============================================================ */
.cp-certifications { background: var(--light-bg2); padding: 50px 0; }
.cert-title {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.cert-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    transition: var(--transition);
}
.cert-badge:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.cert-badge i { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .founder-inner { grid-template-columns: 1fr; text-align: center; padding: 2.5rem; }
    .founder-img { width: 200px; height: 240px; }
    .founder-name-badge { display: inline-block; }
}
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .cp-nav-menu { display: none; }
    .cp-hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 100px 1.5rem 50px; }
    .hero-img-wrap { display: none; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .about-home-grid { grid-template-columns: 1fr; }
    .about-img-accent { display: none; }
    .about-exp-badge { left: 0; top: 16px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-img { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-sub-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .chaos-arrow { display: none; }
    .chaos-track { gap: 0.5rem; }
    .chaos-step { padding: 12px 16px; min-width: 120px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-pad { padding: 60px 0; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .hero-stat-num { font-size: 1.5rem; }
    .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO — BACKGROUND IMAGE SUPPORT
============================================================ */
.page-hero {
    background-size: cover !important;
    background-position: center center !important;
}
@media (min-width: 1025px) {
    .page-hero { background-attachment: fixed; }
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,18,38,0.85) 0%, rgba(27,43,75,0.78) 60%, rgba(15,26,46,0.72) 100%);
    pointer-events: none;
    z-index: 0;
}
.page-hero .container-cp { position: relative; z-index: 1; }
.page-hero::before { z-index: 0; }

/* ============================================================
   SCROLL REVEAL — CLASS-BASED SYSTEM
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.68s cubic-bezier(0.4,0,0.2,1),
                transform 0.68s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-dir="left"]  { transform: translateX(-50px); }
.reveal[data-dir="right"] { transform: translateX(50px); }
.reveal[data-dir="up"]    { transform: translateY(44px); }
.reveal[data-dir="down"]  { transform: translateY(-40px); }
.reveal[data-dir="zoom"]  { transform: scale(0.88); opacity: 0; }

.reveal[data-dir="left"].visible,
.reveal[data-dir="right"].visible { transform: translateX(0); }
.reveal[data-dir="up"].visible,
.reveal[data-dir="down"].visible  { transform: translateY(0); }
.reveal[data-dir="zoom"].visible  { transform: scale(1); }

/* Stagger delays */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ============================================================
   IMAGE HOVER — ZOOM WITHIN CLIP
============================================================ */
.img-hover-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    display: block;
}
.img-hover-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.img-hover-wrap:hover img { transform: scale(1.06); }

/* About main image */
.about-img-main {
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}
.about-img-main img { transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.about-img-main:hover img { transform: scale(1.05); }
.about-img-main:hover { box-shadow: 0 24px 70px rgba(27,43,75,0.22); }

/* Accent image */
.about-img-accent { overflow: hidden; }
.about-img-accent img { transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.about-img-accent:hover img { transform: scale(1.08); }

/* Founder image */
.founder-img {
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.4s ease !important;
}
.founder-img-wrap:hover .founder-img {
    transform: scale(1.04) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}

/* Hero image card */
.hero-img-card {
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.45s ease !important;
}
.hero-img-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 36px 100px rgba(0,0,0,0.6) !important;
}
.hero-img-card:hover .hero-img-frame {
    border-color: rgba(201,168,76,0.55);
}

/* ============================================================
   CARD HOVER — LIFT + SHIMMER
============================================================ */
/* Service cards: shimmer sweep + lift */
.service-card {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease,
                border-color 0.38s ease !important;
}
.service-card:hover { transform: translateY(-8px) !important; }
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
        transparent 30%,
        rgba(201,168,76,0.07) 50%,
        transparent 70%);
    background-size: 200% 100%;
    background-position: 200% 0;
    transition: background-position 0.55s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}
.service-card:hover::after { background-position: -200% 0; }

/* Phil cards */
.phil-card {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease,
                border-color 0.38s ease !important;
}
.phil-card:hover { transform: translateY(-6px) !important; }

/* Testimonial cards */
.testi-card {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease,
                border-color 0.38s ease !important;
}
.testi-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--border-gold) !important;
}

/* Process steps */
.process-step {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease !important;
}
.process-step:hover { transform: translateY(-5px) !important; }
.process-step:hover .process-num {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    border-color: var(--gold) !important;
}

/* Approach steps — slide right */
.approach-step {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1) !important;
}
.approach-step:hover { transform: translateX(8px) !important; }
.approach-step:hover .step-num {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
}

/* Check items — slide right */
.check-item {
    transition: transform 0.3s ease !important;
}
.check-item:hover { transform: translateX(5px) !important; }

/* Cert badges */
.cert-badge {
    transition: transform 0.35s ease, box-shadow 0.35s ease,
                border-color 0.35s ease !important;
}
.cert-badge:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Industry tags */
.industry-tag {
    transition: transform 0.3s ease, background 0.3s ease,
                border-color 0.3s ease, color 0.3s ease !important;
}
.industry-tag:hover { transform: translateY(-3px) scale(1.03) !important; }

/* Service sub-cards (services page) */
.service-sub-card {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease !important;
}
.service-sub-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Why / diff feature cards */
.why-feature, .diff-card {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease !important;
}
.why-feature:hover, .diff-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Contact info items */
.contact-info-item {
    transition: background 0.3s ease, transform 0.3s ease !important;
    border-radius: var(--radius);
    padding: 8px !important;
    margin: -8px !important;
}
.contact-info-item:hover {
    background: rgba(255,255,255,0.07) !important;
    transform: translateX(4px) !important;
}

/* Vision / About difference inline cards */
.about-diff-card {
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.38s ease, border-color 0.38s ease;
}
.about-diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold) !important;
}

/* Chaos steps */
.chaos-step {
    transition: transform 0.35s ease, background 0.35s ease !important;
}
.chaos-step:hover {
    transform: translateY(-5px) scale(1.04) !important;
    background: rgba(201,168,76,0.15) !important;
}

/* ============================================================
   RESPONSIVE — HOVER & REVEAL OVERRIDES
============================================================ */
@media (max-width: 768px) {
    /* Reduce reveal distance on mobile */
    .reveal { transform: translateY(28px); }
    .reveal[data-dir="left"],
    .reveal[data-dir="right"] { transform: translateY(28px); }
    .reveal[data-dir="left"].visible,
    .reveal[data-dir="right"].visible { transform: translateY(0); }

    /* Reduce hover lift on touch devices */
    .service-card:hover { transform: translateY(-4px) !important; }
    .phil-card:hover, .testi-card:hover { transform: translateY(-3px) !important; }
    .hero-img-card:hover { transform: translateY(-4px) !important; }

    /* Page hero parallax off on mobile */
    .page-hero { background-attachment: scroll !important; }
}
@media (max-width: 480px) {
    .reveal[data-delay="3"],
    .reveal[data-delay="4"],
    .reveal[data-delay="5"],
    .reveal[data-delay="6"] { transition-delay: 0s; }
}
