/* ============================================================
   PINNACLE ENGINEERING — INNER PAGE STYLES
   inner-style.css
   ============================================================ */
* {
    box-sizing: border-box;
	
html, body {
    overflow-x: hidden;
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* -- CSS Custom Properties ---------------------------------- */
:root {
    --bg: #0B0F1A;
    --surface: #111827;
    --surface-2: #161D2E;
    --teal: #1573BA;
    --teal-dark: #0F5FA0;
    --teal-glow: rgba(21, 115, 186, 0.10);
    --teal-glow-md: rgba(21, 115, 186, 0.20);
    --lime: #B9D432;
    --lime-glow: rgba(185, 212, 50, 0.12);
    --cyan: #B9D432;
    --white: #F0F4F8;
    --muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.07);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h: 72px;
}

/* -- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; background: var(--bg); }

body.pinnacle-inner {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

body.pinnacle-inner h1,
body.pinnacle-inner h2,
body.pinnacle-inner h3,
body.pinnacle-inner h4,
body.pinnacle-inner h5,
body.pinnacle-inner h6 {
    color: var(--white) !important;
    font-family: var(--font-heading) !important;
}

body.pinnacle-inner p { color: inherit; }

body.pinnacle-inner section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.pinnacle-inner .ast-container,
body.pinnacle-inner .entry-content,
body.pinnacle-inner .site-content {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.pinnacle-inner a { text-decoration: none; color: inherit; }
body.pinnacle-inner img { display: block; max-width: 100%; }
body.pinnacle-inner ul { list-style: none; }

/* -- Custom Cursor ------------------------------------------ */
.pe-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.pe-cursor__dot {
    width: 12px;
    height: 12px;
    background: var(--teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .25s var(--easing), height .25s var(--easing), background .25s;
}

.pe-cursor.expanded .pe-cursor__dot {
    width: 40px;
    height: 40px;
    background: var(--white);
}

/* -- Utilities ---------------------------------------------- */
.pe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pe-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
}

.pe-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lime);
    border-radius: 2px;
}

.pe-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--white);
}

.pe-heading em { font-style: normal; color: var(--teal); }

.pe-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.pe-section-header .pe-label { display: block; text-align: center; }
.pe-section-header .pe-label::before { display: none; }

.pe-section-header__sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 20px;
}

/* -- Buttons ------------------------------------------------ */
.pe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all .3s var(--easing);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.pe-btn--primary { background: var(--teal); color: var(--bg); }
.pe-btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--teal-glow-md); }
.pe-btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.pe-btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.pe-btn--outline { background: transparent; color: var(--teal); border: 1px solid var(--teal); padding: 12px 24px; font-size: 14px; }
.pe-btn--outline:hover { background: var(--teal); color: var(--bg); transform: translateY(-2px); }
.pe-btn--large { padding: 16px 36px; font-size: 15px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.pe-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.pe-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pe-nav__logo img { height: 44px; width: auto; }

.pe-nav__links { display: flex; align-items: center; gap: 8px; }

.pe-nav__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 100px;
    transition: color .25s, background .25s;
}

.pe-nav__link:hover, .pe-nav__link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.pe-nav__cta {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--bg);
    background: var(--teal);
    padding: 10px 22px;
    border-radius: 100px;
    margin-left: 8px;
    transition: background .25s, transform .25s;
}

.pe-nav__cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.pe-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.pe-nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile Menu */
.pe-mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.pe-mobile-menu.open { opacity: 1; pointer-events: all; }

.pe-mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    transition: color .2s;
}

.pe-mobile-menu a:hover { color: var(--teal); }

/* ============================================================
   PAGE HERO / BANNER
   ============================================================ */
.pe-page-hero {
    position: relative;
    padding: calc(var(--nav-h) + 48px) 0 56px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.pe-page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pe-page-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 80%);
}

.pe-page-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.pe-page-hero__glow--1 {
    width: 500px;
    height: 300px;
    background: var(--teal);
    top: -80px;
    right: -80px;
    opacity: 0.09;
}

.pe-page-hero__glow--2 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    bottom: -80px;
    left: -60px;
    opacity: 0.06;
}

.pe-page-hero__inner {
    position: relative;
    z-index: 1;
}

.pe-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--muted);
}

.pe-breadcrumb a { color: var(--muted); transition: color .2s; }
.pe-breadcrumb a:hover { color: var(--teal); }
.pe-breadcrumb__sep { color: rgba(255,255,255,0.2); }
.pe-breadcrumb__current { color: var(--teal); }

.pe-page-hero__label { margin-bottom: 14px; }

.pe-page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 20px;
}

.pe-page-hero__title em { font-style: normal; color: var(--teal); }

.pe-page-hero__sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 32px;
}

.pe-page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   COMMON SECTIONS
   ============================================================ */
.pe-section { padding: 100px 0; }
.pe-section--surface { background: var(--surface); }
.pe-section--dark { background: var(--bg); }

/* Two-column layout */
.pe-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pe-two-col--60-40 { grid-template-columns: 1.4fr 1fr; }
.pe-two-col--40-60 { grid-template-columns: 1fr 1.4fr; }

.pe-content-img {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pe-content-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.pe-content-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 24px;
}

.pe-content-text .pe-btn { margin-top: 12px; }

/* Feature list */
.pe-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.pe-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
}

.pe-feature-list__icon {
    width: 28px;
    height: 28px;
    background: var(--teal-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.pe-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pe-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pe-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.pe-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: border-color .3s, transform .3s var(--easing), box-shadow .3s;
}

.pe-card:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 200, 150, 0.07);
}

.pe-card__icon {
    width: 52px;
    height: 52px;
    background: var(--teal-glow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 20px;
    transition: background .3s;
}

.pe-card:hover .pe-card__icon { background: var(--teal-glow-md); }

.pe-card__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--teal);
    opacity: 0.7;
    margin-bottom: 16px;
}

.pe-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.pe-card__desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.pe-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pe-stat-box {
    text-align: center;
    padding: 48px 24px;
    border-right: 1px solid var(--border);
}

.pe-stat-box:last-child { border-right: none; }

.pe-stat-box__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.pe-stat-box__label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}


/* ============================================================
   PROCESS STEPS
   ============================================================ */
.pe-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.pe-process::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 1px;
    background: linear-gradient(to right, var(--teal), var(--border), var(--teal));
    opacity: 0.4;
}

.pe-process-step {
    text-align: center;
    padding: 0 20px;
}

.pe-process-step__num {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.pe-process-step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.pe-process-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.pe-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pe-industry-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    transition: border-color .3s, transform .3s var(--easing);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pe-industry-card:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
}

.pe-industry-card__icon {
    width: 56px;
    height: 56px;
    background: var(--teal-glow);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: background .3s;
}

.pe-industry-card:hover .pe-industry-card__icon { background: var(--teal-glow-md); }

.pe-industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.pe-industry-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    flex: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.pe-about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pe-value-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px;
    transition: border-color .3s;
}

.pe-value-card:hover { border-color: var(--teal); }

.pe-value-card__icon {
    color: var(--teal);
    margin-bottom: 14px;
}

.pe-value-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.pe-value-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

/* Team / About image grid */
.pe-about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pe-about-img-grid img {
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.pe-about-img-grid img:first-child {
    grid-column: span 2;
    height: 320px;
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.pe-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pe-partner-detail {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    text-align: center;
    transition: border-color .3s, transform .3s var(--easing);
}

.pe-partner-detail:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
}

.pe-partner-detail img {
    max-height: 64px;
    max-width: 180px;
    object-fit: contain;
    margin: 0 auto 28px;
    opacity: 0.85;
    transition: opacity .3s;
}

.pe-partner-detail:hover img { opacity: 1; }

.pe-partner-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.pe-partner-detail p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

/* Benefits list */
.pe-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pe-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color .3s;
}

.pe-benefit-item:hover { border-color: var(--teal); }

.pe-benefit-item__icon {
    width: 40px;
    height: 40px;
    background: var(--teal-glow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.pe-benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.pe-benefit-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.pe-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.pe-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pe-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}

.pe-contact-item__icon {
    width: 44px;
    height: 44px;
    background: var(--teal-glow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.pe-contact-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.pe-contact-item p,
.pe-contact-item a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.pe-contact-item a:hover { color: var(--teal); }

/* Form */
.pe-form-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 48px;
}

.pe-form-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pe-form-box > p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
}

.pe-form { display: flex; flex-direction: column; gap: 20px; }

.pe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pe-field { display: flex; flex-direction: column; gap: 8px; }

.pe-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pe-field input,
.pe-field textarea,
.pe-field select {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    transition: border-color .25s;
    outline: none;
    width: 100%;
}

.pe-field input:focus,
.pe-field textarea:focus,
.pe-field select:focus { border-color: var(--teal); }

.pe-field input::placeholder,
.pe-field textarea::placeholder { color: rgba(148, 163, 184, 0.5); }

.pe-field textarea { resize: vertical; min-height: 140px; }

.pe-field select option { background: var(--surface-2); color: var(--white); }

.pe-form-success {
    display: none;
    background: rgba(21, 115, 186, 0.08);
    border: 1px solid rgba(21, 115, 186, 0.30);
    border-radius: var(--r-md);
    padding: 20px 24px;
    font-size: 15px;
    color: var(--teal);
    text-align: center;
}

/* ============================================================
   CTA SECTION (shared)
   ============================================================ */
.pe-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(21, 115, 186, 0.07) 0%, transparent 60%), var(--bg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.pe-cta-section__inner {
    max-width: 640px;
    margin: 0 auto;
}

.pe-cta-section .pe-label { justify-content: center; }
.pe-cta-section .pe-label::before { display: none; }

.pe-cta-section__sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 36px;
}

.pe-cta-section__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pe-footer {
    padding: 80px 0 48px;
    border-top: 1px solid var(--border);
}

.pe-footer-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    background: #060912;
    color: rgba(255,255,255,0.55);
}

.pe-footer-bar .pe-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}

.pe-footer-bar a {
    color: var(--muted);
    transition: color .25s;
}

.pe-footer-bar a:hover {
    color: var(--teal);
}

.pe-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.pe-footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.pe-footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 280px;
    margin-bottom: 24px;
}

.pe-footer__copy {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.pe-footer__copy a { color: var(--teal); }

.pe-footer__col h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.pe-footer__col ul { list-style: none; padding: 0; margin: 0; }
.pe-footer__col ul li { margin-bottom: 10px; }
.pe-footer__col a { font-size: 14px; color: var(--muted); transition: color .25s; }
.pe-footer__col a:hover { color: var(--teal); }

.pe-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.pe-footer__contact svg {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .pe-two-col,
    .pe-two-col--60-40,
    .pe-two-col--40-60 { grid-template-columns: 1fr; gap: 48px; }
    .pe-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .pe-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .pe-process { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .pe-process::before { display: none; }
    .pe-stats-row { grid-template-columns: repeat(2, 1fr); }
    .pe-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .pe-partners-grid { grid-template-columns: repeat(2, 1fr); }
    .pe-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pe-contact-wrap { grid-template-columns: 1fr; gap: 48px; }
    .pe-benefits-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pe-nav__links { display: none; }
    .pe-nav__burger { display: flex; }
    .pe-cards-grid,
    .pe-cards-grid--2 { grid-template-columns: 1fr; }
    .pe-stats-row { grid-template-columns: 1fr 1fr; }
    .pe-stat-box { border-right: none; border-bottom: 1px solid var(--border); }
    .pe-stat-box:nth-child(odd) { border-right: 1px solid var(--border); }
    .pe-stat-box:last-child { border-bottom: none; }
    .pe-process { grid-template-columns: 1fr; }
    .pe-industries-grid { grid-template-columns: 1fr; }
    .pe-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .pe-partners-grid { grid-template-columns: 1fr; }
    .pe-about-values { grid-template-columns: 1fr; }
    .pe-form-row { grid-template-columns: 1fr; }
    .pe-form-box { padding: 32px 24px; }
    .pe-section { padding: 64px 0; }
    .pe-page-hero { padding: calc(var(--nav-h) + 32px) 0 40px; }
    .pe-content-img img { height: 280px; }
    .pe-about-img-grid img { height: 200px; }
    .pe-about-img-grid img:first-child { height: 240px; }
    body.pinnacle-inner { cursor: auto; }
    .pe-cursor { display: none; }
}

@media (max-width: 768px) {
    .pe-nav__links { display: none; }
    .pe-nav__burger { display: flex; }

    .pe-cards-grid,
    .pe-cards-grid--2 { 
        grid-template-columns: 1fr; 
    }

    /* ✅ ADD THIS LINE HERE */
    .pe-cards-grid--two {
        grid-template-columns: 1fr;
    }

    .pe-stats-row { grid-template-columns: 1fr 1fr; }
    ...
}
@media (max-width: 768px) {
    .pe-stat-box {
        padding: 24px 12px;
    }

    .pe-stat-box__number {
        font-size: 1.5rem!important;
    }
	
}


/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.pe-theme-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    margin-right: 4px;
    transition: border-color .25s, color .25s, background .25s;
    flex-shrink: 0;
    box-sizing: border-box;
}

.pe-theme-toggle:hover {
    border-color: var(--teal) !important;
    color: var(--teal) !important;
    background: var(--teal-glow) !important;
}

.pe-theme-toggle svg {
    display: block;
    stroke: rgba(255, 255, 255, 0.9);
    fill: none;
    flex-shrink: 0;
}

.pe-theme-toggle .icon-sun { display: none; }
.pe-theme-toggle .icon-moon { display: block; }

body.light-mode .pe-theme-toggle {
    background: rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    color: #0F172A !important;
}

body.light-mode .pe-theme-toggle svg { stroke: #0F172A; }

body.light-mode .pe-theme-toggle .icon-moon { display: none; }
body.light-mode .pe-theme-toggle .icon-sun { display: block; }

/* ============================================================
   LIGHT MODE
   ============================================================ */
body.light-mode {
    --bg: #EDF5FF;
    --surface: #FFFFFF;
    --surface-2: #D9ECFA;
    --white: #0D1E35;
    --muted: #3E5A78;
    --border: rgba(21, 115, 186, 0.15);
    --teal-glow: rgba(21, 115, 186, 0.07);
    --teal-glow-md: rgba(21, 115, 186, 0.16);
    background: #EDF5FF;
    color: #0D1E35;
}

/* Nav */
body.light-mode .pe-nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(21, 115, 186, 0.12);
    box-shadow: 0 2px 24px rgba(21, 115, 186, 0.08);
}
body.light-mode .pe-nav.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 32px rgba(21, 115, 186, 0.10);
}
body.light-mode .pe-nav__link {
    color: #1A3250;
}
body.light-mode .pe-nav__link:hover,
body.light-mode .pe-nav__link.active {
    color: #1573BA;
    background: rgba(21, 115, 186, 0.07);
}
body.light-mode .pe-mobile-menu {
    background: #FFFFFF;
    border-top: 1px solid rgba(21, 115, 186, 0.12);
}

/* Page Hero */
body.light-mode .pe-page-hero {
    background: linear-gradient(160deg, #DDEEFF 0%, #EDF5FF 50%, #F5F9FF 100%);
}
body.light-mode .pe-page-hero__grid {
    background-image:
        linear-gradient(rgba(21,115,186,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,115,186,0.06) 1px, transparent 1px);
}
body.light-mode .pe-page-hero__glow--1 { opacity: 0.18; }
body.light-mode .pe-page-hero__glow--2 { opacity: 0.12; }
body.light-mode .pe-breadcrumb a { color: rgba(13,30,53,0.55); }
body.light-mode .pe-breadcrumb a:hover,
body.light-mode .pe-breadcrumb__current { color: #1573BA; }

/* Content cards */
body.light-mode .pe-card,
body.light-mode .pe-value-card,
body.light-mode .pe-benefit-item,
body.light-mode .pe-process-step {
    background: #FFFFFF;
    border-color: rgba(21, 115, 186, 0.13);
    box-shadow: 0 2px 16px rgba(21, 115, 186, 0.05);
}
body.light-mode .pe-card:hover,
body.light-mode .pe-value-card:hover {
    border-color: #1573BA;
    box-shadow: 0 12px 40px rgba(21, 115, 186, 0.13);
}

body.light-mode .pe-industry-card {
    background: #FFFFFF;
    border-color: rgba(21, 115, 186, 0.12);
}
body.light-mode .pe-industry-card:hover {
    border-color: #1573BA;
    box-shadow: 0 12px 40px rgba(21, 115, 186, 0.12);
}

/* Stats */
body.light-mode .pe-stats-band {
    background: linear-gradient(135deg, #1573BA 0%, #0F5FA0 100%);
}
body.light-mode .pe-stat-box {
    border-color: rgba(255,255,255,0.15);
}
body.light-mode .pe-stat-box__number { color: #B9D432; }
body.light-mode .pe-stat-box__label  { color: rgba(255,255,255,0.70); }

/* Contact form */
body.light-mode .pe-form-box {
    background: #FFFFFF;
    border-color: rgba(21, 115, 186, 0.13);
    box-shadow: 0 4px 32px rgba(21, 115, 186, 0.07);
}
body.light-mode .pe-field input,
body.light-mode .pe-field textarea,
body.light-mode .pe-field select {
    background: #F0F7FF;
    border-color: rgba(21, 115, 186, 0.20);
    color: #0D1E35;
}
body.light-mode .pe-field input:focus,
body.light-mode .pe-field textarea:focus,
body.light-mode .pe-field select:focus {
    border-color: #1573BA;
    box-shadow: 0 0 0 3px rgba(21,115,186,0.12);
}

/* Partner logos */
body.light-mode .pe-partner-detail {
    background: #FFFFFF;
    border-color: rgba(21, 115, 186, 0.12);
}

/* CTA */
body.light-mode .pe-cta-section {
    background: linear-gradient(135deg, #1573BA 0%, #0D4F8C 100%);
    border-top: none;
}
body.light-mode .pe-cta-section .pe-label { color: #B9D432; }
body.light-mode .pe-cta-section .pe-label::before { background: #B9D432; }
body.light-mode .pe-cta-section .pe-heading { color: #FFFFFF; }
body.light-mode .pe-cta-section__sub { color: rgba(255,255,255,0.80); }
body.light-mode .pe-cta-section .pe-btn--primary { background: #FFFFFF; color: #1573BA; }
body.light-mode .pe-cta-section .pe-btn--primary:hover { background: #EDF5FF; }
body.light-mode .pe-cta-section .pe-btn--outline { border-color: rgba(255,255,255,0.55); color: #FFFFFF; }
body.light-mode .pe-cta-section .pe-btn--outline:hover { background: rgba(255,255,255,0.12); }

/* Footer — stays deep navy */
body.light-mode .pe-footer {
    background: #0B2546;
    border-top: none;
}
body.light-mode .pe-footer__col h4,
body.light-mode .pe-footer__col h5 { color: #FFFFFF; }
body.light-mode .pe-footer__col a,
body.light-mode .pe-footer__col p,
body.light-mode .pe-footer__col ul li { color: rgba(255,255,255,0.65); }
body.light-mode .pe-footer__col a:hover { color: #B9D432; }
body.light-mode .pe-footer__tagline,
body.light-mode .pe-footer__brand p { color: rgba(255,255,255,0.55); }
body.light-mode .pe-footer__contact li { color: rgba(255,255,255,0.65); }
body.light-mode .pe-footer__contact svg { color: #B9D432; }
body.light-mode .pe-footer__bottom { border-color: rgba(255,255,255,0.08); }
body.light-mode .pe-footer__bottom p,
body.light-mode .pe-footer__bottom a { color: rgba(255,255,255,0.45); }

body.light-mode .pe-footer-bar {
    background: #071830;
    border-top: 1px solid rgba(255,255,255,0.06);
}
body.light-mode .pe-footer-bar .pe-container { color: rgba(255,255,255,0.50); }
body.light-mode .pe-footer-bar a { color: rgba(255,255,255,0.50); }
body.light-mode .pe-footer-bar a:hover { color: #B9D432; }
