/* ───────────────────────────────────────────────
   GPC Energy and Logistics — About Us Stylesheet
   ─────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap");

/* ── Reset ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
img {
	display: block;
	max-width: 100%;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}

/* ── Brand Tokens ── */
:root {
	--blue: #005a9b;
	--blue-dark: #004070;
	--blue-mid: #006bbf;
	--blue-light: #0a7fd4;
	--blue-glow: rgba(0, 90, 155, 0.18);
	--amber: #fbb60c;
	--amber-dark: #e0a00a;
	--amber-light: #fdd060;
	--amber-glow: rgba(251, 182, 12, 0.2);
	--white: #ffffff;
	--off-white: #f7f9fc;
	--light-gray: #eef2f7;
	--mid-gray: #94a3b8;
	--dark-gray: #334155;
	--text: #1e293b;
	--border: rgba(0, 90, 155, 0.12);
	--border-light: rgba(255, 255, 255, 0.12);

	--ff-head: "Playfair Display", serif;
	--ff-body: "Segoe UI", "Lucida Sans", system-ui, sans-serif;

	--max-w: 1280px;
	--gutter: clamp(1.25rem, 5vw, 4rem);
	--nav-h: 72px;

	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Base ── */
body {
	font-family: var(--ff-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
}

/* ── Utility ── */
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.label {
	font-family: var(--ff-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--amber);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 1rem;
}
.label::before {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	background: var(--amber);
	flex-shrink: 0;
}
.label--light {
	color: var(--amber-dark);
}
.label--light::before {
	background: var(--amber-light);
}

/* ── Scroll-reveal ── */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.7s var(--ease-out),
		transform 0.7s var(--ease-out);
}
.reveal.visible {
	opacity: 1;
	transform: none;
}
.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition:
		opacity 0.8s var(--ease-out),
		transform 0.8s var(--ease-out);
}
.reveal-left.visible {
	opacity: 1;
	transform: none;
}
.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition:
		opacity 0.8s var(--ease-out),
		transform 0.8s var(--ease-out);
}
.reveal-right.visible {
	opacity: 1;
	transform: none;
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ═══ NAV ═══ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: var(--nav-h);
	background: rgba(255, 255, 255, 0);
	transition:
		background 0.4s,
		box-shadow 0.4s;
}
.nav {
	background: transparent;
}
.nav:hover {
	background-color: #ffffff;
}
.nav.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}
.nav__links a {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--white);
	padding: 6px 12px;
	border-radius: 6px;
	transition:
		color 0.2s,
		background 0.2s;
}
.nav.scrolled .nav__links a,
.nav:hover .nav__links a,
.nav__links a:hover {
	color: var(--blue-dark);
}
.nav__links a:hover {
	background: rgba(0, 90, 155, 0.05);
}
.nav__hamburger span {
	background: var(--white);
}
.nav:hover .nav__hamburger span,
.nav.scrolled .nav__hamburger span {
	background: var(--blue-dark);
}
.nav__inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.nav__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}
.nav__logo-badge {
	width: 42px;
	height: 42px;
	background: var(--amber);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: var(--ff-head);
	font-weight: 800;
	font-size: 13px;
	color: var(--blue-dark);
	transition: transform 0.3s var(--ease-spring);
}
.nav__logo:hover .nav__logo-badge {
	transform: rotate(-5deg) scale(1.05);
}
.nav__logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.nav__logo-text strong {
	font-family: var(--ff-head);
	font-weight: 800;
	font-size: 18px;
	color: var(--blue-dark);
	letter-spacing: -0.01em;
}
.nav__logo-text span {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--amber-dark);
}
.nav__links {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.nav__cta {
	background: var(--amber) !important;
	color: var(--blue-dark) !important;
	font-weight: 700 !important;
	border-radius: 8px !important;
	padding: 8px 20px !important;
	font-size: 13px !important;
	transition:
		background 0.2s,
		transform 0.2s !important;
}
.nav__cta:hover {
	background: var(--amber-dark) !important;
	transform: translateY(-1px) !important;
}
.nav__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px 6px;
	border: none;
	background: none;
	z-index: 210;
	position: relative;
}
.nav__hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--blue-dark);
	border-radius: 2px;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.nav__hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
	opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
	position: fixed;
	top: var(--nav-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 14, 28, 0.97);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	z-index: 190;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2.25rem;
	transform: translateX(100%);
	transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 2rem;
}
.nav__mobile.open {
	transform: translateX(0);
}
.nav__mobile a {
	font-family: var(--ff-head);
	font-size: 1.5rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s;
	letter-spacing: -0.01em;
}
.nav__mobile a:hover {
	color: var(--amber);
}
.nav__mobile .nav__cta {
	margin-top: 0.5rem;
	font-size: 1.3rem !important;
	padding: 12px 36px !important;
	border-radius: 10px !important;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
	background: var(--amber);
	color: var(--blue-dark);
	padding: 14px 26px;
	font-family: var(--ff-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-radius: 10px;
	display: inline-block;
	transition:
		background 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 20px var(--amber-glow);
	border: none;
	cursor: pointer;
}
.btn-primary:hover {
	background: var(--amber-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(251, 182, 12, 0.4);
}
.btn-dark {
	background: var(--white);
	color: var(--blue-dark);
	padding: 14px 32px;
	font-family: var(--ff-head);
	font-size: 14px;
	font-weight: 700;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition:
		background 0.2s,
		transform 0.2s,
		color 0.2s;
	border: none;
	cursor: pointer;
}
.btn-dark:hover {
	background: var(--blue-mid);
	color: var(--white);
	transform: translateY(-2px);
}
.btn-dark--outline {
	background: transparent;
	border: 2px solid var(--blue-dark);
}
.btn-dark--outline:hover {
	background: var(--blue-dark);
	color: var(--white);
}

/* ═══ PAGE HERO ═══ */
.page-hero {
	min-height: 70svh;
	background: linear-gradient(
		135deg,
		var(--off-white) 0%,
		var(--light-gray) 100%
	);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: calc(var(--nav-h) + 4rem) var(--gutter) 6rem;
}
.page-hero::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	top: -150px;
	right: -100px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(251, 182, 12, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.page-hero::after {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: -100px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(0, 90, 155, 0.06) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.page-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
}
.page-hero__inner h1 {
	font-family: var(--ff-head);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--white);
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.page-hero__inner h1 em {
	font-style: italic;
	color: var(--amber);
	position: relative;
}
.page-hero__inner p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.8;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}
.page-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}
.page-hero__scroll span {
	display: block;
	width: 4px;
	height: 8px;
	background: var(--amber);
	border-radius: 2px;
	animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(8px);
		opacity: 0.4;
	}
}

/* ═══ ORIGIN ═══ */
.origin {
	background: var(--white);
	padding: 7rem 0;
}
.origin__content--full {
	max-width: 100%s;
	margin: 0 auto;
}
.origin__content h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.9rem, 2.8vw, 2.6rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--blue-dark);
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}
.origin__content h2 em {
	font-style: italic;
	color: var(--amber);
}
.origin__content p {
	color: var(--blue-dark);
	font-size: 0.975rem;
	line-height: 1.9;
	margin-bottom: 1rem;
}
.origin__content p strong {
	color: var(--blue-dark);
	font-weight: 700;
}
.origin__content p em {
	font-style: italic;
	color: var(--blue);
}

/* ═══ VALUES ═══ */
.values {
	background: linear-gradient(180deg, #003260 0%, #001a32 100%);
	padding: 7rem 0;
}
.values__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 4rem;
}
.values__header h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.9rem, 2.8vw, 2.6rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}
.values__header h2 em {
	font-style: italic;
	color: var(--amber);
}
.values__header p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 1rem;
	line-height: 1.8;
}
.values__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}
.value-card {
	background: rgba(0, 40, 80, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 100%;
	transition:
		transform 0.3s var(--ease-out),
		box-shadow 0.3s,
		background 0.3s;
	position: relative;
	overflow: hidden;
}
.value-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease-out);
}
.value-card:hover {
	transform: translateY(-6px);
	background: rgba(0, 60, 110, 0.7);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.value-card:hover::before {
	transform: scaleX(1);
}
.value-card__icon {
	width: 52px;
	height: 52px;
	background: rgba(251, 182, 12, 0.12);
	border: 1px solid rgba(251, 182, 12, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition:
		background 0.3s,
		transform 0.3s var(--ease-spring);
}
.value-card:hover .value-card__icon {
	background: rgba(251, 182, 12, 0.2);
	transform: scale(1.08) rotate(-3deg);
}
.value-card__icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--amber);
	fill: none;
	stroke-width: 1.8;
}
.value-card h3 {
	font-family: var(--ff-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.85rem;
	line-height: 1.25;
}
.value-card p {
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.8;
}

/* ═══ OPERATIONS ═══ */
.operations {
	background: var(--off-white);
	padding: 7rem 0;
}
.operations__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 5rem;
	align-items: center;
}
.operations__content h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.9rem, 2.8vw, 2.6rem);
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}
.operations__content h2 em {
	font-style: italic;
	color: var(--amber);
}
.operations__content p {
	color: var(--blue-dark);
	line-height: 1.9;
	margin-bottom: 1.25rem;
	font-size: 0.975rem;
}
.operations__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}
.op-stat__num {
	font-family: var(--ff-head);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1;
}
.op-stat__num sup {
	font-size: 0.9rem;
	color: var(--amber);
	vertical-align: super;
}
.op-stat__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mid-gray);
	margin-top: 6px;
}
.operations__visual {
	position: relative;
}
.operations__img-wrap {
	overflow: hidden;
	border-radius: 16px;
}
.operations__img-wrap img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(0, 90, 155, 0.1);
	transition: transform 0.5s var(--ease-out);
	display: block;
}
.operations__visual:hover .operations__img-wrap img {
	transform: scale(1.03);
}
.operations__float-card {
	position: absolute;
	bottom: 2rem;
	left: -1.5rem;
	background: var(--white);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}
.operations__float-icon {
	width: 40px;
	height: 40px;
	background: var(--blue);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.operations__float-icon svg {
	width: 20px;
	height: 20px;
	stroke: white;
	fill: none;
	stroke-width: 1.8;
}
.operations__float-card strong {
	display: block;
	font-family: var(--ff-head);
	font-weight: 800;
	font-size: 16px;
	color: var(--blue-dark);
	line-height: 1;
}
.operations__float-card span {
	font-size: 11px;
	color: var(--mid-gray);
	font-weight: 500;
}

/* ═══ MANAGEMENT ═══ */
.management {
	background: var(--white);
	padding: 7rem 0;
}
.management__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 4rem;
}
.management__header h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.9rem, 2.8vw, 2.6rem);
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1.15;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}
.management__header h2 em {
	font-style: italic;
	color: var(--amber);
}
.management__header p {
	color: var(--blue-dark);
	font-size: 1rem;
	line-height: 1.8;
}
.management__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.mgmt-card {
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2.5rem;
	transition:
		transform 0.3s var(--ease-out),
		box-shadow 0.3s,
		border-color 0.3s;
	position: relative;
	overflow: hidden;
}
.mgmt-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--amber));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease-out);
}
.mgmt-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 90, 155, 0.12);
	border-color: rgba(0, 90, 155, 0.2);
}
.mgmt-card:hover::after {
	transform: scaleX(1);
}
.mgmt-card__icon {
	width: 56px;
	height: 56px;
	background: rgba(0, 90, 155, 0.08);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition:
		background 0.3s,
		transform 0.3s var(--ease-spring);
}
.mgmt-card:hover .mgmt-card__icon {
	background: rgba(0, 90, 155, 0.14);
	transform: scale(1.1) rotate(-5deg);
}
.mgmt-card__icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 1.8;
}
.mgmt-card h3 {
	font-family: var(--ff-head);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--blue-dark);
	margin-bottom: 0.75rem;
}
.mgmt-card p {
	font-size: 0.9rem;
	color: var(--blue-dark);
	line-height: 1.8;
}

/* ═══ TECHNOLOGY ═══ */
.technology {
	background: linear-gradient(180deg, #001a32 0%, #003260 100%);
	padding: 7rem 0;
}
.technology__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.technology__visual {
	position: relative;
}
.technology__img-wrap {
	overflow: hidden;
	border-radius: 16px;
}
.technology__img-wrap img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
	transition: transform 0.5s var(--ease-out);
	display: block;
}
.technology__visual:hover .technology__img-wrap img {
	transform: scale(1.03);
}
.technology__badge {
	position: absolute;
	top: -1rem;
	right: -1rem;
	background: var(--amber);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	text-align: center;
	box-shadow: 0 8px 28px rgba(251, 182, 12, 0.35);
}
.technology__badge-num {
	font-family: var(--ff-head);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1;
}
.technology__badge-label {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(0, 40, 80, 0.6);
	margin-top: 3px;
}
.technology__content h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.9rem, 2.8vw, 2.6rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}
.technology__content h2 em {
	font-style: italic;
	color: var(--amber);
}
.technology__content p {
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.9;
	margin-bottom: 1.25rem;
	font-size: 0.975rem;
}
.technology__list {
	list-style: none;
	margin-top: 1.5rem;
}
.technology__list li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}
.technology__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 8px;
	height: 8px;
	background: var(--amber);
	border-radius: 50%;
}

/* ═══ COMMITMENT ═══ */
.commitment {
	background: var(--white);
	padding: 7rem 0;
}
.commitment__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.commitment__inner h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.9rem, 2.8vw, 2.6rem);
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}
.commitment__inner h2 em {
	font-style: italic;
	color: var(--amber);
}
.commitment__inner p {
	color: var(--blue-dark);
	line-height: 1.9;
	margin-bottom: 1.25rem;
	font-size: 1rem;
}
.commitment__inner .btn-primary {
	margin-top: 1rem;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
	background: var(--amber);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}
.cta-section::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.12) 0%,
		transparent 70%
	);
	top: -150px;
	right: -100px;
	pointer-events: none;
}
.cta-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.cta-section__left h2 {
	font-family: var(--ff-head);
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 800;
	color: var(--blue-dark);
	line-height: 1.1;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}
.cta-section__left h2 em {
	font-style: italic;
	color: var(--blue-dark);
}
.cta-section__left p {
	color: var(--blue-dark);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}
.cta-section__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	width: 100%;
	max-width: 340px;
}
.cta-section__actions .btn-dark {
	width: 100%;
	justify-content: center;
}

/* ═══ FOOTER ═══ */
.footer {
	background: var(--white);
	padding: 5rem 0 2rem;
	border-top: 1px solid var(--border);
}
.footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid var(--border);
}
.footer__brand-desc {
	font-size: 0.9rem;
	font-family: var(--ff-body);
	color: var(--blue-dark);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
.footer__social {
	display: flex;
	gap: 0.75rem;
}
.footer__social a {
	width: 38px;
	height: 38px;
	border: 1px solid var(--border);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		border-color 0.2s,
		background 0.2s,
		transform 0.2s;
}
.footer__social a:hover {
	border-color: var(--amber);
	background: var(--blue-dark);
	transform: translateY(-2px);
}
.footer__social a:hover svg {
	fill: var(--white);
}
.footer__social svg {
	width: 16px;
	height: 16px;
	fill: var(--blue-dark);
	transition: fill 0.2s;
}
.footer__col-title {
	font-family: var(--ff-body);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue-dark);
	margin-bottom: 1.25rem;
}
.footer__links li + li {
	margin-top: 0.2rem;
}
.footer__links a {
	font-size: 14px;
	color: var(--blue-dark);
	transition: color 0.2s;
	font-weight: 400;
	line-height: 1.5;
}
.footer__links a:hover {
	color: var(--amber);
}
.footer__contact-item {
	display: flex;
	gap: 10px;
	margin-bottom: 0.85rem;
	align-items: flex-start;
}
.footer__contact-icon {
	color: var(--blue-dark);
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 2px;
}
.footer__contact-text {
	font-size: 12.5px;
	color: var(--blue-dark);
	line-height: 1.65;
}
.footer__contact-text a {
	color: var(--blue-dark);
	transition: color 0.2s;
}
.footer__contact-text a:hover {
	color: var(--amber);
}
.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 2rem;
}
.footer__copy {
	font-size: 12px;
	color: var(--blue-dark);
	font-family: var(--ff-body);
}
.footer__legal {
	display: flex;
	gap: 1.5rem;
}
.footer__legal a {
	font-size: 12px;
	color: var(--blue-dark);
	font-family: var(--ff-body);
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: color 0.2s;
}
.footer__legal a:hover {
	color: var(--dark-gray);
	text-decoration: underline;
}

/* ── Scroll to top ── */
#scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	background: var(--blue-dark);
	color: white;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.3s,
		transform 0.3s,
		background 0.2s;
	z-index: 150;
	box-shadow: 0 6px 20px rgba(0, 90, 155, 0.4);
}
#scroll-top.visible {
	opacity: 1;
	transform: translateY(0);
}
#scroll-top:hover {
	background: var(--blue-mid);
}
#scroll-top svg {
	width: 20px;
	height: 20px;
	stroke: white;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
	.nav__links {
		display: none !important;
	}
	.nav__hamburger {
		display: flex !important;
	}
	.origin__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.origin__badge {
		bottom: auto;
		top: -1rem;
		right: 1rem;
	}
	.values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.operations__grid {
		grid-template-columns: 1fr;
	}
	.operations__float-card {
		left: 1rem;
	}
	.technology__grid {
		grid-template-columns: 1fr;
	}
	.technology__badge {
		right: 1rem;
	}
	.management__cards {
		grid-template-columns: 1fr 1fr;
	}
	.footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.page-hero {
		min-height: 60svh;
		padding-top: calc(var(--nav-h) + 3rem);
	}
	.values__grid {
		grid-template-columns: 1fr;
	}
	.management__cards {
		grid-template-columns: 1fr;
	}
	.operations__stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.footer__top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.cta-section__actions {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.nav__logo-badge {
		width: 36px;
		height: 36px;
		font-size: 11px;
	}
	.nav__logo-text strong {
		font-size: 15px;
	}
	.origin__badge {
		padding: 1rem 1.25rem;
	}
	.origin__badge-num {
		font-size: 1.8rem;
	}
	.operations__float-card {
		left: 0.5rem;
		bottom: 1rem;
		padding: 0.75rem 1rem;
	}
	.technology__badge {
		padding: 0.75rem 1rem;
	}
	.technology__badge-num {
		font-size: 1.3rem;
	}
}
