.procargo-landing,
.procargo-header,
.procargo-hero,
.procargo-stats,
.procargo-services,
.procargo-features,
.procargo-cta,
.procargo-footer {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.procargo-container {
	width: min(1140px, 100%);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

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

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.procargo-header {
	--procargo-header-height: 74px;
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(12, 18, 34, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.3s ease;
}

.procargo-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.75rem;
	min-height: var(--procargo-header-height);
}

.procargo-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.procargo-header__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.procargo-header__logo {
	height: 42px;
	width: auto;
	object-fit: contain;
}

.procargo-header__logo-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.01em;
}

.procargo-header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.procargo-header__menu-list {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.procargo-header__menu-list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 500;
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	padding: 0.35rem 0;
	position: relative;
	transition: color 0.2s ease;
}

.procargo-header__menu-list > li > a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffb400, #ffcf55);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.procargo-header__menu-list > li > a:hover,
.procargo-header__menu-list > li.current-menu-item > a,
.procargo-header__menu-list > li.current_page_item > a {
	color: #ffffff;
}

.procargo-header__menu-list > li > a:hover::after,
.procargo-header__menu-list > li.current-menu-item > a::after,
.procargo-header__menu-list > li.current_page_item > a::after {
	transform: scaleX(1);
}

.procargo-header__menu-placeholder {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
}

.procargo-header__cta {
	justify-self: end;
	box-shadow: 0 10px 24px rgba(255, 180, 0, 0.28);
}

.procargo-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.32rem;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	cursor: pointer;
	transition: box-shadow 0.2s ease;
}

.procargo-header__toggle-line {
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: #ffffff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.procargo-header__toggle:hover {
	box-shadow: 0 10px 32px rgba(12, 18, 34, 0.35);
}

.procargo-header--menu-open .procargo-header__toggle-line:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.procargo-header--menu-open .procargo-header__toggle-line:nth-child(2) {
	opacity: 0;
}

.procargo-header--menu-open .procargo-header__toggle-line:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/* Shared section heading                                                     */
/* -------------------------------------------------------------------------- */

.procargo-section-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.procargo-section-heading--left {
	text-align: left;
}

.procargo-section-heading__title {
	font-size: clamp(1.75rem, 5vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0e1d3a;
	text-align: center !important;
}

.procargo-section-heading__subtitle {
	max-width: 36rem;
	margin: 0 auto;
	color: #3b4c6b;
	line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* Elementor placeholder (fallback)                                           */
/* -------------------------------------------------------------------------- */

.procargo-elementor-placeholder {
	padding: 3rem;
	text-align: center;
	background: linear-gradient(135deg, #0e1d3a, #163d74);
	color: #fff;
	border-radius: 1rem;
}

.procargo-elementor-placeholder__title {
	margin-bottom: 0.75rem;
	font-size: 1.75rem;
	font-weight: 700;
}

.procargo-elementor-placeholder__description {
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.procargo-elementor-placeholder__button {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.75rem;
	font-weight: 600;
	border-radius: 999px;
	background: #ffb400;
	color: #0e1d3a;
	text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* Cards                                                                      */
/* -------------------------------------------------------------------------- */

.procargo-card-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.procargo-card {
	padding: 2rem;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 20px 40px rgba(14, 29, 58, 0.08);
}

.procargo-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #0e1d3a;
}

.procargo-card__description {
	margin-bottom: 1rem;
	color: #3b4c6b;
}

.procargo-card__list {
	margin: 0;
	padding-left: 1.1rem;
	color: #0e1d3a;
	line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* Feature list                                                               */
/* -------------------------------------------------------------------------- */

.procargo-feature-list {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.procargo-feature__title {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: #0e1d3a;
}

.procargo-feature__description {
	color: #3b4c6b;
	line-height: 1.6;
}

.procargo-feature-cta {
	display: flex;
	justify-content: center;
}

.procargo-feature-cta__inner {
	padding: 2.5rem;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, #0e1d3a, #1f58a4);
	color: #fff;
	max-width: 22rem;
}

.procargo-feature-cta__title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
		color:white;
}

.procargo-feature-cta__subtitle {
	margin-bottom: 1.75rem;
	line-height: 1.6;
	color:white;
	opacity: 0.85;
}

/* -------------------------------------------------------------------------- */
/* Stats                                                                      */
/* -------------------------------------------------------------------------- */

.procargo-stats {
	padding: 3rem 0;
}

.procargo-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 2rem;
	text-align: center;
}

.procargo-stat {
	padding: 2rem 1.5rem;
	border-radius: 1rem;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(14, 29, 58, 0.05);
}

.procargo-stat__figure {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #0e1d3a;
	margin-bottom: 0.75rem;
}

.procargo-stat__label {
	color: #3b4c6b;
	line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.procargo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.procargo-button--primary {
	background: #ffb400;
	color: #0e1d3a;
}

.procargo-button--ghost {
	border: 1.5px solid rgba(14, 29, 58, 0.2);
	color: #0e1d3a;
}

.procargo-button--wide {
	width: 100%;
	text-align: center;
}

.procargo-button--light {
	background: #fff;
	color: #0e1d3a;
}

.procargo-button--ghost-light {
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	color: #fff;
}

.procargo-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 25px rgba(14, 29, 58, 0.12);
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.procargo-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: radial-gradient(circle at top right, rgba(31, 88, 164, 0.2), transparent),
		radial-gradient(circle at bottom left, rgba(255, 180, 0, 0.18), transparent);
}

.procargo-hero__layout {
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
}

.procargo-hero__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1.2;
	color: #0e1d3a;
	margin-bottom: 1.5rem;
}

.procargo-hero__title-highlight {
	display: block;
	color: #1f58a4;
}

.procargo-hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #3b4c6b;
	margin-bottom: 2rem;
}

.procargo-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.procargo-hero__visual-frame {
	position: relative;
	min-height: 280px;
	background: linear-gradient(135deg, rgba(31, 88, 164, 0.18), rgba(14, 29, 58, 0.45));
	border-radius: 1.5rem;
	overflow: hidden;
}

.procargo-hero__visual-glow,
.procargo-hero__orb,
.procargo-hero__pulse,
.procargo-hero__route {
	position: absolute;
	border-radius: 50%;
	opacity: 0.6;
}

.procargo-hero__visual-glow {
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(255, 180, 0, 0.35), transparent 70%);
	top: -10%;
	left: -10%;
}

.procargo-hero__orb--primary {
	width: 140px;
	height: 140px;
	background: rgba(31, 88, 164, 0.35);
	top: 18%;
	left: 20%;
}

.procargo-hero__orb--accent {
	width: 110px;
	height: 110px;
	background: rgba(255, 180, 0, 0.45);
	bottom: 18%;
	right: 22%;
}

.procargo-hero__pulse--one,
.procargo-hero__pulse--two {
	width: 220px;
	height: 220px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	top: 24%;
	left: 30%;
}

.procargo-hero__pulse--two {
	width: 280px;
	height: 280px;
	top: 10%;
	left: 10%;
}

.procargo-hero__route,
.procargo-hero__route--secondary {
	width: 70%;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	top: 40%;
	left: 15%;
	border-radius: 999px;
}

.procargo-hero__route--secondary {
	width: 40%;
	top: 62%;
	left: 32%;
}

/* -------------------------------------------------------------------------- */
/* CTA                                                                        */
/* -------------------------------------------------------------------------- */

.procargo-cta {
	padding: 4rem 0;
	text-align: center;
	background: linear-gradient(160deg, #0e1d3a, #1b4f95);
	color: #fff;
	border-radius: 1.5rem;
	margin: 3rem auto;
}

.procargo-cta__title {
	font-size: clamp(2rem, 5vw, 2.5rem);
	margin-bottom: 1rem;
	text-align:center !important;
}

.procargo-cta__subtitle {
	max-width: 36rem;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
	opacity: 0.9;
}

.procargo-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.procargo-footer {
	position: relative;
	padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
	background: radial-gradient(120% 140% at 10% -10%, rgba(37, 74, 155, 0.55), transparent 60%),
		radial-gradient(120% 140% at 90% 120%, rgba(255, 180, 0, 0.35), transparent 55%),
		#0c1322;
	color: rgba(255, 255, 255, 0.9);
}

.procargo-footer--bordered {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.procargo-footer__top {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	grid-template-columns: minmax(220px, 1fr) 2fr;
	align-items: flex-start;
}

.procargo-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.procargo-footer__logo {
	width: 150px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.procargo-footer__brand-name {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
}

.procargo-footer__description {
	margin: 0;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.72);
	max-width: 22rem;
}

.procargo-footer__columns {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.procargo-footer__column {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.procargo-footer__column-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.procargo-footer__column-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.procargo-footer__column-content li {
	line-height: 1.6;
}

.procargo-footer__column-content a {
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.procargo-footer__column-content a::before {
	content: '•';
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	transform: translateY(-1px);
}

.procargo-footer__column-content a:hover {
	color: #ffffff;
	transform: translateX(3px);
}

.procargo-footer__bottom {
	margin-top: clamp(2rem, 5vw, 3.25rem);
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.64);
}

/* -------------------------------------------------------------------------- */
/* Responsive tweaks                                                          */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.procargo-header__inner {
		position: relative;
		grid-template-columns: auto auto;
	}

	.procargo-header__toggle {
		display: inline-flex;
	}

	.procargo-header__cta {
		display: none;
	}

	.procargo-header__nav {
		position: fixed;
		top: calc(var(--procargo-header-height) + 12px);
		right: 1.5rem;
		left: 1.5rem;
		display: block;
		background: rgba(12, 18, 34, 0.97);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 1rem;
		padding: 1.5rem 1.25rem 1.75rem;
		box-shadow: 0 24px 60px rgba(5, 11, 22, 0.45);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s;
	}

	.procargo-header__nav--open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.procargo-header__menu-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.1rem;
	}

	.procargo-header__menu-list > li > a {
		font-size: 1.05rem;
		padding: 0;
	}

	.procargo-header__menu-list > li > a::after {
		display: none;
	}

	.procargo-footer__top {
		grid-template-columns: 1fr;
	}

	.procargo-footer__columns {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}

@media (max-width: 768px) {
	.procargo-cta {
		border-radius: 1rem;
	}

	.procargo-feature-cta {
		margin-top: 2rem;
	}

	.procargo-header__nav {
		right: 1rem;
		left: 1rem;
	}

	.procargo-footer__columns {
		grid-template-columns: 1fr;
	}
}

/* -------------------------------------------------------------------------- */
/* About: Our Story                                                           */
/* -------------------------------------------------------------------------- */

.procargo-about-story {
	padding: 3rem 0;
}

.procargo-about-story__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 2rem;
	align-items: center;
}

.procargo-about-story__paragraph {
	color: #3b4c6b;
	line-height: 1.8;
	margin: 0 0 1rem;
}

.procargo-about-story__highlight {
	width: 100%;
}

.procargo-about-story__highlight-card {
	padding: 2rem;
	border-radius: 1.25rem;
	background: linear-gradient(135deg, #eff5ff, #fdf7e6);
	box-shadow: 0 18px 40px rgba(14, 29, 58, 0.08);
}

.procargo-about-story__highlight-title {
	margin: 0 0 0.75rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: #0e1d3a;
}

.procargo-about-story__highlight-description {
	margin: 0 0 1.25rem;
	color: #3b4c6b;
	line-height: 1.7;
}

.procargo-about-story__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	text-align: center;
}

.procargo-about-story__stat {
	padding: 1rem;
	border-radius: 0.85rem;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(14, 29, 58, 0.06);
}

.procargo-about-story__stat-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1f58a4;
}

.procargo-about-story__stat-label {
	color: #3b4c6b;
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* About: Why Choose Us                                                       */
/* -------------------------------------------------------------------------- */

.procargo-why-choose {
	padding: 3rem 0;
}

.procargo-why-choose__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.procargo-why-choose__item {
	text-align: center;
	padding: 1.5rem;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 18px 40px rgba(14, 29, 58, 0.08);
}

.procargo-why-choose__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #0e1d3a;
}

.procargo-why-choose__description {
	margin: 0;
	color: #3b4c6b;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* About: Team                                                                */
/* -------------------------------------------------------------------------- */

.procargo-team-grid {
	/* extends .procargo-card-grid spacing by default */
}

.procargo-team-card__count {
	margin-top: 0.5rem;
	display: inline-flex;
	align-items: baseline;
	gap: 0.35rem;
}

.procargo-team-card__value {
	font-weight: 700;
	color: #1f58a4;
}

.procargo-team-card__label {
	color: #3b4c6b;
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.procargo-about-story__grid {
		grid-template-columns: 1fr;
	}

	.procargo-why-choose__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.procargo-about-story {
		padding: 2.25rem 0;
	}

	.procargo-why-choose {
		padding: 2.25rem 0;
	}

	.procargo-why-choose__grid {
		grid-template-columns: 1fr;
	}
}
