/* ========================================
   HEADER
======================================== */

.site-header {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;

    align-items: center;

    min-height: 82px;

    gap: 2rem;
}

.menu-toggle {
    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    width: 42px;
    height: 42px;
    padding: 0;

    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--color-primary);
}

.mobile-contact-item {
    display: none;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 60px;
}

.site-logo {
    flex-shrink: 0;

    text-decoration: none;
}

.logo-placeholder {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 95px;
    min-height: 42px;

    padding: 0.5rem 1rem;

    font-weight: 700;

    border: 1px solid var(--color-text);
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;

    align-items: center;

    gap: 1.6rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--color-primary);
}

.nav-link.active {
    color: var(--color-primary);

    font-weight: 700;
}
/* ========================================
   HERO
======================================== */
.hero-image {
    position: relative;

    width: 100%;
}

.hero-image::before {
    position: absolute;

    top: -12px;
    right: -12px;

    width: 100%;
    height: 100%;

    background: var(--color-primary);

    content: "";
}

.hero-image img {
    position: relative;
    z-index: 1;

    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   BUTTONS
======================================== */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0.75rem 1.35rem;

    color: var(--color-text);

    font-size: 0.82rem;
    font-weight: 700;

    text-decoration: none;

    border: 1px solid transparent;

    border-radius: var(--radius-small);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button-primary {
    color: #ffffff;

    background: var(--color-primary);

    border-color: var(--color-primary);
}

.button-primary:hover {
    background: var(--color-primary-dark);

    border-color: var(--color-primary-dark);
}

.button-secondary {
    background: transparent;

    border-color: var(--color-border);
}

.button-secondary:hover,
.button-outline:hover {
    background: var(--color-background-light);
}

.button-outline {
    color: var(--color-primary);

    background: transparent;

    border-color: var(--color-primary);
}

.button-outline:hover {
    color: #ffffff;

    background: var(--color-primary);

    border-color: var(--color-primary);
}

.header-contact:hover {
    color: #ffffff;

    background: var(--color-primary);
}

.button-small {
    min-height: 38px;

    padding: 0.55rem 1rem;

    font-size: 0.75rem;
}


/* ========================================
   PLACEHOLDER IMAGES
======================================== */

.image-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 180px;

    padding: 1.5rem;

    color: var(--color-text-light);

    text-align: center;

    background:
        linear-gradient(
            to top right,
            transparent calc(50% - 1px),
            var(--color-border),
            transparent calc(50% + 1px)
        ),
        linear-gradient(
            to bottom right,
            transparent calc(50% - 1px),
            var(--color-border),
            transparent calc(50% + 1px)
        ),
        #fafafa;

    border: 1px solid var(--color-border);
}

.large-placeholder {
    display: flex;

    flex-direction: column;

    min-height: 430px;
}

.large-placeholder span {
    font-weight: 700;
}

.large-placeholder small {
    margin-top: 0.3rem;
}


/* ========================================
   WHY BENCHMARK ICONS
======================================== */

.benefit-icon,
.icon-placeholder,
.resource-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin: 0 auto 1rem;

    color: var(--color-primary);

    font-size: 0.75rem;
    font-weight: 700;

    border: 1px solid var(--color-border);

    background: #ffffff;
}

.benefit-icon,
.resource-icon img {
    object-fit: contain;
}

.benefit-icon {
    box-sizing: border-box;

    padding: 8px;
}

.resource-icon img {
    width: 28px;
    height: 28px;

    object-fit: contain;
}


/* ========================================
   SERVICE CARDS
======================================== */

.service-card {
    display: flex;
    flex-direction: column;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--color-border);

    border-radius: var(--radius-medium);
}

.service-image {
    height: 260px;

    overflow: hidden;
}

.service-image img {
    display: block;

    width: 100%;
    height: 260px;

    object-fit: cover;
    object-position: center;
}

.service-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 1.5rem;
}

.service-card-content p {
    min-height: 80px;

    color: var(--color-text-light);
}


/* ========================================
   RESOURCE CARDS
======================================== */

.resource-card {
    display: block;

    padding: 1.5rem 1rem;

    color: inherit;

    text-align: center;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid var(--color-border);

    border-radius: var(--radius-small);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow-small);
}

.resource-card p {
    margin-bottom: 0;

    color: var(--color-text-light);

    font-size: 0.85rem;
}


/* ========================================
   PUBLICATION CARDS
======================================== */

.publication-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--color-border);

    border-radius: var(--radius-small);
}

.publication-image {
    width: 100%;
    height: 225px;

    overflow: hidden;
}

.publication-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.publication-image .image-placeholder {
    min-height: 155px;

    border: none;

    border-bottom: 1px solid var(--color-border);
}

.publication-content {
    padding: 1.25rem;
}

.publication-type {
    margin-bottom: 0.4rem;

    color: var(--color-secondary);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.publication-content p:not(.publication-type) {
    color: var(--color-text-light);

    font-size: 0.9rem;
}


/* ========================================
   PATHART
======================================== */

.pathart-placeholder {
    min-height: 330px;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #ffffff;

    border-top: 1px solid var(--color-border);
}

.footer-brand p {
    max-width: 270px;

    margin-top: 1.5rem;

    color: var(--color-text-light);

    font-size: 0.9rem;
}

.footer-column h3 {
    margin-bottom: 1rem;

    font-size: 0.9rem;

    text-transform: uppercase;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--color-text-light);

    font-size: 0.88rem;

    text-decoration: none;
}

.footer-column a:hover {
    color: var(--color-text);
}

.footer-contact p {
    margin-bottom: 0.7rem;

    color: var(--color-text-light);

    font-size: 0.88rem;
}

.social-links {
    display: flex;

    gap: 0.6rem;

    margin-top: 1.3rem;
}

.social-links a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: var(--color-text);

    font-size: 0.75rem;
    font-weight: 700;

    text-decoration: none;

    border: 1px solid var(--color-border);
}

.footer-bottom p {
    margin: 0;

    color: var(--color-text-light);

    font-size: 0.78rem;
}

.footer-legal {
    display: flex;

    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-text-light);

    font-size: 0.78rem;

    text-decoration: none;
}
/* ========================================
   SERVICES PAGE COMPONENTS
======================================== */


/* Service Feature Lists */

.service-feature-list {
	margin: 1.5rem 0 2rem;
	padding: 0;

	list-style: none;
}

.service-feature-list li {
	position: relative;

	margin-bottom: 0.7rem;
	padding-left: 1.5rem;

	color: var(--color-text-light);
}

.service-feature-list li::before {
	content: "✓";

	position: absolute;

	left: 0;

	color: var(--color-primary);

	font-weight: 700;
}


/* Additional Service Cards */

.additional-service-card {
	padding: 2rem 1.25rem;

	text-align: center;

	background: #ffffff;

	border: 1px solid var(--color-border);
	border-radius: var(--radius-medium);
}

.additional-service-icon {
	width: 48px;
	height: 48px;

	margin: 0 auto 1rem;

	display: flex;

	align-items: center;
	justify-content: center;
}

.additional-service-icon img {
	display: block;

	width: 30px;
	height: 30px;

	object-fit: contain;
}

.additional-service-card p {
	margin-bottom: 0;

	color: var(--color-text-light);

	font-size: 0.9rem;
}


/* Turnaround */

.turnaround-item {
	padding: 1.5rem 2rem;

	text-align: center;

	border-right: 1px solid var(--color-border);
}

.turnaround-item:last-child {
	border-right: none;
}

.turnaround-icon {
	width: 42px;
	height: 42px;

	margin: 0 auto 1rem;

	display: flex;

	align-items: center;
	justify-content: center;

	color: var(--color-primary);

	font-size: 2rem;
}

.turnaround-item p {
	margin-bottom: 0;

	color: var(--color-text-light);

	font-weight: 600;
}


/* FAQ */

.faq-list {
	width: 100%;
}

.faq-item {
	margin-bottom: 0.65rem;

	background: #ffffff;

	border: 1px solid var(--color-border);
}

.faq-item summary {
	position: relative;

	padding: 1rem 3rem 1rem 1.25rem;

	font-weight: 600;

	cursor: pointer;

	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";

	position: absolute;

	top: 50%;
	right: 1.25rem;

	transform: translateY(-50%);

	color: var(--color-primary);

	font-size: 1.25rem;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin: 0;
	padding: 0 1.25rem 1.25rem;

	color: var(--color-text-light);
}

.faq-button {
	margin-top: 1rem;
}


/* FAQ Visual */

.faq-visual {
	position: relative;

	min-height: 260px;

	display: flex;

	align-items: center;
	justify-content: center;

	background: #ffffff;

	border: 1px solid var(--color-border);
}

.faq-bubble {
	position: relative;

	width: 85px;
	height: 70px;

	display: flex;

	align-items: center;
	justify-content: center;

	color: var(--color-primary);

	font-size: 1.6rem;
	font-weight: 700;

	border: 2px solid var(--color-primary);
	border-radius: 20px;
}

.faq-bubble-secondary {
	position: absolute;

	margin-left: 95px;
	margin-top: 80px;
}


/* CTA */

.services-cta-icon {
	flex-shrink: 0;

	width: 54px;
	height: 54px;

	display: flex;

	align-items: center;
	justify-content: center;

	color: var(--color-primary);

	font-size: 1.8rem;

	border: 1px solid var(--color-primary);
	border-radius: 50%;
}
/* ========================================
   404 ERROR PAGE
======================================== */

.error-page {
    display: flex;
    align-items: center;

    min-height: 70vh;
    padding-block: 6rem;

    background:
        linear-gradient(
            135deg,
            #f8fbfd 0%,
            #eef6fb 100%
        );
}


.error-page-inner {
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
}


/* Large 404 number */

.error-code {
    margin: 0 0 0.5rem;

    color: var(--color-primary);

    font-size: clamp(6rem, 16vw, 11rem);
    font-weight: 700;
    line-height: 0.9;

    opacity: 0.12;
}


/* Heading */

.error-page h1 {
    max-width: 650px;

    margin: 0 auto 1.25rem;
}


/* Description */

.error-description {
    max-width: 580px;

    margin: 0 auto;

    color: var(--color-text-light);

    font-size: 1.05rem;
    line-height: 1.7;
}


/* Buttons */

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 2rem;
}


/* Helpful links */

.error-help {
    margin-top: 4rem;
    padding-top: 2rem;

    border-top: 1px solid var(--color-border);
}

.error-help > p {
    margin-bottom: 1rem;

    color: var(--color-text-light);

    font-size: 0.9rem;
}


.error-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 1.5rem;
}


.error-links a {
    color: var(--color-primary);

    font-weight: 600;
    text-decoration: none;
}


.error-links a:hover {
    text-decoration: underline;
}


/* ========================================
   404 MOBILE
======================================== */

@media (max-width: 750px) {

    .error-page {
        min-height: 60vh;

        padding-block: 4rem;
    }


    .error-page-inner {
        text-align: left;
    }


    .error-code {
        font-size: 6rem;
    }


    .error-page h1,
    .error-description {
        margin-left: 0;
    }


    .error-actions {
        justify-content: flex-start;
    }


    .error-help {
        margin-top: 3rem;
    }


    .error-links {
        flex-direction: column;
        align-items: flex-start;

        gap: 0.75rem;
    }

}