/*
Theme Name: PB Fire Safety
Theme URI: https://pbfiresafety.co.uk
Author: PB Safety Consultancy Ltd
Description: Professional WordPress theme for PB Fire Safety - Fire Risk Assessments & Consultancy Services.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pbfiresafety
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
*/

/* ========================================
   1. RESET & BASE
   ======================================== */

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

:root {
    --navy: #1d3278;
    --navy-dark: #152559;
    --navy-light: #2a4399;
    --orange: #ea7a00;
    --orange-dark: #d06d00;
    --orange-light: #ff9a2e;
    --white: #ffffff;
    --off-white: #f7f8fc;
    --gray-100: #f1f3f9;
    --gray-200: #e2e6f0;
    --gray-300: #c5cade;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px rgba(29, 50, 120, 0.05);
    --shadow-md: 0 4px 12px rgba(29, 50, 120, 0.08);
    --shadow-lg: 0 8px 30px rgba(29, 50, 120, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-dark);
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ========================================
   3. LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--gray {
    background: var(--off-white);
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--navy h2,
.section--navy h3 {
    color: var(--white);
}

.section--navy p {
    color: rgba(255, 255, 255, 0.85);
}

.section--white {
    background: var(--white);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section__label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section__header p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* ========================================
   4. BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: var(--font-sans);
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(234, 122, 0, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.section--navy .btn--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.section--navy .btn--outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn--outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
}

.btn--white:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--large svg {
    width: 20px;
    height: 20px;
}

.btn--small {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.site-header__logo {
    flex-shrink: 0;
}

.site-header__logo img {
    height: 48px;
    width: auto;
}

.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    flex-shrink: 0;
}

.site-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.site-header__toggle span:nth-child(1) { top: 12px; }
.site-header__toggle span:nth-child(2) { top: 19px; }
.site-header__toggle span:nth-child(3) { top: 26px; }

body.nav-open .site-header__toggle span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

body.nav-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .site-header__toggle span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}

.site-header__cta:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.site-header__cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Primary Navigation */
.nav-primary {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-primary__item {
    position: relative;
}

.nav-primary__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition), background var(--transition);
    border-radius: 6px;
    text-decoration: none;
}

.nav-primary__link:hover {
    color: var(--navy);
    background: var(--gray-100);
}

.nav-primary__item--current > .nav-primary__link {
    color: var(--navy);
    font-weight: 600;
}

.nav-primary__chevron {
    transition: transform 0.2s;
    margin-left: 2px;
    vertical-align: middle;
}

/* Dropdown */
.nav-primary__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 100;
    list-style: none;
}

.nav-primary__item--has-children:hover .nav-primary__dropdown,
.nav-primary__item--has-children.dropdown-open .nav-primary__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-primary__dropdown-link {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.nav-primary__dropdown-link:hover {
    background: var(--gray-100);
    color: var(--navy);
}

/* ========================================
   6. HOME HERO
   ======================================== */

.hero {
    padding: 9rem 0 5rem;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

/* Subtle noise grain texture */
.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Geometric grid pattern */
.hero__grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

/* Ambient glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(234, 122, 0, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 67, 153, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Split layout */
.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Content side ── */
.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.125rem 0.5rem 0.75rem;
    background: rgba(234, 122, 0, 0.1);
    border: 1px solid rgba(234, 122, 0, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    animation: heroFadeUp 0.8s ease both;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    display: block;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(234, 122, 0, 0.6);
    animation: dotPulse 2.5s ease-in-out infinite;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    animation: heroFadeUp 0.8s ease 0.1s both;
}

.hero h1 span {
    color: var(--orange);
}

.hero__intro {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 520px;
    animation: heroFadeUp 0.8s ease 0.2s both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: heroFadeUp 0.8s ease 0.3s both;
}

/* Stats bar */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: heroFadeUp 0.8s ease 0.45s both;
}

.hero__stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Visual / image side ── */
.hero__visual {
    position: relative;
    animation: heroFadeIn 1s ease 0.3s both;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Orange accent bar */
.hero__accent-line {
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 4px;
    height: 100px;
    background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
    border-radius: 4px;
}

/* Floating trust cards */
.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    z-index: 3;
}

.hero__float-card svg {
    color: var(--orange);
    flex-shrink: 0;
}

.hero__float-card strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.hero__float-card span {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero__float-card--top {
    top: 8%;
    right: -1.5rem;
    animation: floatCardIn 0.7s ease 0.7s both;
}

.hero__float-card--bottom {
    bottom: 12%;
    left: -1.5rem;
    animation: floatCardIn 0.7s ease 0.9s both;
}

/* ── Hero Animations ── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatCardIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 6px rgba(234, 122, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 14px rgba(234, 122, 0, 0.8), 0 0 4px rgba(234, 122, 0, 1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__badge,
    .hero h1,
    .hero__intro,
    .hero__actions,
    .hero__stats,
    .hero__visual,
    .hero__float-card--top,
    .hero__float-card--bottom {
        animation: none !important;
    }
    .hero__badge-dot {
        animation: none !important;
    }
}

/* ========================================
   7. COMPETENCY BAR
   ======================================== */

.competency-bar {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.competency-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.competency-bar__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy);
}

.competency-bar__item svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

/* ========================================
   8. TRUST BAR
   ======================================== */

.trust-bar {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy);
}

.trust-bar__item svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

/* ========================================
   9. WHY CHOOSE US
   ======================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.why-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 122, 0, 0.08);
    border-radius: var(--radius);
    color: var(--orange);
}

.why-card__icon svg {
    width: 22px;
    height: 22px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.why-footer {
    position: relative;
    margin-top: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-footer__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.why-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 37, 89, 0.92) 0%, rgba(29, 50, 120, 0.85) 100%);
    z-index: 1;
}

.why-footer__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3.5rem 3rem;
    max-width: 680px;
}

.why-footer__icon {
    width: 36px;
    height: 36px;
    color: var(--orange);
    margin: 0 auto 1.5rem;
    display: block;
}

.why-footer__quote {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.01em;
    margin: 0;
    font-style: normal;
}

.why-footer__rule {
    width: 48px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 1.5rem auto;
}

.why-footer__cite {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ========================================
   10. SERVICES GRID
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 50, 120, 0.06), rgba(234, 122, 0, 0.08));
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.625rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.service-card--link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card--link:hover .service-card__arrow {
    transform: translateX(4px);
}

.service-card__arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
    transition: transform 0.25s;
}

.service-card__arrow svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   11. INDUSTRIES
   ======================================== */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    text-align: center;
}

.industry-card {
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.industry-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.industry-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 50, 120, 0.06);
    border-radius: var(--radius);
    color: var(--navy);
}

.industry-card__icon svg {
    width: 24px;
    height: 24px;
}

.industry-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

/* ========================================
   12. TESTIMONIALS
   ======================================== */

.testimonials {
    padding: 3rem 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9375rem;
}

.testimonial-card__company {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ========================================
   13. CTA BANNER
   ======================================== */

.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 122, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

/* ========================================
   14. PAGE HERO (Interior Pages)
   ======================================== */

.page-hero {
    padding: 10rem 0 3rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(234, 122, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
}

.page-hero__breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
    color: var(--white);
}

.page-hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

/* ========================================
   15. PAGE CONTENT
   ======================================== */

.page-content {
    padding: 4rem 0;
}

.page-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.page-content h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ========================================
   16. FEATURE GRID (Service Pages)
   ======================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 50, 120, 0.06), rgba(234, 122, 0, 0.08));
    border-radius: var(--radius);
    color: var(--navy);
}

.feature-card__icon svg {
    width: 26px;
    height: 26px;
}

.feature-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ========================================
   17. WHO IT'S FOR
   ======================================== */

.who-section {
    padding: 4rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.who-section__title {
    margin-bottom: 1.5rem;
}

.who-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.who-section__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    font-weight: 500;
    color: var(--navy);
    font-size: 0.9375rem;
}

.who-section__item svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

/* ========================================
   18. DIFFERENCE SECTION
   ======================================== */

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.difference-card {
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--orange);
}

.difference-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.difference-card__text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ========================================
   19. PROCESS STEPS
   ======================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--gray-200);
}

/* ========================================
   20. SECTORS
   ======================================== */

.sectors {
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section--navy .sectors {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sectors h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.sectors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.sector-item svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

.sectors__brands {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sectors__brands-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-bottom: 1rem;
}

.sectors__brands-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.brand-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.brand-logo:hover {
    opacity: 0.7;
}

/* ========================================
   21. CTA SECTION (Contact Card)
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.cta-card h2 {
    margin-bottom: 1.25rem;
}

.cta-card > p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.cta-contact svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.cta-contact a {
    color: var(--navy);
}

.cta-contact a:hover {
    color: var(--orange);
}

/* ========================================
   22. ABOUT PAGE
   ======================================== */

/* ── Who We Are: text + stats ── */
.about-who__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-who__text h2 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-who__text h2 strong {
    color: var(--orange);
    font-weight: 700;
}

.about-who__text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.about-who__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-stat {
    padding: 1.75rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.about-stat:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.about-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.4;
    font-weight: 500;
}

/* ── Experience: navy section with image + text ── */
.about-experience {
    position: relative;
    overflow: hidden;
}

.about-experience__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.about-experience__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-experience__image-col {
    position: relative;
}

.about-experience__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-experience__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-experience__badge {
    position: absolute;
    bottom: -1.25rem;
    right: -1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-experience__badge svg {
    color: var(--orange);
    flex-shrink: 0;
}

.about-experience__badge strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
}

.about-experience__badge span {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.about-experience__text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-experience__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-experience__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-experience__highlight {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.about-experience__highlight svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* ── Approach: numbered manifesto cards ── */
.about-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-approach__card {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}

.about-approach__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.about-approach__card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.about-approach__card:hover::before {
    opacity: 1;
}

.about-approach__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    transition: color var(--transition);
}

.about-approach__card:hover .about-approach__number {
    color: rgba(234, 122, 0, 0.15);
}

.about-approach__content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.about-approach__content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── Values grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: center;
}

.value-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 122, 0, 0.08);
    border-radius: var(--radius);
    color: var(--orange);
    margin: 0 auto 1rem;
}

.value-card__icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ========================================
   23. CONTACT PAGE
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h2 {
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(234, 122, 0, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.form-message--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 122, 0, 0.08);
    border-radius: var(--radius);
    color: var(--orange);
}

.contact-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.contact-card a:hover {
    color: var(--orange);
}

/* ========================================
   24. BROCHURE PAGE
   ======================================== */

.brochure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.brochure-content h2 {
    margin-bottom: 1.5rem;
}

.brochure-content p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.75;
}

.brochure-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.brochure-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.brochure-feature svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

.brochure-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.brochure-form h3 {
    margin-bottom: 1.5rem;
}

/* ========================================
   25. BLOG
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--orange);
}

.blog-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.blog-card__category {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card__title a {
    color: inherit;
    transition: color 0.2s;
}

.blog-card__title a:hover {
    color: var(--orange);
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
    transition: gap var(--transition);
}

.blog-card__link:hover {
    gap: 0.625rem;
}

.blog-card__link svg {
    width: 16px;
    height: 16px;
}

/* Single Post */
.post-header {
    margin-bottom: 2.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.post-meta__item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-meta__item svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.post-content {
    max-width: 780px;
    margin: 0 auto;
}

.post-content img {
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.post-navigation a {
    color: var(--navy);
    font-weight: 600;
    transition: color var(--transition);
}

.post-navigation a:hover {
    color: var(--orange);
}

/* Blog Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.blog-widget__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-categories {
    list-style: none;
    padding: 0;
}

.blog-categories li {
    margin-bottom: 0.5rem;
}

.blog-categories a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.blog-categories a:hover {
    color: var(--orange);
}

.blog-categories .count {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition);
}

.pagination a {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--gray-200);
}

.pagination a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.pagination .current {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}

/* ========================================
   26. 404 PAGE
   ======================================== */

.error-page {
    padding: 8rem 0;
    text-align: center;
}

.error-page__content {
    max-width: 560px;
    margin: 0 auto;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.error-page h2 {
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* ========================================
   27. FOOTER
   ======================================== */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.site-footer__col h3 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.site-footer__logo {
    display: block;
    margin-bottom: 1.25rem;
}

.site-footer__logo img {
    height: 40px;
    width: auto;
}

.site-footer__desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.site-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__nav li {
    margin-bottom: 0.5rem;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.site-footer__nav a:hover {
    color: var(--white);
    padding-left: 4px;
}

.site-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.site-footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer__contact-item a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.site-footer__contact-item a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.site-footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.site-footer__certs {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.site-footer__certs span {
    margin: 0 0.375rem;
    opacity: 0.5;
}

/* ========================================
   MOBILE NAV PANEL
   ======================================== */

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav.is-open {
    display: block;
    animation: mobileNavIn 0.2s ease forwards;
}

body.nav-open {
    overflow: hidden;
}

.mobile-nav__list,
.mobile-nav .nav-primary {
    list-style: none;
    padding: 0.5rem 1.5rem 3rem;
    margin: 0;
}

.mobile-nav__list > li,
.mobile-nav .nav-primary > .nav-primary__item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav__list > li:last-child,
.mobile-nav .nav-primary > .nav-primary__item:last-child {
    border-bottom: none;
}

.mobile-nav__link,
.mobile-nav .nav-primary__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9375rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
}

.mobile-nav__link:active,
.mobile-nav .nav-primary__link:active {
    color: var(--navy);
}

.mobile-nav .nav-primary__chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.mobile-nav .nav-primary__item--has-children.dropdown-open > .nav-primary__link .nav-primary__chevron {
    transform: rotate(180deg);
}

.mobile-nav__dropdown,
.mobile-nav .nav-primary__dropdown {
    list-style: none;
    padding: 0 0 0.5rem 1.25rem;
    margin: 0 0 0.25rem 0;
    border-left: 2px solid var(--orange);
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    background: none;
}

.mobile-nav .nav-primary__item--has-children.dropdown-open > .nav-primary__dropdown {
    display: block;
}

.mobile-nav__dropdown a,
.mobile-nav .nav-primary__dropdown-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-500);
    text-decoration: none;
}

.mobile-nav__dropdown a:active,
.mobile-nav .nav-primary__dropdown-link:active {
    color: var(--orange);
}

/* ========================================
   28. ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .why-card,
    .service-card,
    .process-step,
    .sector-item {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow var(--transition);
    }

    .why-card.visible,
    .service-card.visible,
    .process-step.visible,
    .sector-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   29. UTILITY
   ======================================== */

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

.text-center {
    text-align: center;
}

/* ========================================
   30. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .hero__split {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }

    .hero__float-card--top {
        right: -0.5rem;
    }

    .hero__float-card--bottom {
        left: -0.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__cols {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-who__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-experience__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-approach__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* ── Hide desktop nav, show hamburger at 1024px ── */
    .site-header__nav--desktop {
        display: none;
    }

    .site-header__toggle {
        display: flex;
    }

    .site-header__cta span {
        display: none;
    }

    .site-header__cta {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .hero__split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image-frame {
        aspect-ratio: 3 / 4;
    }

    .hero__float-card--top {
        right: -0.5rem;
        top: 5%;
    }

    .hero__float-card--bottom {
        left: -0.5rem;
        bottom: 8%;
    }

    .hero__stats {
        gap: 1.25rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .hero__stat-number {
        font-size: 1.25rem;
    }

    .hero__accent-line {
        display: none;
    }

    .page-hero {
        padding: 8rem 0 2.5rem;
    }

    .site-header__inner {
        height: 64px;
    }

    .site-header__logo img {
        height: 40px;
    }

    .mobile-nav {
        top: 64px;
    }

    /* Grid adjustments */
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-footer {
        min-height: 260px;
    }

    .why-footer__content {
        padding: 2.5rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

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

    .sectors {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .brochure-grid {
        grid-template-columns: 1fr;
    }

    .about-who__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-experience__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-experience__badge {
        right: 1rem;
        bottom: -1rem;
    }

    .about-approach__grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .who-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: center;
    }

    .site-footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .site-footer__col:first-child {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .trust-bar__inner {
        flex-direction: column;
        gap: 1rem;
    }

    .competency-bar__inner {
        flex-direction: column;
    }

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

    .who-section__grid {
        grid-template-columns: 1fr;
    }

    .who-section {
        padding: 2rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .sectors__grid {
        grid-template-columns: 1fr;
    }

    .about-who__stats {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-approach__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   31. ADDITIONAL FIXES
   ======================================== */

/* Blog category filters */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.blog-categories__link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.blog-categories__link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(234, 122, 0, 0.04);
}

.blog-categories__link--active,
.blog-categories__link--active:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.blog-categories__link span {
    color: var(--gray-500);
    font-weight: 400;
    margin-left: 0.125rem;
}

.blog-categories__link--active span {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog card placeholder */
.blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--gray-300);
}

/* Blog card date */
.blog-card__date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Page hero narrow variant */
.page-hero--narrow {
    padding: 9rem 0 2.5rem;
}

/* Post meta variants */
.post-meta__date,
.post-meta__category,
.post-meta__reading-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-meta__date svg,
.post-meta__category svg,
.post-meta__reading-time svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

/* Post navigation */
.post-navigation__inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation__link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
    max-width: 45%;
}

.post-navigation__link:hover {
    color: var(--orange);
}

.post-navigation__link--next {
    text-align: right;
    margin-left: auto;
}

.post-navigation__label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-navigation__title {
    font-weight: 600;
    font-size: 1rem;
}

/* Error page actions */
.error-page__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* About section placeholder */
.about-section__placeholder {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: var(--radius-lg);
    color: var(--gray-300);
}

/* Brochure form variants */
.brochure-form__success {
    text-align: center;
    padding: 2rem;
}

.brochure-form__success svg {
    width: 48px;
    height: 48px;
    color: var(--orange);
    margin: 0 auto 1rem;
    display: block;
}

/* Contact form inner */
.contact-form__form .form-group {
    margin-bottom: 1.25rem;
}

/* No results */
.no-results {
    text-align: center;
    padding: 4rem 0;
}

.no-results h2 {
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.0625rem;
}
