/*
Theme Name: Transpakas
Theme URI: https://transpakas.lt
Author: UAB Transpakas
Description: Refined logistics theme for UAB Transpakas — part of the 2B Group, Kaunas & Klaipėda.
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.0
Version: 27.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: transpakas
*/

/* =====================================================================
   DESIGN TOKENS — deep navy + one flat, confident orange accent (the
   company's own original brand colours). Deliberately no gradients,
   no glassmorphism/blur, no glow effects — those read as generic
   AI-template decoration rather than a real brand identity.
   ===================================================================== */
:root {
	/* Ink — deep midnight navy */
	--ink:    #0B0E3D;
	--ink-2:  #171B55;
	--ink-3:  #262B70;

	/* Accent — flat blue, used deliberately (not everywhere). Two roles:
	   --accent for backgrounds/large text/icons, --accent-lt for small
	   text and icons on dark ink — blue's luminance math means one
	   shade can't cover both roles at AA contrast (unlike the orange
	   this replaced), so this is a real second token, not decoration. */
	--accent:    #2B6CE0;
	--accent-dk: #1D4FB8;
	--accent-lt: #6C9BFF;

	/* Gray */
	--gray:   #6B6B72;
	--gray-2: #C4C4C9;

	/* Paper */
	--paper:   #FFFFFF;
	--paper-2: #F6F6F9;
	--paper-3: #EDEDF2;

	/* Text */
	--tx:    #0B0E3D;
	--tx-2:  #4A4A57;
	--tx-3:  #6B6B72;

	/* Text on ink */
	--txw:   #FFFFFF;
	--txw-2: rgba(255,255,255,0.60);
	--txw-3: rgba(255,255,255,0.36);

	/* Lines */
	--line:    rgba(11,14,61,0.11);
	--line-2:  rgba(11,14,61,0.06);
	--line-w:  rgba(255,255,255,0.14);
	--line-w2: rgba(255,255,255,0.07);

	/* Layout */
	--nav-h:  72px;
	--sec:    clamp(4.5rem, 9vw, 8rem);
	--px:     clamp(1.25rem, 5vw, 4rem);
	--mxw:    1280px;

	/* Radii — restrained and architectural, not "app-bubbly" */
	--r:    12px;
	--r-lg: 16px;
	--r-sm: 8px;

	/* Shadows — ink-tinted; one modest accent-tinted shadow for the
	   primary button only, never a diffuse "glow" */
	--sh-1: 0 1px 2px rgba(11,14,61,0.05), 0 6px 18px rgba(11,14,61,0.07);
	--sh-2: 0 5px 14px rgba(11,14,61,0.08), 0 16px 34px rgba(11,14,61,0.11);
	--sh-3: 0 8px 20px rgba(11,14,61,0.12), 0 26px 54px rgba(11,14,61,0.16);
	--sh-accent: 0 6px 16px rgba(43,108,224,0.32);

	--hero-paper:   var(--paper);
	--hero-paper-2: var(--paper-2);
	--hero-ink:     var(--ink);
	--hero-ink-60:  var(--tx-2);
	--hero-accent:  var(--accent);
	--hero-line:    var(--line);
	--hero-line-2:  var(--line-2);
}

/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	background: var(--paper);
	color: var(--tx);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	line-height: 1.65;
	font-size: 1rem;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--accent); color: #fff; }
h1, h2, h3, h4, h5, h6 {
	font-family: 'Archivo', 'Inter', system-ui, sans-serif;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--tx);
	text-wrap: balance;
}
table { border-collapse: collapse; }

/* =====================================================================
   WORDPRESS / FSE FIXES
   ===================================================================== */
.admin-bar header.wp-block-template-part { top: 32px; }
@media (max-width: 782px) { .admin-bar header.wp-block-template-part { top: 46px; } }
.wp-site-blocks { padding-top: 0 !important; padding-bottom: 0 !important; }
.wp-site-blocks > * { margin-block: 0 !important; }
.wp-block-shortcode { display: block; }
header.wp-block-template-part .wp-block-group { background-color: transparent !important; }
footer.wp-block-template-part .wp-block-group { background-color: transparent !important; }

/* =====================================================================
   LAYOUT
   ===================================================================== */
.tp-inner {
	width: 100%;
	max-width: calc(var(--mxw) + 2 * var(--px));
	margin-inline: auto;
	padding-inline: var(--px);
}

/* =====================================================================
   MOTION-LINE MOTIF — the recurring signature device
   ===================================================================== */
.tp-lines {
	display: inline-flex; flex-direction: column; gap: 3px;
	width: 22px; flex-shrink: 0;
}
.tp-lines span { display: block; height: 2px; background: currentColor; border-radius: 1px; }
.tp-lines span:nth-child(1) { width: 100%; }
.tp-lines span:nth-child(2) { width: 68%; }
.tp-lines span:nth-child(3) { width: 40%; }
.tp-lines--w { color: #fff; }

.tp-eyebrow {
	display: inline-flex; align-items: center; gap: 0.65rem;
	font-size: 0.72rem; font-weight: 600;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 1.1rem;
}
.tp-eyebrow .tp-lines { color: var(--ink); }

.tp-heading {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	letter-spacing: -0.02em;
	color: var(--tx);
	margin-bottom: 0.55em;
}
.tp-subheading {
	font-size: clamp(0.94rem, 1.4vw, 1.05rem);
	color: var(--tx-2);
	line-height: 1.75;
	max-width: 56ch;
}

/* =====================================================================
   BUTTON SYSTEM — flat colour, no gradients
   ===================================================================== */
.tp-btn {
	display: inline-flex; align-items: center; gap: 0.65rem;
	padding: 0.9rem 1.85rem;
	border-radius: var(--r-sm);
	font-weight: 600; font-size: 0.88rem;
	letter-spacing: -0.005em;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s, transform 0.18s, border-color 0.2s, box-shadow 0.2s;
	white-space: nowrap;
	border: 1.5px solid transparent; cursor: pointer; line-height: 1;
}
.tp-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.tp-btn--navy {
	background: var(--ink); color: #fff !important;
	box-shadow: var(--sh-1);
}
.tp-btn--navy:hover { background: var(--ink-2); box-shadow: var(--sh-2); transform: translateY(-2px); }

.tp-btn--orange,
.tp-btn--signal {
	background: var(--accent); color: #fff !important;
	box-shadow: var(--sh-accent);
}
.tp-btn--orange:hover,
.tp-btn--signal:hover { background: var(--accent-dk); box-shadow: var(--sh-2); transform: translateY(-2px); }

.tp-btn--outline {
	background: transparent; color: var(--tx) !important;
	border: 1.5px solid var(--line);
}
.tp-btn--outline:hover { border-color: var(--ink); background: var(--paper-2); }

.tp-btn--ghost {
	background: transparent; color: #fff !important;
	border: 1.5px solid var(--line-w);
}
.tp-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.tp-btn--white {
	background: #fff; color: var(--ink) !important;
	box-shadow: var(--sh-2);
}
.tp-btn--white:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }

/* =====================================================================
   HEADER
   ===================================================================== */
header.wp-block-template-part {
	position: sticky; top: 0; inset-inline: 0;
	z-index: 900; height: var(--nav-h);
	background: var(--hero-paper);
	border-bottom: 1px solid var(--hero-line);
	transition: box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1),
		background 0.35s ease, border-color 0.35s ease;
}
header.wp-block-template-part.is-hidden { transform: translateY(-100%); }
header.wp-block-template-part.is-scrolled { box-shadow: var(--sh-1); }

/* Front page only: header overlays the hero photo instead of sitting
   in a separate white bar above it — transparent until the visitor
   scrolls past the hero, then it solidifies like everywhere else. */
header.wp-block-template-part.tp-header--transparent {
	position: fixed;
	background: linear-gradient(180deg, rgba(6,8,33,0.6) 0%, rgba(6,8,33,0.32) 70%, transparent 100%);
	border-bottom-color: transparent;
}
.tp-header--transparent .tp-logo-name,
.tp-header--transparent .tp-logo-tagline,
.tp-header--transparent .tp-nav a,
.tp-header--transparent .tp-phone-link,
.tp-header--transparent .tp-phone-link svg { color: #fff; }
.tp-header--transparent .tp-nav a:hover,
.tp-header--transparent .tp-nav a.is-active,
.tp-header--transparent .tp-phone-link:hover,
.tp-header--transparent .tp-phone-link:hover svg { color: var(--accent-lt); }
.tp-header--transparent .tp-header-btn { background: var(--accent); }
.tp-header--transparent .tp-header-btn:hover { background: var(--accent-dk); }
.tp-header--transparent .tp-menu-btn span,
.tp-header--transparent .tp-menu-btn span::before,
.tp-header--transparent .tp-menu-btn span::after { background: #fff; }
header.wp-block-template-part.tp-header--transparent.is-scrolled {
	position: fixed;
	background: var(--hero-paper);
	border-bottom-color: var(--hero-line);
	box-shadow: var(--sh-1);
}
.tp-header--transparent.is-scrolled .tp-logo-name,
.tp-header--transparent.is-scrolled .tp-logo-tagline,
.tp-header--transparent.is-scrolled .tp-nav a,
.tp-header--transparent.is-scrolled .tp-phone-link,
.tp-header--transparent.is-scrolled .tp-phone-link svg { color: var(--hero-ink); }
.tp-header--transparent.is-scrolled .tp-phone-link { color: var(--hero-ink-60); }
.tp-header--transparent.is-scrolled .tp-header-btn { background: var(--hero-ink); }
.tp-header--transparent.is-scrolled .tp-menu-btn span,
.tp-header--transparent.is-scrolled .tp-menu-btn span::before,
.tp-header--transparent.is-scrolled .tp-menu-btn span::after { background: var(--hero-ink); }

.tp-header-inner {
	height: var(--nav-h);
	display: flex; align-items: center; justify-content: space-between;
	padding-inline: var(--px);
	max-width: calc(var(--mxw) + 2 * var(--px));
	margin-inline: auto;
	gap: 2rem;
}

.tp-logo {
	display: inline-flex; align-items: center; gap: 0.7rem;
	flex-shrink: 0; position: relative;
}
.tp-logo-mark { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; display: block; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.tp-logo:hover .tp-logo-mark { transform: rotate(-6deg) scale(1.05); }
.tp-logo-chip {
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0; width: 42px; height: 42px;
	background: #fff; border-radius: var(--r-sm);
	padding: 5px;
}
.tp-logo-chip .tp-logo-mark { width: 30px; height: 30px; }
.tp-logo-text { display: flex; flex-direction: column; line-height: 1; position: relative; }
.tp-logo-name {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.15rem; font-weight: 800;
	color: var(--hero-ink); letter-spacing: 0.01em;
	transition: color 0.2s;
}
.tp-logo::after {
	content: "";
	position: absolute; left: 0; bottom: -4px;
	width: 0; height: 2px; background: var(--hero-accent);
	transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.tp-logo:hover::after { width: 100%; }
.tp-logo-tagline {
	font-size: 0.62rem; font-weight: 600;
	color: var(--hero-ink-60); letter-spacing: 0.2em;
	text-transform: uppercase; margin-top: 4px;
}

.tp-nav {
	display: flex; align-items: center;
	list-style: none; flex: 1; justify-content: center; gap: 0.25rem;
}
.tp-nav a {
	display: inline-flex; align-items: center;
	padding: 0.5em 1.1em;
	font-size: 0.875rem; font-weight: 500;
	color: var(--hero-ink); transition: color 0.2s;
	position: relative;
}
.tp-nav a:hover,
.tp-nav a.is-active { color: var(--hero-accent); }

.tp-header-right { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }

.tp-lang-switcher {
	display: flex; align-items: center; gap: 2px;
	list-style: none; padding: 2px; margin: 0;
	border: 1px solid var(--line); border-radius: var(--r-sm);
}
.tp-lang-link {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 30px; padding: 4px 6px;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
	color: var(--hero-ink-60); border-radius: calc(var(--r-sm) - 2px);
	transition: background 0.18s, color 0.18s;
}
.tp-lang-link:hover { color: var(--hero-ink); background: var(--hero-paper-2); }
.tp-lang-link.is-active { color: #fff !important; background: var(--hero-ink); }
.tp-header--transparent .tp-lang-switcher { border-color: rgba(255,255,255,0.35); }
.tp-header--transparent .tp-lang-link { color: rgba(255,255,255,0.75); }
.tp-header--transparent .tp-lang-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.tp-header--transparent.is-scrolled .tp-lang-switcher { border-color: var(--line); }
.tp-header--transparent.is-scrolled .tp-lang-link { color: var(--hero-ink-60); }
.tp-header--transparent.is-scrolled .tp-lang-link:hover { color: var(--hero-ink); background: var(--hero-paper-2); }

.tp-lang-switcher--mobile { margin-top: 1.5rem; align-self: flex-start; }

@media (max-width: 1080px) { .tp-lang-switcher:not(.tp-lang-switcher--mobile) { display: none; } }

.tp-phone-link {
	display: inline-flex; align-items: center; gap: 0.45rem;
	font-size: 0.85rem; font-weight: 600; color: var(--hero-ink-60);
	transition: color 0.2s;
}
.tp-phone-link svg { width: 14px; height: 14px; color: var(--hero-ink-60); }
.tp-phone-link:hover { color: var(--hero-accent); }
.tp-phone-link:hover svg { color: var(--hero-accent); }

.tp-header-btn {
	background: var(--hero-ink); color: #fff !important;
	padding: 12px 24px;
	border-radius: var(--r-sm);
	font-size: 0.82rem; font-weight: 600;
	transition: background 0.2s;
	white-space: nowrap;
}
.tp-header-btn:hover { background: var(--hero-accent); color: #fff !important; }

.tp-menu-btn {
	display: none;
	background: none; border: none; cursor: pointer;
	width: 40px; height: 40px;
	align-items: center; justify-content: center;
	border-radius: var(--r-sm); padding: 0;
	transition: background 0.2s;
}
.tp-menu-btn:hover { background: var(--hero-paper-2); }
.tp-menu-btn span,
.tp-menu-btn span::before,
.tp-menu-btn span::after {
	display: block; width: 22px; height: 2px;
	background: var(--hero-ink); border-radius: 2px;
	transition: transform 0.26s ease, opacity 0.2s; position: relative;
}
.tp-menu-btn span::before { content: ""; position: absolute; top: -7px; }
.tp-menu-btn span::after  { content: ""; position: absolute; top:  7px; }
.tp-menu-btn[aria-expanded="true"] span         { background: transparent; }
.tp-menu-btn[aria-expanded="true"] span::before { transform: rotate(45deg) translate(5px,5px); }
.tp-menu-btn[aria-expanded="true"] span::after  { transform: rotate(-45deg) translate(5px,-5px); }

.tp-mobile-nav {
	display: none; position: fixed; inset: 0;
	z-index: 800;
	background: rgba(11,14,61,0.45);
	opacity: 0; transition: opacity 0.28s ease;
}
.tp-mobile-nav.is-open { opacity: 1; }
.tp-mobile-nav.is-open .tp-mobile-panel { transform: translateX(0); }
.tp-mobile-nav[hidden] { display: none !important; }

.tp-mobile-panel {
	position: absolute; inset-block: 0; right: 0;
	width: min(360px, 92vw);
	background: #fff; box-shadow: var(--sh-3);
	padding: calc(var(--nav-h) + 1.5rem) 2rem 2.5rem;
	transform: translateX(100%);
	transition: transform 0.36s cubic-bezier(0.16,1,0.3,1);
	overflow-y: auto; display: flex; flex-direction: column;
}
.tp-mobile-logo {
	display: flex; align-items: center; gap: 0.75rem;
	padding-bottom: 1.5rem; margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}
.tp-mobile-logo .tp-logo-name { font-size: 1.05rem; }
.tp-mobile-links { list-style: none; display: flex; flex-direction: column; gap: 0.1rem; flex: 1; }
.tp-mobile-links a {
	display: block; padding: 0.9rem 0;
	font-size: 1.08rem; font-weight: 600; color: var(--tx);
	border-bottom: 1px solid var(--line);
	transition: color 0.18s, padding-left 0.22s;
}
.tp-mobile-links a:hover { color: var(--accent-dk); padding-left: 0.5rem; }
.tp-mobile-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tp-mobile-cta .tp-btn { justify-content: center; }

@media (max-width: 1080px) { .tp-phone-link { display: none; } }
@media (max-width: 820px) {
	.tp-nav { display: none; }
	.tp-menu-btn { display: flex; }
	.tp-mobile-nav { display: block; }
}
@media (max-width: 520px) { .tp-header-btn { display: none; } }

/* =====================================================================
   SKIP LINK
   ===================================================================== */
.tp-skip {
	position: fixed; top: -100px; left: 1rem;
	background: var(--ink); color: #fff;
	padding: 0.6rem 1.2rem;
	border-radius: var(--r-sm); font-weight: 700;
	z-index: 9999; transition: top 0.2s;
	font-size: 0.875rem;
}
.tp-skip:focus { top: 1rem; }

/* =====================================================================
   SCROLL PROGRESS BAR
   ===================================================================== */
.tp-progress {
	position: fixed; top: 0; left: 0; right: 0;
	height: 2px; z-index: 1000;
	transform-origin: left;
	background: var(--accent);
	transform: scaleX(0);
	will-change: transform;
}

/* =====================================================================
   HERO — split layout: solid ink panel for the headline (guaranteed
   contrast, no text-over-photo compromise) + a contained photo panel
   with a continuous slow Ken Burns zoom, instead of the photo running
   full-bleed behind the text. Stats live in their own full-width band
   right after ([tp_numbers]), not stacked on top of the photo.
   ===================================================================== */
.tp-hero {
	position: relative;
	min-height: calc(96svh - var(--nav-h));
	background: var(--ink);
	overflow: hidden;
	display: flex; flex-direction: column;
}

.tp-hero-photo {
	position: absolute; inset: 0; z-index: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: 68% 45%;
}

.tp-hero-scrim {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(11,14,61,0.55) 0%, rgba(11,14,61,0.62) 45%, rgba(11,14,61,0.8) 100%);
}

/* 2B Group mark — blended into the photo's own tones and texture
   (mix-blend-mode) rather than sitting on top as a flat opaque
   cut-out, placed in the clean roof area top-right so it never
   fights the headline or the busiest part of the photo. */
.tp-hero-group-mark {
	position: absolute; z-index: 3;
	bottom: clamp(60px, 10vh, 110px); left: clamp(70px, 12vw, 220px);
	width: clamp(110px, 13vw, 240px); height: auto;
	filter: brightness(0) invert(1);
	mix-blend-mode: overlay;
	opacity: 0.85;
	pointer-events: none;
}
/* Below ~700px the hero stack (eyebrow/headline/sub/CTAs) already
   fills the available height, so this decorative mark has nowhere
   left to sit without landing on top of the CTA row — hide it rather
   than let it collide. */
@media (max-width: 700px) {
	.tp-hero-group-mark { display: none; }
}

.tp-hero-center {
	position: relative; z-index: 5;
	flex: 1;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center;
	max-width: 900px;
	margin-inline: auto;
	/* Reserve room at the bottom for the 2B Group mark so it never
	   sits on top of the CTA row, at any viewport height. */
	padding: clamp(2.75rem, 6vh, 4.5rem) clamp(24px, 6vw, 60px) clamp(4.5rem, 14vh, 7.5rem);
}

@keyframes tp-rise {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
.tp-signal-eyebrow, .tp-h1-line, .tp-signal-sub, .tp-signal-actions {
	animation: tp-rise 0.5s ease-out both;
}
.tp-signal-eyebrow       { animation-delay: 0ms; }
.tp-h1-line:nth-child(1) { animation-delay: 60ms; }
.tp-h1-line:nth-child(2) { animation-delay: 110ms; }
.tp-h1-line:nth-child(3) { animation-delay: 160ms; }
.tp-signal-sub           { animation-delay: 220ms; }
.tp-signal-actions       { animation-delay: 280ms; }
@media (prefers-reduced-motion: reduce) {
	.tp-signal-eyebrow, .tp-h1-line, .tp-signal-sub, .tp-signal-actions { animation: none; }
}

.tp-signal-eyebrow {
	font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--txw-2);
	margin-bottom: clamp(0.9rem, 3vh, 1.5rem);
}

.tp-signal-h1 {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(2.1rem, 4.4vw, 3.9rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.tp-h1-line { display: block; }

.tp-signal-sub {
	margin-top: clamp(0.9rem, 2.5vh, 1.4rem);
	font-size: clamp(0.98rem, 1.1vw, 1.125rem);
	color: var(--txw-2); line-height: 1.65;
	max-width: 42ch;
	margin-inline: auto;
}

.tp-signal-actions {
	display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
	margin-top: clamp(1.4rem, 3vh, 2rem);
}

.tp-btn--hero-primary {
	display: inline-flex; align-items: center; gap: 0.6rem;
	height: 52px; padding-inline: 28px; border-radius: var(--r-sm);
	background: var(--accent); color: #fff !important;
	font-weight: 700; font-size: 0.95rem;
	box-shadow: var(--sh-accent);
	transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.tp-btn--hero-primary svg { width: 16px; height: 16px; transition: transform 0.2s; }
.tp-btn--hero-primary:hover { background: var(--accent-dk); box-shadow: var(--sh-3); transform: translateY(-2px); }
.tp-btn--hero-primary:hover svg { transform: translateX(4px); }

.tp-btn--hero-ghost {
	display: inline-flex; align-items: center;
	height: 52px; padding-inline: 26px; border-radius: var(--r-sm);
	color: #fff !important;
	font-weight: 600; font-size: 0.95rem; background: transparent;
	border: 1px solid rgba(255,255,255,0.4);
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.tp-btn--hero-ghost:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); }

@media (max-width: 700px) {
	.tp-hero { min-height: 0; }
}
@media (max-width: 640px) {
	.tp-signal-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
	.tp-btn--hero-primary, .tp-btn--hero-ghost { justify-content: center; }
	.tp-signal-h1 { font-size: 2.1rem; }
}

/* =====================================================================
   NETWORK — hub-and-spoke card grid. The hub is a solid flat accent
   block (clear visual hierarchy), not a glow or animated effect.
   ===================================================================== */
.tp-network { padding-block: var(--sec); background: var(--ink); position: relative; overflow: hidden; }
.tp-network-head .tp-eyebrow { color: var(--txw-2); }
.tp-network-head .tp-eyebrow .tp-lines { color: var(--accent-lt); }
.tp-network-head .tp-heading { color: #fff; }
.tp-network-head .tp-subheading { color: var(--txw-2); }
.tp-network-head { max-width: 560px; margin-bottom: 3rem; }
.tp-network-head .tp-heading { margin-bottom: 0.9rem; }

/* Horizontal route line — a real transit-map metaphor instead of a
   bordered data-table grid. Dots sit exactly on the connecting line;
   the hub stop is larger and solid-accent, everything else is plain
   ink so the eye reads it as one continuous route. */
.tp-route {
	position: relative;
	display: flex; justify-content: space-between; gap: 0.5rem;
	margin-top: 2.75rem;
}
.tp-route-line {
	position: absolute; top: 7px; left: 7px; right: 7px;
	height: 2px; background: var(--line-w2); z-index: 0;
}
.tp-route-stop {
	position: relative; z-index: 1;
	display: flex; flex-direction: column; align-items: center; text-align: center;
	flex: 1; min-width: 0; padding: 0 0.5rem;
}
.tp-route-dot {
	display: block; width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
	background: var(--ink); border: 2px solid var(--txw-3);
	margin-bottom: 1.5rem;
}
.tp-route-stop--hub .tp-route-dot { background: var(--accent-lt); border-color: var(--accent-lt); }
.tp-route-index {
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
	color: var(--accent-lt); margin-bottom: 0.6rem;
}
.tp-route-stop--hub .tp-route-index { font-weight: 700; }
.tp-route-city {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.4rem; font-weight: 700; color: #fff;
	letter-spacing: -0.02em; line-height: 1.15;
}
.tp-route-stop--hub .tp-route-city { color: var(--accent-lt); font-size: 1.75rem; }
.tp-route-sub {
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.66rem; color: var(--txw-3);
	font-weight: 500; letter-spacing: 0.03em; margin-top: 0.5rem;
}

@media (max-width: 760px) {
	.tp-route { flex-direction: column; align-items: stretch; gap: 2rem; margin-top: 1rem; }
	.tp-route-line { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; }
	.tp-route-stop { flex-direction: row; align-items: center; text-align: left; gap: 1.1rem; padding: 0; }
	.tp-route-dot { margin-bottom: 0; }
}

.tp-net-countries {
	display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
	margin-top: 2.5rem;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--txw-3);
}
.tp-net-country-list { display: flex; align-items: center; gap: 0.6rem; }
.tp-net-country-list strong { color: var(--txw-2); font-weight: 600; letter-spacing: 0.04em; }
.tp-net-country-sep { color: var(--txw-3); }

/* =====================================================================
   NUMBERS STRIP
   ===================================================================== */
.tp-numbers {
	background: var(--ink); padding-block: clamp(3.25rem, 6vw, 4.5rem);
	position: relative; overflow: hidden;
}

.tp-numbers-grid {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: repeat(4,1fr);
	gap: 1px;
	background: var(--line-w2);
	border-radius: var(--r);
	overflow: hidden;
	border-top: 2px solid var(--accent);
}

.tp-num-cell {
	padding: 2.4rem 1.75rem;
	background: var(--ink);
	position: relative; z-index: 1;
	transition: background 0.22s;
}
.tp-num-cell:hover { background: rgba(255,255,255,0.045); }

.tp-num-index {
	display: block;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
	color: var(--accent-lt); margin-bottom: 1.1rem;
}

.tp-num-val {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(2.6rem, 5vw, 3.75rem);
	font-weight: 700; color: #fff;
	letter-spacing: -0.03em; line-height: 1;
	margin-bottom: 0.6rem;
	font-variant-numeric: tabular-nums;
}
.tp-num-val span { color: var(--accent-lt); }

.tp-num-label {
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.66rem; color: var(--txw-3);
	font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}

@media (max-width: 900px) { .tp-numbers-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .tp-numbers-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   SERVICES — large alternating photo/text rows (real terminal & fleet
   photography), not an icon-card grid, plus one full-width solid-
   accent coverage band closing the section.
   ===================================================================== */
.tp-services { padding-block: var(--sec); background: var(--paper); }

.tp-services-head {
	display: flex; align-items: flex-end;
	justify-content: space-between; gap: 2rem;
	margin-bottom: 3.5rem; flex-wrap: wrap;
}
@media (max-width: 600px) {
	.tp-services-head { flex-direction: column; align-items: flex-start; }
	.tp-services-head .tp-btn { width: 100%; justify-content: center; }
}

.tp-svc-rows { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.5rem; }

.tp-svc-row {
	display: grid; grid-template-columns: 1fr 1fr;
	border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
	background: #fff;
	transition: box-shadow 0.3s, border-color 0.2s;
}
.tp-svc-row:hover { box-shadow: var(--sh-2); border-color: var(--paper-3); }
.tp-svc-row-media {
	order: 1;
	min-height: 320px;
	background-size: cover; background-position: center;
}
.tp-svc-row-body { order: 2; padding: 2.5rem clamp(1.75rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.tp-svc-row--right .tp-svc-row-media { order: 2; }
.tp-svc-row--right .tp-svc-row-body  { order: 1; }

@media (max-width: 860px) {
	.tp-svc-row { grid-template-columns: 1fr; }
	.tp-svc-row-media { order: 1 !important; min-height: 220px; }
	.tp-svc-row-body  { order: 2 !important; }
}

.tp-svc-cat-head {
	display: flex; align-items: center; gap: 1rem;
	padding-bottom: 1.4rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 0.5rem;
}
.tp-svc-code {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
	color: var(--accent-dk); background: rgba(43,108,224,0.09);
	padding: 0.3rem 0.6rem; border-radius: var(--r-sm); flex-shrink: 0;
}
.tp-svc-cat-icon {
	width: 42px; height: 42px; flex-shrink: 0;
	background: var(--ink); border-radius: var(--r-sm);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.2s;
}
.tp-svc-row:hover .tp-svc-cat-icon { background: var(--accent); color: var(--ink); transform: rotate(-6deg) scale(1.06); }
.tp-svc-cat-icon svg { width: 19px; height: 19px; }
.tp-svc-cat-name {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.05rem; font-weight: 700;
	color: var(--tx); letter-spacing: -0.015em; line-height: 1.3;
}

.tp-svc-list { list-style: none; display: flex; flex-direction: column; }
.tp-svc-list li {
	display: flex; align-items: center; gap: 0.85rem;
	font-size: 0.87rem; color: var(--tx-2); line-height: 1.5;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--line-2);
	transition: color 0.18s, padding-left 0.2s;
}
.tp-svc-list li:last-child { border-bottom: none; }
.tp-svc-list li:hover { color: var(--tx); padding-left: 0.25rem; }
.tp-svc-li-idx {
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px; border-radius: 50%;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.66rem; font-weight: 700;
	color: var(--gray); background: var(--paper-2);
	transition: color 0.18s, background 0.18s;
}
.tp-svc-list li:hover .tp-svc-li-idx { color: #fff; background: var(--accent); }

.tp-svc-highlight {
	background: var(--accent);
	border-radius: var(--r);
	padding: 2.25rem clamp(1.75rem, 4vw, 3rem);
	display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
	color: #fff;
}
.tp-svc-highlight-top { flex-shrink: 0; }
.tp-svc-highlight-eyebrow {
	font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
	color: #fff; opacity: 0.78; margin-bottom: 0.6rem;
}
.tp-svc-highlight-countries {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.8rem; font-weight: 700; letter-spacing: 0.01em;
	color: #fff; white-space: nowrap;
}
.tp-svc-highlight-countries span { opacity: 0.6; margin: 0 0.35rem; }
.tp-svc-highlight-desc { font-size: 0.9rem; color: #fff; opacity: 0.88; line-height: 1.6; max-width: 46ch; }
.tp-svc-highlight-cta { flex-shrink: 0; }

@media (max-width: 860px) {
	.tp-svc-highlight { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
	.tp-svc-highlight-cta { width: 100%; justify-content: center; }
}

/* =====================================================================
   ABOUT — INTRO
   ===================================================================== */
.tp-about-intro { padding-block: var(--sec); background: var(--paper); }

.tp-about-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.tp-about-visual-wrap { position: relative; }

.tp-about-visual-card {
	position: relative; overflow: hidden;
	border-radius: var(--r);
	aspect-ratio: 4 / 3;
	box-shadow: var(--sh-3);
	background-image: url('assets/images/terminal-kaunas.jpg');
	background-size: cover; background-position: 28% 58%;
	transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.tp-about-visual-wrap:hover .tp-about-visual-card { transform: scale(1.02); }
.tp-about-visual-card::before {
	content: "";
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(200deg, rgba(11,14,61,0.16) 0%, rgba(11,14,61,0.02) 45%, rgba(11,14,61,0.22) 100%);
}
.tp-about-visual-card::after {
	content: "";
	position: absolute; inset: 0; pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
	border-radius: var(--r);
}

.tp-about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.tp-about-desc { font-size: 0.98rem; color: var(--tx-2); line-height: 1.82; }
.tp-about-desc strong { color: var(--tx); }

@media (max-width: 860px) {
	.tp-about-grid { grid-template-columns: 1fr; }
	.tp-about-visual-wrap { max-width: 520px; margin-inline: auto; }
}

/* =====================================================================
   ABOUT — VALUES GRID
   ===================================================================== */
.tp-about-values { padding-block: var(--sec); background: var(--paper-2); }

.tp-value-list {
	display: grid; grid-template-columns: 1fr 1fr;
	column-gap: 3rem;
	margin-top: 3rem;
	border-top: 1px solid var(--line);
}
.tp-value-row {
	display: grid; grid-template-columns: 52px 1fr;
	column-gap: 1.25rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--line);
}
.tp-value-icon {
	width: 52px; height: 52px; flex-shrink: 0;
	border-radius: var(--r-sm);
	background: var(--ink); color: #fff;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.25s, color 0.25s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.tp-value-icon svg { width: 22px; height: 22px; }
.tp-value-row:hover .tp-value-icon { background: var(--accent); color: var(--ink); transform: rotate(-6deg) scale(1.06); }
.tp-value-num {
	display: block;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
	color: var(--accent-dk); margin-bottom: 0.5rem;
}
.tp-value-row strong {
	display: block;
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.02rem; font-weight: 700; color: var(--tx); letter-spacing: -0.01em;
	margin-bottom: 0.4rem;
}
.tp-value-row span { font-size: 0.86rem; color: var(--tx-2); line-height: 1.6; }

@media (max-width: 700px) { .tp-value-list { grid-template-columns: 1fr; } }

/* =====================================================================
   ABOUT — FLEET & GROUP BAND
   ===================================================================== */
.tp-fleetband { background: var(--ink); padding-block: var(--sec); position: relative; overflow: hidden; }
.tp-fleetband-head {
	position: relative; z-index: 1;
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.tp-fleetband-head .tp-eyebrow { color: var(--gray); }
.tp-fleetband-head .tp-eyebrow .tp-lines { color: var(--accent-lt); }
.tp-fleetband-head .tp-heading { color: #fff; margin-bottom: 0.4rem; }
.tp-fleetband-head .tp-subheading { color: var(--txw-2); }

.tp-fleetband-grid {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: var(--line-w2);
	border-radius: var(--r);
	overflow: hidden;
}
.tp-fleetband-cell {
	padding: 2rem 1.5rem;
	background: var(--ink);
	transition: background 0.22s;
}
.tp-fleetband-cell:hover { background: rgba(255,255,255,0.045); }
.tp-fleetband-val {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(2rem, 3.4vw, 2.6rem);
	font-weight: 700; color: #fff;
	letter-spacing: -0.02em; line-height: 1;
	margin-bottom: 0.55rem;
	font-variant-numeric: tabular-nums;
}
.tp-fleetband-val span { color: var(--accent-lt); font-size: 0.6em; }
.tp-fleetband-label { font-size: 0.78rem; color: var(--txw-3); line-height: 1.4; }

@media (max-width: 980px) { .tp-fleetband-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .tp-fleetband-grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================================
   ABOUT — META BAR
   ===================================================================== */
.tp-about-metabar {
	background: var(--paper); border-bottom: 1px solid var(--line);
	padding: 1.35rem var(--px); text-align: center;
}
.tp-about-metabar-inner {
	max-width: calc(var(--mxw) + 2 * var(--px)); margin-inline: auto;
	display: flex; align-items: center; justify-content: center;
	gap: 0.6rem 2rem; flex-wrap: wrap;
	font-size: 0.82rem; color: var(--tx-3);
}
.tp-about-metabar-inner strong { color: var(--tx-2); }
.tp-about-metabar-inner a { color: var(--accent-dk); font-weight: 600; }
.tp-about-metabar-sep { color: var(--gray-2); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.tp-cta {
	background: var(--ink);
	padding: clamp(4rem,8vw,7rem) var(--px);
	text-align: center; position: relative; overflow: hidden;
}
.tp-cta-photo {
	position: absolute; inset: 0; z-index: 0;
	width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
	filter: saturate(1) contrast(1.05) brightness(0.95);
}
.tp-cta-fade {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	/* Stays dark enough behind the text column to guarantee contrast,
	   but fades out toward the edges so the photo reads clearly there —
	   safer than a uniform lighter wash, which risked text contrast
	   against the photo's brighter patches. */
	background: radial-gradient(ellipse 720px 460px at 50% 50%, rgba(11,14,61,0.92) 0%, rgba(11,14,61,0.85) 45%, rgba(11,14,61,0.5) 100%);
}
.tp-cta-inner {
	position: relative; z-index: 1;
	max-width: 620px; margin-inline: auto;
	display: flex; flex-direction: column; align-items: center;
}
.tp-cta-eyebrow {
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
	color: var(--accent-lt); margin-bottom: 1.5rem;
}
.tp-cta h2 {
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	color: #fff; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.tp-cta p { font-size: 1.02rem; color: var(--txw-2); margin-bottom: 2.25rem; max-width: 46ch; }

/* =====================================================================
   LOCATIONS / CONTACTS
   ===================================================================== */
.tp-locations { padding-block: var(--sec); background: var(--paper-2); }

.tp-locs-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.tp-loc-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 2.5rem;
	position: relative; overflow: hidden;
	box-shadow: var(--sh-1);
	transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
	display: flex; flex-direction: column;
}
.tp-loc-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--accent);
}
.tp-loc-card:hover { box-shadow: var(--sh-2); }

.tp-loc-tag {
	display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
	color: var(--gray);
	font-size: 0.72rem; font-weight: 600;
	letter-spacing: 0.16em; text-transform: uppercase;
	margin-bottom: 1.25rem;
}
.tp-loc-tag .tp-lines { color: var(--accent); }
.tp-loc-city {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.85rem; font-weight: 700;
	color: var(--tx); letter-spacing: -0.02em;
	margin-bottom: 0.9rem;
}
.tp-loc-addr {
	display: flex; align-items: flex-start; gap: 0.6rem;
	font-size: 0.86rem; color: var(--tx-2);
	margin-bottom: 2rem; line-height: 1.55;
}
.tp-loc-addr svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 0.2em; color: var(--accent-dk); }
.tp-loc-addr small { display: block; font-size: 0.8rem; color: var(--tx-3); margin-top: 0.15em; }

.tp-loc-map {
	position: relative; overflow: hidden;
	aspect-ratio: 16 / 9; width: 100%;
	border-radius: var(--r-sm); border: 1px solid var(--line);
	margin-bottom: 1.75rem;
	filter: grayscale(0.35) contrast(1.05);
	transition: filter 0.3s;
}
.tp-loc-map:hover,
.tp-loc-map:focus-within { filter: grayscale(0); }
.tp-loc-map iframe {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.tp-contacts { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.75rem; }
.tp-person {
	display: grid; grid-template-columns: 36px 1fr; column-gap: 0.85rem; row-gap: 0.5rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--line);
}
.tp-person:last-child { border-bottom: none; padding-bottom: 0; }
.tp-person-avatar {
	grid-row: 1; grid-column: 1;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--ink); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Archivo', system-ui, sans-serif; font-size: 0.85rem; font-weight: 700;
}
.tp-person-avatar svg { width: 14px; height: 14px; }
.tp-person-body { grid-row: 1; grid-column: 2; display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.tp-person-role {
	font-size: 0.68rem; font-weight: 600;
	color: var(--tx-3); text-transform: uppercase; letter-spacing: 0.08em;
}
.tp-person-name { font-size: 0.89rem; font-weight: 600; color: var(--tx); }
.tp-person-contacts {
	grid-row: 2; grid-column: 2;
	display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.tp-person-phone,
.tp-person-mail {
	display: inline-flex; align-items: center; gap: 0.5rem;
	max-width: 100%; padding: 0.4rem 0.85rem;
	border-radius: 999px; border: 1px solid var(--line); color: var(--tx-2);
	font-size: 0.82rem; font-weight: 600;
	transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.tp-person-phone { font-variant-numeric: tabular-nums; }
.tp-person-phone:hover,
.tp-person-mail:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.tp-person-phone svg,
.tp-person-mail svg { width: 13px; height: 13px; flex-shrink: 0; }
.tp-person-mail span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tp-loc-cta { width: 100%; justify-content: center; margin-top: auto; }

@media (max-width: 760px) { .tp-locs-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   FUEL PRICE
   ===================================================================== */
.tp-fuel { padding-block: var(--sec); background: var(--paper); position: relative; }

.tp-fuel-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 2rem; align-items: start; margin-top: 3rem;
}
.tp-fuel-left { display: flex; flex-direction: column; gap: 1.6rem; }

.tp-fuel-contact-card {
	background: var(--ink);
	border-radius: var(--r);
	padding: 1.9rem;
	display: flex; flex-direction: column; gap: 1.15rem;
	box-shadow: var(--sh-2);
	border-top: 2px solid var(--accent);
}
.tp-fuel-contact-top { display: flex; align-items: center; gap: 0.95rem; }
.tp-fuel-contact-icon {
	width: 46px; height: 46px; flex-shrink: 0;
	background: rgba(43,108,224,0.22);
	border-radius: var(--r-sm);
	display: flex; align-items: center; justify-content: center;
	color: var(--accent-lt);
}
.tp-fuel-contact-icon svg { width: 20px; height: 20px; }
.tp-fuel-contact-label {
	font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.1em; color: var(--txw-3); margin-bottom: 0.22rem;
}
.tp-fuel-contact-month {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.08rem; font-weight: 700; color: #fff; letter-spacing: -0.015em;
}
.tp-fuel-contact-big {
	display: flex; flex-direction: column; gap: 0.3rem;
	padding: 0.9rem 0; border-top: 1px solid var(--line-w2); border-bottom: 1px solid var(--line-w2);
}
.tp-fuel-contact-big strong {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 2.6rem; font-weight: 800; color: #fff;
	letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums;
}
.tp-fuel-contact-big strong span { font-size: 0.5em; color: var(--accent-lt); font-weight: 700; margin-left: 0.1em; }
.tp-fuel-contact-big > span { font-size: 0.8rem; color: var(--txw-2); }
.tp-fuel-contact-desc { font-size: 0.83rem; color: var(--txw-2); line-height: 1.68; }
.tp-fuel-contact-phone {
	display: inline-flex; align-items: center; gap: 0.45rem;
	font-size: 0.85rem; font-weight: 600; color: var(--txw-2);
	transition: color 0.2s; justify-content: center;
	padding-block: 0.3rem;
}
.tp-fuel-contact-phone:hover { color: #fff; }
.tp-fuel-contact-phone svg { width: 14px; height: 14px; color: var(--accent-lt); }

.tp-fuel-steps { display: flex; flex-direction: column; gap: 0; }
.tp-fuel-step {
	display: flex; align-items: flex-start; gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}
.tp-fuel-step:last-child { border-bottom: none; }
.tp-fuel-step-num {
	flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
	background: var(--paper-2); color: var(--ink);
	display: flex; align-items: center; justify-content: center;
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 0.8rem; font-weight: 700;
}
.tp-fuel-step-body { display: flex; flex-direction: column; gap: 0.18rem; padding-top: 0.3rem; }
.tp-fuel-step-body strong { font-size: 0.89rem; font-weight: 700; color: var(--tx); }
.tp-fuel-step-body span   { font-size: 0.83rem; color: var(--tx-2); line-height: 1.5; }

.tp-fuel-formula { background: var(--paper-2); border-radius: var(--r); padding: 2rem; }
.tp-fuel-formula h4 {
	font-size: 0.76rem; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.14em; color: var(--tx-3);
	margin-bottom: 1.1rem;
}
.tp-formula-code {
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--r-sm); padding: 1.15rem 1.35rem;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
	font-size: 0.83rem; color: var(--tx);
	line-height: 2; margin-bottom: 1.35rem;
}
.tp-formula-notes { display: flex; flex-direction: column; gap: 0.52rem; margin-bottom: 1.6rem; }
.tp-formula-note {
	display: flex; gap: 0.6rem;
	font-size: 0.8rem; color: var(--tx-3); line-height: 1.5;
}
.tp-formula-note::before { content: "—"; color: var(--accent-dk); font-weight: 700; flex-shrink: 0; }

.tp-formula-example {
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--r-sm); padding: 1.1rem 1.2rem; margin-bottom: 1.2rem;
}
.tp-formula-example-label {
	font-size: 0.68rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--gray); margin-bottom: 0.7rem;
}
.tp-formula-example-row {
	display: flex; justify-content: space-between; align-items: center;
	padding: 0.38rem 0; border-bottom: 1px solid var(--line);
	font-size: 0.85rem; color: var(--tx-2);
}
.tp-formula-example-row:last-child { border-bottom: none; }
.tp-formula-example-row strong { font-weight: 700; color: var(--tx); font-variant-numeric: tabular-nums; }
.tp-formula-example-result {
	background: rgba(43,108,224,0.08);
	margin: 0.42rem -0.25rem 0; padding: 0.48rem 0.6rem; border-radius: var(--r-sm);
}
.tp-formula-example-result strong { color: var(--accent-dk); font-size: 1.05rem; }

.tp-fuel-source { font-size: 0.76rem; color: var(--tx-3); line-height: 1.5; }
.tp-fuel-source a { color: var(--accent-dk); }

/* Price history — real, published monthly figures, as a proper table */
.tp-fuel-history { margin-top: 4.5rem; }
.tp-fuel-history-head { max-width: 640px; margin-bottom: 2.25rem; }
.tp-fuel-history-head h3 {
	font-family: 'Archivo', system-ui, sans-serif; font-size: 1.5rem; font-weight: 700;
	color: var(--tx); letter-spacing: -0.015em; margin-bottom: 0.5rem;
}
.tp-fuel-history-head p { font-size: 0.92rem; color: var(--tx-2); line-height: 1.6; }

.tp-fuel-year { margin-bottom: 2.5rem; }
.tp-fuel-year:last-child { margin-bottom: 0; }
.tp-fuel-year-label {
	display: inline-flex; align-items: center; gap: 0.75rem;
	font-family: 'Archivo', system-ui, sans-serif; font-size: 1.15rem; font-weight: 800;
	color: var(--ink); margin-bottom: 1.1rem;
}
.tp-fuel-year-label::after { content: ""; display: block; height: 2px; width: 32px; background: var(--accent); }

.tp-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	box-shadow: var(--sh-1);
	-webkit-overflow-scrolling: touch;
}
.tp-table { width: 100%; min-width: 460px; max-width: 640px; border-collapse: collapse; font-size: 0.87rem; table-layout: fixed; }
.tp-table thead th {
	text-align: left; padding: 0.95rem 1.15rem;
	font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
	color: var(--tx-3); background: var(--paper-2);
	border-bottom: 2px solid var(--line);
	white-space: nowrap;
}
.tp-table thead th:first-child,
.tp-table tbody th[scope="row"] { width: 32%; }
.tp-table thead th:nth-child(2),
.tp-table thead th:nth-child(3) { width: 19%; }
.tp-table tbody th[scope="row"] {
	text-align: left; font-weight: 600; color: var(--tx);
	padding: 0.95rem 1.15rem; font-size: 0.87rem;
	display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.tp-table tbody td { padding: 0.95rem 1.15rem; color: var(--tx-2); vertical-align: middle; }
.tp-table tbody tr { border-bottom: 1px solid var(--line-2); transition: background 0.15s; }
.tp-table tbody tr:last-child { border-bottom: none; }
.tp-table tbody tr:nth-child(even) { background: var(--paper-2); }
.tp-table tbody tr:hover { background: var(--paper-3); }
.tp-table-num { font-family: 'JetBrains Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; text-align: right; }
.tp-table-pct { color: var(--accent-dk); font-weight: 700; }
.tp-table-bar-col { width: 30%; }
.tp-table-bar-track { display: block; width: 100%; height: 8px; border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.tp-table-bar { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-lt), var(--accent)); border-radius: 4px; }

/* The row matching the "current" fuel surcharge shown in the card
   above — ties the table back to that number instead of leaving the
   reader to hunt for it in the list. */
.tp-table tbody tr.tp-table-row--current {
	background: color-mix(in srgb, var(--accent) 7%, #fff);
	box-shadow: inset 3px 0 0 var(--accent);
}
.tp-table tbody tr.tp-table-row--current:hover { background: color-mix(in srgb, var(--accent) 12%, #fff); }
.tp-table-current-tag {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
	color: #fff; background: var(--accent);
	padding: 0.15rem 0.5rem; border-radius: 999px;
	white-space: nowrap;
}
.tp-table-bar-track { display: block; width: 100%; height: 6px; border-radius: 3px; background: var(--paper-3); overflow: hidden; }
.tp-table-bar { display: block; height: 100%; background: var(--accent); border-radius: 3px; }

@media (max-width: 620px) {
	.tp-table thead th.tp-table-bar-col,
	.tp-table td.tp-table-bar-col { display: none; }
}

@media (max-width: 840px) { .tp-fuel-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.tp-footer-wrap { background: var(--ink); }

.tp-footer-top {
	display: grid; grid-template-columns: 2fr 1fr 1fr;
	gap: 3.5rem;
	padding: clamp(3rem,6vw,5rem) var(--px);
	max-width: calc(var(--mxw) + 2 * var(--px));
	margin-inline: auto;
	border-bottom: 1px solid var(--line-w2);
}

.tp-footer-brand { display: flex; flex-direction: column; gap: 1.1rem; }
.tp-footer-brand .tp-logo-name    { color: #fff; }
.tp-footer-brand .tp-logo-tagline { color: var(--txw-3); }
.tp-footer-brand .tp-logo::after  { background: var(--accent); }
.tp-footer-desc {
	font-size: 0.85rem; color: var(--txw-3);
	line-height: 1.75; max-width: 34ch;
}

.tp-footer-col h5 {
	font-size: 0.68rem; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--txw-3); margin-bottom: 1.1rem;
}
.tp-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.tp-footer-links a {
	font-size: 0.88rem; color: var(--txw-2);
	transition: color 0.2s, padding-left 0.22s; display: block;
	padding-block: 0.4rem;
}
.tp-footer-links a:hover { color: #fff; padding-left: 0.38rem; }

.tp-footer-contacts { display: flex; flex-direction: column; gap: 0.65rem; }
.tp-footer-contact {
	display: flex; align-items: flex-start; gap: 0.55rem;
	font-size: 0.85rem; color: var(--txw-2); line-height: 1.4;
	transition: color 0.2s;
	padding-block: 0.3rem;
}
a.tp-footer-contact:hover { color: #fff; }
.tp-footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--accent-lt); }

.tp-footer-bottom {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; flex-wrap: wrap;
	padding: 1.3rem var(--px);
	max-width: calc(var(--mxw) + 2 * var(--px));
	margin-inline: auto;
	font-size: 0.74rem; color: var(--txw-3);
}
.tp-footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

@media (max-width: 840px) {
	.tp-footer-top { grid-template-columns: 1fr 1fr; }
	.tp-footer-brand { grid-column: 1/-1; }
}
@media (max-width: 520px) {
	.tp-footer-top { grid-template-columns: 1fr; }
	.tp-footer-bottom { flex-direction: column; text-align: center; }
}

/* =====================================================================
   PAGE HERO (sub-pages)
   ===================================================================== */
.tp-page-hero {
	padding: 6rem var(--px) 5rem;
	background: var(--ink);
	background-size: cover; background-position: center;
	position: relative; overflow: hidden;
}
/* Each sub-page gets its own real photo — not a repeated generic band —
   with a dark wash strong enough for text, but clearly showing the
   photo (unlike the more subdued CTA band treatment). */
.tp-page-hero--about {
	background-image: linear-gradient(100deg, rgba(11,14,61,0.92) 0%, rgba(11,14,61,0.8) 45%, rgba(11,14,61,0.55) 100%), url('assets/images/page-hero-about.jpg');
	background-position: center 25%;
}
.tp-page-hero--services {
	background-image: linear-gradient(100deg, rgba(11,14,61,0.92) 0%, rgba(11,14,61,0.8) 45%, rgba(11,14,61,0.55) 100%), url('assets/images/page-hero-services-v2.jpg');
}
.tp-page-hero--contacts {
	background-image: linear-gradient(100deg, rgba(11,14,61,0.92) 0%, rgba(11,14,61,0.8) 45%, rgba(11,14,61,0.55) 100%), url('assets/images/page-hero-contacts.jpg');
}
.tp-page-hero--fuel {
	background-image: linear-gradient(100deg, rgba(11,14,61,0.92) 0%, rgba(11,14,61,0.8) 45%, rgba(11,14,61,0.55) 100%), url('assets/images/page-hero-fuel.jpg');
	background-position: center 65%;
}
.tp-page-hero-inner { position: relative; z-index: 1; max-width: var(--mxw); margin-inline: auto; }
.tp-page-hero .tp-eyebrow { color: var(--gray); }
.tp-page-hero .tp-eyebrow .tp-lines { color: var(--accent-lt); }
.tp-page-hero h1,
.tp-page-hero .wp-block-post-title {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 700; color: #fff;
	letter-spacing: -0.025em; line-height: 1.08;
	margin: 0;
}
.tp-page-hero-sub {
	font-size: clamp(0.9rem, 1.5vw, 1.02rem);
	color: var(--txw-2); line-height: 1.72;
	max-width: none; margin-top: 1rem;
}

.tp-page-body,
.tp-page-body .wp-block-post-content,
.tp-page-body .is-layout-flow,
.tp-page-body .is-layout-constrained {
	width: 100%; max-width: 100%; padding: 0; margin-inline: 0;
}

/* =====================================================================
   404 PAGE
   ===================================================================== */
.tp-404 {
	display: flex; align-items: center; justify-content: center;
	min-height: calc(100svh - var(--nav-h)); padding: 4rem var(--px);
	text-align: center; background: var(--paper-2);
}
.tp-404-inner { max-width: 500px; }
.tp-404-code {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: clamp(6rem, 16vw, 12rem);
	font-weight: 700; color: var(--paper-3);
	letter-spacing: -0.02em; line-height: 1;
	margin-bottom: 0.5rem;
}
.tp-404 h1 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.tp-404 p  { color: var(--tx-3); margin-bottom: 2rem; }

/* =====================================================================
   SCROLL ANIMATIONS — hiding is scoped to .tp-js (added synchronously
   in <head>, see functions.php) so content is never hidden-by-default
   for no-JS visitors or crawlers. .in-view is added by the existing
   IntersectionObserver in the footer script.
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
	@keyframes tp-fade-up    { from { opacity: 0; transform: translateY(22px) scale(0.985); } to { opacity: 1; transform: none; } }
	@keyframes tp-fade-left  { from { opacity: 0; transform: translateX(-30px) scale(0.985); } to { opacity: 1; transform: none; } }
	@keyframes tp-fade-right { from { opacity: 0; transform: translateX(30px) scale(0.985); } to { opacity: 1; transform: none; } }

	.tp-js .tp-anim,
	.tp-js .tp-anim-left,
	.tp-js .tp-anim-right { opacity: 0; }

	.tp-js .tp-anim.in-view       { animation: tp-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) both; }
	.tp-js .tp-anim-left.in-view  { animation: tp-fade-left 0.7s cubic-bezier(0.16,1,0.3,1) both; }
	.tp-js .tp-anim-right.in-view { animation: tp-fade-right 0.7s cubic-bezier(0.16,1,0.3,1) both; }

	@keyframes tp-lines-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
	.tp-anim.in-view .tp-lines span,
	.tp-anim-left.in-view .tp-lines span,
	.tp-anim-right.in-view .tp-lines span {
		transform-origin: left;
		animation: tp-lines-draw 0.5s cubic-bezier(0.16,1,0.3,1) both;
	}
	.tp-anim.in-view .tp-lines span:nth-child(1),
	.tp-anim-left.in-view .tp-lines span:nth-child(1),
	.tp-anim-right.in-view .tp-lines span:nth-child(1) { animation-delay: 0.4s; }
	.tp-anim.in-view .tp-lines span:nth-child(2),
	.tp-anim-left.in-view .tp-lines span:nth-child(2),
	.tp-anim-right.in-view .tp-lines span:nth-child(2) { animation-delay: 0.5s; }
	.tp-anim.in-view .tp-lines span:nth-child(3),
	.tp-anim-left.in-view .tp-lines span:nth-child(3),
	.tp-anim-right.in-view .tp-lines span:nth-child(3) { animation-delay: 0.6s; }
}

/* =====================================================================
   CONTACT FORM
   ===================================================================== */
.tp-form-wrap { padding-block: var(--sec); background: var(--paper); }

.tp-contact-split {
	display: grid; grid-template-columns: 1.5fr 1fr;
	gap: 2rem; align-items: stretch;
	max-width: 1080px; margin-inline: auto;
}

.tp-form-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--r);
	padding: clamp(1.75rem, 4vw, 3rem); box-shadow: var(--sh-1);
}
.tp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.tp-form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.tp-form-field label { font-size: 0.76rem; font-weight: 600; color: var(--tx-2); letter-spacing: 0.02em; }
.tp-form-field input,
.tp-form-field textarea {
	width: 100%; padding: 0.8rem 1rem;
	font-family: inherit; font-size: 0.92rem; color: var(--tx);
	background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-sm);
	transition: border-color 0.2s, background 0.2s;
}
.tp-form-field input:focus, .tp-form-field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.tp-form-field textarea { min-height: 140px; resize: vertical; }
.tp-form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tp-form-actions { display: flex; justify-content: flex-end; }
.tp-form-note {
	display: flex; align-items: center; gap: 0.6rem;
	padding: 0.95rem 1.1rem; border-radius: var(--r-sm);
	font-size: 0.88rem; margin-bottom: 1.5rem;
}
.tp-form-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.tp-form-note--ok  { background: rgba(43,108,224,0.1); color: var(--accent-dk); }
.tp-form-note--err { background: rgba(198,58,58,0.08); color: #B23A3A; }

.tp-contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.tp-contact-side-card {
	background: var(--ink); border-radius: var(--r);
	padding: 1.75rem;
}
.tp-contact-side-card:last-child { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.tp-contact-side-card h3 {
	font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
	color: var(--txw-3); margin-bottom: 1.1rem;
}
.tp-contact-side-link {
	display: flex; align-items: center; gap: 0.9rem;
	padding: 0.7rem 0; border-bottom: 1px solid var(--line-w2);
	transition: opacity 0.2s;
}
.tp-contact-side-link:last-child { border-bottom: none; padding-bottom: 0; }
.tp-contact-side-link:first-of-type { padding-top: 0; }
.tp-contact-side-link:hover { opacity: 0.8; }
.tp-contact-side-icon {
	flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
	background: rgba(43,108,224,0.22); color: var(--accent-lt);
	display: flex; align-items: center; justify-content: center;
}
.tp-contact-side-icon svg { width: 18px; height: 18px; }
.tp-contact-side-link strong { display: block; font-size: 0.92rem; font-weight: 700; color: #fff; }
.tp-contact-side-link span span { font-size: 0.78rem; color: var(--txw-3); }

.tp-contact-side-office {
	display: flex; align-items: flex-start; gap: 0.9rem;
	padding: 0.7rem 0; border-bottom: 1px solid var(--line-w2);
}
.tp-contact-side-office:last-child { border-bottom: none; padding-bottom: 0; }
.tp-contact-side-office:first-of-type { padding-top: 0; }
.tp-contact-side-office-icon { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent-lt); margin-top: 0.15em; }
.tp-contact-side-office-icon svg { width: 16px; height: 16px; }
.tp-contact-side-office strong { display: block; font-size: 0.88rem; font-weight: 700; color: #fff; }
.tp-contact-side-office span span { font-size: 0.78rem; color: var(--txw-3); }

@media (max-width: 900px) { .tp-contact-split { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .tp-form-row { grid-template-columns: 1fr; } }

/* =====================================================================
   CARD TILT — JS drives --tilt-x/--tilt-y/--tilt-lift on mousemove
   ===================================================================== */
.tp-svc-cat, .tp-loc-card {
	--tilt-x: 0deg; --tilt-y: 0deg; --tilt-lift: 0px;
	transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift));
	transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.2s;
	will-change: transform;
}
.tp-svc-cat:hover, .tp-loc-card:hover { transition: box-shadow 0.3s, border-color 0.2s; }

/* =====================================================================
   TRUST-STRIP PARTNER LOGOS — auto-scrolling marquee (shortcode renders
   the list twice back-to-back; translating -50% loops seamlessly)
   ===================================================================== */
.tp-trust-strip { background: var(--paper); padding-block: clamp(2.5rem,5vw,3.5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }

.tp-trust-strip-head { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; }
.tp-trust-strip-label { text-align: center; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tx-3); }

/* Explicit pause/play control — not just hover/focus-within — per
   auto-rotating-content accessibility guidance (High severity). */
.tp-trust-pause {
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	display: inline-flex; align-items: center; justify-content: center;
	width: 30px; height: 30px; border-radius: 50%;
	border: 1px solid var(--line); background: #fff; color: var(--tx-2);
	cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.tp-trust-pause:hover { border-color: var(--accent); color: var(--accent-dk); }
.tp-trust-pause-icon { display: inline-flex; }
.tp-trust-pause-icon--play { display: none; }
.tp-trust-pause[aria-pressed="true"] .tp-trust-pause-icon--pause { display: none; }
.tp-trust-pause[aria-pressed="true"] .tp-trust-pause-icon--play { display: inline-flex; }

.tp-trust-track-wrap {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.tp-trust-grid.tp-trust-track {
	list-style: none; display: flex; align-items: stretch; flex-wrap: nowrap; gap: 0.75rem;
	width: max-content;
	animation: tp-marquee 38s linear infinite;
	will-change: transform;
	backface-visibility: hidden;
}
.tp-trust-track-wrap:hover .tp-trust-track,
.tp-trust-track-wrap:focus-within .tp-trust-track,
.tp-trust-track-wrap.is-paused .tp-trust-track { animation-play-state: paused; }
@keyframes tp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.tp-trust-grid li { display: flex; flex-shrink: 0; }
.tp-trust-card {
	display: flex; align-items: center; justify-content: center;
	width: 168px; height: 88px;
	padding: 1rem 1.5rem;
	border: 1px solid var(--line); border-radius: var(--r-sm);
	/* Opacity only (not a grayscale/contrast filter) — this strip is
	   continuously animating (marquee), and a live filter recomposited
	   every frame on ~24 moving elements was a real measured performance
	   cost. Opacity is compositor-only and effectively free. */
	opacity: 0.62;
	transition: opacity 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tp-trust-card:hover { opacity: 1; background: var(--paper-2); border-color: var(--paper-3); box-shadow: var(--sh-1); }
/* A fixed height with auto width (not "contain within the box") is
   what actually makes a logo wall read as one consistent size — the
   source files range from near-square marks (ratio ~1.5) to very
   long wordmarks (ratio ~10), so "shrink to fit the same box" made
   the wide ones tiny and the square ones oversized relative to each
   other even though every box was identical. */
.tp-trust-card img { max-height: 34px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
/* Saudingos and Autecha are unusually long, thin wordmarks (~10:1) —
   even at the shared height they need more horizontal room than the
   other cards, so only these two get a wider box. */
.tp-trust-card--wide { width: 260px; padding-inline: 0.6rem; }
/* Continexus, Kečas and Saudingos read slightly smaller than the rest
   even at the same box height — a touch more height for just these
   three closes that gap without resizing the whole wall. max-height
   (not height) so width-bound logos like Saudingos scale down without
   distorting instead of leaving dead space in an oversized box. */
.tp-trust-card--lg img { max-height: 46px; }
.tp-trust-card-text {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em;
	color: var(--tx);
}
@media (prefers-reduced-motion: reduce) {
	.tp-svc-cat, .tp-loc-card { transform: none !important; }
	.tp-trust-grid.tp-trust-track {
		animation: none; flex-wrap: wrap; width: auto; justify-content: center;
	}
	.tp-trust-track-wrap { -webkit-mask-image: none; mask-image: none; }
	.tp-trust-track li[aria-hidden="true"] { display: none; }
	.tp-trust-pause { display: none; }
}
