:root {
	--jika-navy-950: #071827;
	--jika-navy-900: #0a2135;
	--jika-navy-800: #102f4a;
	--jika-navy-700: #173e5f;
	--jika-orange: #f47b20;
	--jika-orange-dark: #d95f0b;
	--jika-cream: #f7f4ee;
	--jika-white: #ffffff;
	--jika-slate: #64748b;
	--jika-border: #dce4ea;
	--jika-success: #20a464;
	--jika-shadow: 0 24px 70px rgba(7, 24, 39, 0.13);
	--jika-radius: 18px;
	--jika-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--jika-white);
	color: var(--jika-navy-950);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.jika-menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.jika-container {
	width: min(calc(100% - 40px), var(--jika-container));
	margin-inline: auto;
}

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

.screen-reader-text:focus {
	position: fixed;
	z-index: 99999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	background: #fff;
	color: #000;
	clip: auto;
}

.jika-topbar {
	background: var(--jika-navy-950);
	color: #dbe9f4;
	font-size: 13px;
}

.jika-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 24px;
}

.jika-country,
.jika-topbar-contact {
	display: flex;
	align-items: center;
	gap: 18px;
}

.jika-country span {
	font-size: 17px;
}

.jika-topbar a:hover {
	color: var(--jika-orange);
}

.jika-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(7, 24, 39, 0.08);
	box-shadow: 0 8px 30px rgba(7, 24, 39, 0.04);
	backdrop-filter: blur(14px);
}

.admin-bar .jika-header {
	top: 32px;
}

.jika-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 84px;
	gap: 28px;
}

.jika-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: max-content;
}

.jika-brand img,
.jika-brand .custom-logo {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.jika-brand .custom-logo-link {
	display: flex;
}

.jika-brand > span,
.jika-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.jika-brand strong {
	color: var(--jika-navy-800);
	font-size: 24px;
	letter-spacing: 0.08em;
}

.jika-brand small {
	margin-top: 5px;
	color: var(--jika-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.jika-nav {
	justify-self: end;
}

.jika-nav-list {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.jika-nav-list a {
	position: relative;
	color: var(--jika-navy-900);
	font-size: 14px;
	font-weight: 750;
}

.jika-nav-list a::after {
	position: absolute;
	right: 0;
	bottom: -9px;
	left: 0;
	height: 2px;
	background: var(--jika-orange);
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.jika-nav-list a:hover::after,
.jika-nav-list .current-menu-item > a::after {
	transform: scaleX(1);
}

.jika-menu-toggle {
	display: none;
	width: 45px;
	height: 42px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.jika-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px 0;
	background: var(--jika-navy-900);
}

.jika-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 24px;
	background: var(--jika-orange);
	color: #fff;
	border: 1px solid var(--jika-orange);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(244, 123, 32, 0.23);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.jika-button:hover {
	background: var(--jika-orange-dark);
	border-color: var(--jika-orange-dark);
	color: #fff;
	box-shadow: 0 16px 36px rgba(244, 123, 32, 0.33);
	transform: translateY(-2px);
}

.jika-button-small {
	min-height: 42px;
	padding: 10px 17px;
	font-size: 13px;
}

.jika-button-block {
	width: 100%;
}

.jika-button-dark {
	background: var(--jika-navy-900);
	border-color: var(--jika-navy-900);
	box-shadow: 0 12px 28px rgba(7, 24, 39, 0.2);
}

.jika-button-dark:hover {
	background: var(--jika-navy-700);
	border-color: var(--jika-navy-700);
}

.jika-button-outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.42);
	box-shadow: none;
}

.jika-button-outline-light:hover {
	background: #fff;
	color: var(--jika-navy-900);
	border-color: #fff;
}

.jika-text-link {
	color: var(--jika-navy-800);
	font-size: 14px;
	font-weight: 850;
}

.jika-text-link:hover {
	color: var(--jika-orange);
}

.jika-hero {
	position: relative;
	display: grid;
	min-height: 680px;
	overflow: hidden;
	background: var(--jika-navy-950) url("../images/hero-port.jpg") center/cover no-repeat;
}

.jika-hero::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 24, 39, 0.97) 0%, rgba(7, 24, 39, 0.85) 48%, rgba(7, 24, 39, 0.45) 100%);
	content: "";
}

.jika-hero::after {
	position: absolute;
	right: -15vw;
	bottom: -24vw;
	width: 55vw;
	height: 55vw;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.025), 0 0 0 170px rgba(255, 255, 255, 0.018);
	content: "";
}

.jika-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.72fr);
	align-items: center;
	gap: 70px;
	padding-block: 80px;
}

.jika-hero-copy {
	max-width: 700px;
	color: #fff;
}

.jika-kicker,
.jika-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--jika-orange);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.jika-hero h1 {
	max-width: 720px;
	margin: 20px 0 22px;
	font-size: clamp(42px, 5vw, 72px);
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.jika-hero-copy > p {
	max-width: 640px;
	margin: 0;
	color: #c9d9e6;
	font-size: 18px;
	line-height: 1.75;
}

.jika-hero-actions {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 34px;
}

.jika-hero .jika-text-link {
	color: #fff;
}

.jika-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin-top: 38px;
	color: #b9cbd8;
	font-size: 13px;
	font-weight: 650;
}

.jika-hero-trust span::first-letter {
	color: var(--jika-orange);
}

.jika-login-card {
	position: relative;
	padding: 38px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 24px;
	box-shadow: 0 35px 85px rgba(0, 0, 0, 0.34);
}

.jika-login-icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;
	background: rgba(244, 123, 32, 0.12);
	color: var(--jika-orange);
	border-radius: 17px;
	font-size: 27px;
	font-weight: 900;
	place-items: center;
}

.jika-login-card h2 {
	margin: 0 0 9px;
	color: var(--jika-navy-900);
	font-size: 27px;
	line-height: 1.2;
}

.jika-login-card > p {
	margin: 0 0 23px;
	color: var(--jika-slate);
	font-size: 14px;
}

.jika-login-card small {
	display: block;
	margin-top: 12px;
	color: var(--jika-slate);
	font-size: 11px;
	text-align: center;
}

.jika-route-strip {
	position: relative;
	z-index: 3;
	background: var(--jika-orange);
	color: #fff;
	box-shadow: 0 14px 30px rgba(244, 123, 32, 0.18);
}

.jika-route-strip .jika-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	gap: 18px;
	font-size: 13px;
	font-weight: 850;
	white-space: nowrap;
}

.jika-route-strip i {
	opacity: 0.55;
	font-style: normal;
}

.jika-route-strip strong {
	padding: 8px 14px;
	background: rgba(7, 24, 39, 0.18);
	border-radius: 999px;
}

.jika-section {
	padding: 105px 0;
}

.jika-section-heading {
	max-width: 720px;
	margin: 0 auto 52px;
	text-align: center;
}

.jika-section-heading h2,
.jika-feature-copy h2,
.jika-about-copy h2,
.jika-cta h2 {
	margin: 12px 0 16px;
	color: var(--jika-navy-900);
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.jika-section-heading p {
	margin: 0;
	color: var(--jika-slate);
}

.jika-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.jika-service-card {
	position: relative;
	min-height: 315px;
	padding: 31px 28px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--jika-border);
	border-radius: var(--jika-radius);
	box-shadow: 0 12px 38px rgba(7, 24, 39, 0.055);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.jika-service-card:hover {
	border-color: rgba(244, 123, 32, 0.5);
	box-shadow: var(--jika-shadow);
	transform: translateY(-8px);
}

.jika-service-card > span {
	position: absolute;
	top: 18px;
	right: 20px;
	color: #e7edf1;
	font-size: 58px;
	font-weight: 900;
	line-height: 1;
}

.jika-service-icon {
	position: relative;
	z-index: 1;
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 65px;
	background: var(--jika-navy-900);
	color: var(--jika-orange);
	border-radius: 16px;
	font-size: 26px;
	font-weight: 900;
	place-items: center;
}

.jika-service-card h3 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.25;
}

.jika-service-card p {
	margin: 0;
	color: var(--jika-slate);
	font-size: 14px;
}

.jika-feature {
	padding: 100px 0;
	background: var(--jika-cream);
}

.jika-feature-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 82px;
}

.jika-feature-image {
	position: relative;
}

.jika-feature-image > img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: var(--jika-shadow);
}

.jika-floating-stat {
	position: absolute;
	right: -36px;
	bottom: 36px;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 230px;
	padding: 19px 23px;
	background: var(--jika-orange);
	color: #fff;
	border: 7px solid var(--jika-cream);
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(244, 123, 32, 0.26);
}

.jika-floating-stat strong {
	font-size: 37px;
	line-height: 1;
}

.jika-floating-stat span {
	font-size: 12px;
	font-weight: 750;
	line-height: 1.35;
}

.jika-check-list {
	display: grid;
	gap: 18px;
	padding: 0;
	margin: 28px 0 34px;
	list-style: none;
}

.jika-check-list li {
	position: relative;
	padding-left: 36px;
	color: var(--jika-slate);
}

.jika-check-list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	width: 23px;
	height: 23px;
	background: rgba(32, 164, 100, 0.12);
	color: var(--jika-success);
	border-radius: 50%;
	content: "✓";
	font-size: 12px;
	font-weight: 900;
	place-items: center;
}

.jika-check-list strong {
	color: var(--jika-navy-900);
}

.jika-promotions {
	background: #fff;
}

.jika-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	max-width: none;
	text-align: left;
}

.jika-heading-row h2 {
	margin-bottom: 0;
}

.jika-empty-state {
	padding: 45px;
	background: var(--jika-cream);
	color: var(--jika-slate);
	border: 1px dashed #b8c5cf;
	border-radius: 18px;
	text-align: center;
}

.jika-cta {
	padding: 64px 0;
	overflow: hidden;
	background: var(--jika-navy-900);
	color: #fff;
}

.jika-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.jika-cta h2 {
	margin-bottom: 0;
	color: #fff;
}

.jika-cta-actions {
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
}

.jika-footer {
	padding-top: 78px;
	background: var(--jika-navy-950);
	color: #aebfcb;
}

.jika-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 70px;
	padding-bottom: 60px;
}

.jika-brand-footer strong {
	color: #fff;
}

.jika-brand-footer img {
	width: 64px;
	height: 64px;
}

.jika-footer-grid > div:first-child > p {
	max-width: 390px;
	margin: 22px 0;
}

.jika-footer h2 {
	margin: 9px 0 22px;
	color: #fff;
	font-size: 16px;
}

.jika-footer ul {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
}

.jika-footer address {
	font-style: normal;
}

.jika-footer a:hover {
	color: var(--jika-orange);
}

.jika-social {
	display: grid;
	gap: 5px;
	font-size: 13px;
}

.jika-footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
}

.jika-footer-bottom .jika-container {
	display: flex;
	justify-content: space-between;
}

.jika-page-hero {
	padding: 110px 0;
	background: linear-gradient(115deg, rgba(7, 24, 39, 0.97), rgba(10, 33, 53, 0.89)), url("../images/hero-port.jpg") center/cover;
	color: #fff;
}

.jika-page-hero .jika-container {
	max-width: 920px;
	margin-left: max(20px, calc((100vw - var(--jika-container)) / 2));
}

.jika-page-hero h1 {
	max-width: 850px;
	margin: 18px 0;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.jika-page-hero p {
	max-width: 760px;
	margin: 0;
	color: #c6d7e3;
	font-size: 19px;
}

.jika-about-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	align-items: center;
	gap: 75px;
}

.jika-ceo-image {
	position: relative;
	padding: 14px;
	background: var(--jika-cream);
	border-radius: 28px;
	box-shadow: var(--jika-shadow);
}

.jika-ceo-image img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px;
}

.jika-ceo-image > div {
	position: absolute;
	right: 32px;
	bottom: 32px;
	left: 32px;
	display: flex;
	flex-direction: column;
	padding: 16px 18px;
	background: rgba(7, 24, 39, 0.88);
	color: #fff;
	border-radius: 13px;
	backdrop-filter: blur(9px);
}

.jika-ceo-image span {
	color: var(--jika-orange);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.jika-about-copy > p {
	color: var(--jika-slate);
}

.jika-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 30px;
}

.jika-values > div {
	display: flex;
	flex-direction: column;
	padding: 18px;
	background: var(--jika-cream);
	border-radius: 14px;
}

.jika-values strong {
	margin-bottom: 5px;
	color: var(--jika-navy-900);
}

.jika-values span {
	color: var(--jika-slate);
	font-size: 12px;
}

.jika-timeline-history {
	padding: 90px 0;
	background: var(--jika-cream);
}

.jika-timeline-history .jika-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.jika-timeline-history .jika-container::before {
	position: absolute;
	top: 29px;
	right: 10%;
	left: 10%;
	height: 2px;
	background: #cdd7de;
	content: "";
}

.jika-history-item {
	position: relative;
}

.jika-history-item > span {
	position: relative;
	z-index: 2;
	display: inline-grid;
	width: 62px;
	height: 62px;
	background: var(--jika-orange);
	color: #fff;
	border: 7px solid var(--jika-cream);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 900;
	place-items: center;
}

.jika-history-item > div {
	margin-top: 20px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--jika-border);
	border-radius: 16px;
}

.jika-history-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
}

.jika-history-item p {
	margin: 0;
	color: var(--jika-slate);
	font-size: 13px;
}

.jika-page-main {
	min-height: 65vh;
	padding: 82px 0;
	background: var(--jika-cream);
}

.jika-content {
	max-width: 1050px;
}

.jika-entry-header h1 {
	margin: 0 0 32px;
	font-size: clamp(35px, 5vw, 55px);
	line-height: 1.1;
}

.jika-entry-content {
	padding: clamp(22px, 5vw, 48px);
	background: #fff;
	border: 1px solid var(--jika-border);
	border-radius: 22px;
	box-shadow: 0 20px 60px rgba(7, 24, 39, 0.08);
}

.jika-post-card {
	margin-bottom: 20px;
	padding: 25px;
	background: #fff;
	border-radius: 14px;
}

.jika-error-page {
	padding: 80px 20px;
	text-align: center;
}

.jika-error-page > span {
	color: var(--jika-orange);
	font-size: 85px;
	font-weight: 950;
}

@media (max-width: 1080px) {
	.jika-header-inner {
		grid-template-columns: auto 1fr;
	}

	.jika-header-cta {
		display: none;
	}

	.jika-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jika-feature-grid,
	.jika-about-grid {
		gap: 48px;
	}

	.jika-route-strip .jika-container {
		overflow-x: auto;
		justify-content: flex-start;
	}

	.jika-footer-grid {
		gap: 35px;
	}
}

@media (max-width: 860px) {
	.admin-bar .jika-header {
		top: 46px;
	}

	.jika-topbar-contact a:last-child {
		display: none;
	}

	.jika-header-inner {
		display: flex;
		justify-content: space-between;
		min-height: 74px;
	}

	.jika-menu-toggle {
		display: block;
	}

	.jika-nav {
		position: fixed;
		z-index: 1001;
		top: 112px;
		right: 18px;
		left: 18px;
		display: none;
		padding: 22px;
		background: #fff;
		border: 1px solid var(--jika-border);
		border-radius: 18px;
		box-shadow: var(--jika-shadow);
	}

	.admin-bar .jika-nav {
		top: 158px;
	}

	.jika-nav.is-open {
		display: block;
	}

	.jika-nav-list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.jika-nav-list a {
		display: block;
		padding: 12px;
		border-bottom: 1px solid var(--jika-border);
	}

	.jika-nav-list li:last-child a {
		border: 0;
	}

	.jika-hero-grid {
		grid-template-columns: 1fr;
		gap: 45px;
		padding-block: 70px;
	}

	.jika-login-card {
		max-width: 520px;
	}

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

	.jika-feature-image {
		max-width: 700px;
	}

	.jika-floating-stat {
		right: 20px;
	}

	.jika-heading-row,
	.jika-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.jika-timeline-history .jika-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.jika-timeline-history .jika-container::before {
		display: none;
	}

	.jika-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.jika-footer-grid > div:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.jika-container {
		width: min(calc(100% - 28px), var(--jika-container));
	}

	.jika-country {
		font-size: 11px;
	}

	.jika-topbar-contact a:first-child {
		font-size: 11px;
	}

	.jika-brand img,
	.jika-brand .custom-logo {
		width: 50px;
		height: 50px;
	}

	.jika-brand strong {
		font-size: 20px;
	}

	.jika-brand small {
		font-size: 9px;
	}

	.jika-hero {
		min-height: auto;
	}

	.jika-hero-grid {
		padding-block: 56px;
	}

	.jika-hero h1 {
		font-size: 41px;
	}

	.jika-hero-copy > p {
		font-size: 16px;
	}

	.jika-hero-actions,
	.jika-hero-trust,
	.jika-cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.jika-login-card {
		padding: 27px 23px;
	}

	.jika-section {
		padding: 75px 0;
	}

	.jika-section-heading {
		margin-bottom: 36px;
	}

	.jika-card-grid,
	.jika-timeline-history .jika-container,
	.jika-footer-grid {
		grid-template-columns: 1fr;
	}

	.jika-service-card {
		min-height: 280px;
	}

	.jika-feature {
		padding: 75px 0;
	}

	.jika-floating-stat {
		right: 10px;
		bottom: 10px;
	}

	.jika-page-hero {
		padding: 75px 0;
	}

	.jika-page-hero .jika-container {
		margin-inline: auto;
	}

	.jika-ceo-image > div {
		right: 23px;
		bottom: 23px;
		left: 23px;
	}

	.jika-footer-grid > div:first-child {
		grid-column: auto;
	}

	.jika-footer-bottom .jika-container {
		flex-direction: column;
	}
}
