/*
 * Service page body: the design source's rules for the sections the service
 * template renders.
 *
 * HOW THIS FILE WAS BUILT
 *
 * Mechanically, not by hand. Every rule in the source stylesheet whose selector
 * touches a class the service body actually uses was extracted IN SOURCE ORDER,
 * with its media context preserved and its declarations untouched. 215 source
 * rules matched; 39 of them were already taken verbatim by the shell in Slice 1
 * and are not repeated here. What is left is the 125 below.
 *
 * THE FILE SPLIT IS SAFE, AND THAT WAS CHECKED RATHER THAN ASSUMED
 *
 * Splitting one stylesheet across two files can invert its cascade: if the
 * shell held a source-LATER declaration and this file held an earlier one for
 * the same selector and property, loading this file second would let the older
 * rule win. Every (selector, media, property) shared between the two files was
 * compared against source order. Hazards found: zero. The shell took the last
 * declaration in every shared case, so "shell first, service second" reproduces
 * the source cascade exactly for this page.
 *
 * WHAT WAS CHANGED, AND NOTHING ELSE WAS
 *
 * 1. Grouped selectors were trimmed to the parts that can match this page --
 *    `.grid-2, .grid-3, .grid-4, .article-grid, .stats, .form-grid,
 *    .feature-list` becomes `.grid-3, .feature-list`. Each selector in a list
 *    is matched and weighted independently, so dropping ones that match nothing
 *    here cannot change what renders. The four affected rules say so inline.
 *
 * 2. Two rules that hide content until JavaScript runs are scoped to `html.js`
 *    -- see the block at the end of this file. Their appearance with scripting
 *    ON is byte for byte the source's.
 *
 * Nothing else. No breakpoint was merged, no threshold moved, no spacing
 * normalised, no component redrawn. The source uses seven breakpoints in this
 * body -- 1020, 760, 680, 420 and their combinations -- and all of them are
 * here as authored, including the ones that look redundant. Consolidation is
 * deferred until parity is proven, exactly as in Slice 1
 * (docs/implementation-architecture.md §6).
 *
 * Source: assets/css/style.css @ sha256:60c74b97...a206
 */

.section {
	padding: 104px 0;
}
.eyebrow {
	margin: 0 0 16px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .28em;
	text-transform: uppercase;
}
.lead {
	color: var(--muted);
	font-size: clamp(17px, 2vw, 21px);
}
.gradient-text {
	color: transparent;
	background: var(--gradient-ink);
	background-clip: text;
	-webkit-background-clip: text;
}
.section-heading {
	max-width: 780px;
	margin-bottom: 54px;
}
.section-heading.center {
	margin-inline: auto;
	text-align: center;
}
.grid {
	display: grid;
	gap: 24px;
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--white);
	box-shadow: 0 12px 35px rgba(15,23,42,.055);
	transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card-icon {
	width: 54px;
	height: 54px;
	margin-bottom: 25px;
	display: grid;
	place-items: center;
	border-radius: 17px;
	color: var(--white);
	background: var(--gradient);
	font-size: 23px;
	font-weight: 900;
}
.card p {
	color: var(--muted);
	font-size: 14px;
}
.split {
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	gap: 80px;
	align-items: center;
}
.faq {
	border-top: 1px solid var(--line);
}
.faq-item {
	border-bottom: 1px solid var(--line);
}
.faq-question {
	width: 100%;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 0;
	color: var(--ink);
	background: none;
	text-align: left;
	font-weight: 800;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	color: var(--muted);
	transition: max-height .35s;
}
.faq-item.open .faq-answer {
	max-height: 180px;
}
.faq-answer p {
	margin-top: 0;
	padding-right: 45px;
	padding-bottom: 24px;
}
.cta-band {
	padding: 70px;
	border-radius: 42px;
	color: var(--white);
	background: var(--gradient);
	box-shadow: var(--shadow);
	text-align: center;
}
.cta-band p {
	max-width: 680px;
	margin: 0 auto 28px;
	color: rgba(255,255,255,.78);
}
.page-hero {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;
	color: var(--white);
	background: var(--gradient);
	text-align: center;
}
.page-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	opacity: .18;
	background-image: radial-gradient(circle at 20% 20%, white 1px, transparent 1px);
	background-size: 24px 24px;
}
.page-hero h1 {
	max-width: 960px;
	margin-inline: auto;
}
.feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 14px;
	margin: 30px 0;
}
.feature {
	display: flex;
	gap: 12px;
	align-items: center;
	color: #435169;
	font-weight: 700;
}
.check {
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 50%;
	color: var(--blue);
	background: #edf4ff;
}
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .65s, transform .65s;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1020px) {
	/* trimmed from: .split,.contact-grid */
	.split {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	/* trimmed from: .grid-3,.article-grid */
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.section {
		padding: 75px 0;
	}
	/* trimmed from: .grid-2,.grid-3,.grid-4,.article-grid,.stats,.form-grid,.feature-list */
	.grid-3,
	.feature-list {
		grid-template-columns: 1fr;
	}
	.cta-band {
		padding: 48px 24px;
	}
	.page-hero {
		padding: 80px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
	}
}

.section {
	position: relative;
	padding: 128px 0;
}
.section-soft {
	background:
    radial-gradient(circle at 8% 12%, rgba(40, 117, 255, .08), transparent 22rem),
    radial-gradient(circle at 92% 88%, rgba(0, 194, 232, .07), transparent 24rem),
    #f6f8fc;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.eyebrow::before {
	width: 26px;
	height: 2px;
	border-radius: 99px;
	content: "";
	background: var(--accent);
}
.lead {
	color: #5f6d84;
	font-weight: 500;
	line-height: 1.8;
}
.section-heading {
	margin-bottom: 64px;
}
.card {
	position: relative;
	overflow: hidden;
	padding: 38px;
	border-color: rgba(228,234,244,.92);
	border-radius: 30px;
	box-shadow: 0 16px 45px rgba(11,20,40,.065);
}
.card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	content: "";
	background: var(--gradient);
	opacity: 0;
	transform: scaleX(.35);
	transition: opacity .3s, transform .3s;
}
.card::after {
	position: absolute;
	z-index: 0;
	top: -70px;
	right: -70px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	content: "";
	background: rgba(40,117,255,.055);
	transition: transform .4s;
}
.card > * {
	position: relative;
	z-index: 1;
}
.card:hover::before {
	opacity: 1;
	transform: scaleX(1);
}
.card:hover::after {
	transform: scale(1.45);
}
.card-icon {
	width: 58px;
	height: 58px;
	border-radius: 19px;
	box-shadow: 0 13px 30px rgba(40,117,255,.24);
	transition: transform .3s;
}
.faq-question {
	min-height: 78px;
	padding-inline: 22px;
	border-radius: 18px;
	transition: color .2s, background .2s;
}
.faq-question:hover,
.faq-item.open .faq-question {
	color: var(--blue);
	background: rgba(40,117,255,.055);
}
.faq-item {
	padding-block: 4px;
}
.cta-band {
	position: relative;
	overflow: hidden;
	padding: 88px 70px;
	border: 1px solid rgba(255,255,255,.18);
	background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,.18), transparent 22rem),
    radial-gradient(circle at 92% 88%, rgba(0,194,232,.32), transparent 24rem),
    linear-gradient(125deg, #104fb8, #147fe0 52%, #079fc9);
	box-shadow: 0 35px 90px rgba(40,117,255,.27);
}
.cta-band::after {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	opacity: .22;
	background-image: radial-gradient(circle, #fff 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(90deg, #000, transparent 45%, #000);
}
.cta-band > * {
	position: relative;
	z-index: 1;
}
.page-hero {
	padding: 130px 0 145px;
	border-radius: 0 0 48px 48px;
	background:
    radial-gradient(circle at 14% 24%, rgba(40,117,255,.42), transparent 28rem),
    radial-gradient(circle at 84% 72%, rgba(0,194,232,.28), transparent 28rem),
    linear-gradient(145deg, #050d1f, #0b1832 64%, #071225);
	box-shadow: 0 28px 80px rgba(5,13,31,.16);
}
.page-hero::before {
	opacity: .22;
	background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: radial-gradient(circle at center, #000, transparent 70%);
}
.page-hero h1 {
	font-size: clamp(48px, 6vw, 88px);
}
.feature {
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(11,20,40,.045);
}
.check {
	background: linear-gradient(135deg, rgba(40,117,255,.14), rgba(0,194,232,.13));
}

@media (max-width: 1020px) {
	.page-hero {
		padding: 105px 0 115px;
	}
}

@media (max-width: 680px) {
	.section {
		padding: 88px 0;
	}
	.card {
		padding: 31px 27px;
	}
	.section-heading {
		margin-bottom: 45px;
	}
	.cta-band {
		padding: 60px 23px;
		border-radius: 32px;
	}
	.page-hero {
		padding: 88px 0 96px;
		border-radius: 0 0 34px 34px;
	}
	.page-hero h1 {
		font-size: clamp(42px, 13vw, 62px);
	}
}

.answer-panel {
	align-self: stretch;
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(213,222,238,.9);
	border-radius: 30px;
	background:
    radial-gradient(circle at 100% 0, rgba(40,117,255,.11), transparent 17rem),
    #fff;
	box-shadow: 0 25px 70px rgba(11,20,40,.08);
}
.answer-block + .answer-block {
	margin-top: 26px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}
.answer-block h3 {
	margin-bottom: 8px;
	font-size: clamp(18px, 2vw, 23px);
}
.answer-block p {
	margin: 0;
	color: var(--muted);
}
.answer-block a {
	color: var(--primary);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(40,117,255,.25);
	text-underline-offset: 3px;
}
.faq-layout {
	align-items: start;
}

@media (max-width: 680px) {
	.answer-panel {
		padding: 28px 24px;
		border-radius: 24px;
	}
}

.section {
	padding: 96px 0;
}
.section-heading {
	margin-bottom: 50px;
}
/* trimmed from: .section-soft,.brand-section */
.section-soft {
	background: #f6f8fb;
}
.card {
	padding: 34px;
	border-radius: 22px;
	box-shadow: 0 10px 32px rgba(8,24,52,.055);
}
.card::after {
	display: none;
}
.card::before {
	height: 3px;
	opacity: .85;
	transform: scaleX(1);
}
.card:hover {
	border-color: rgba(66, 133, 244,.22);
	box-shadow: 0 20px 48px rgba(8,24,52,.105);
	transform: translateY(-4px);
}
.card-icon {
	border-radius: 14px;
	box-shadow: 0 10px 22px rgba(66, 133, 244,.2);
}
.card:hover .card-icon {
	transform: translateY(-2px);
}
.faq-question {
	border-radius: 12px;
}
.answer-panel {
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(8,24,52,.08);
}
.cta-band {
	padding: 68px 60px;
	border-radius: 28px;
	background:
    linear-gradient(125deg, #0c4eaf, #1379d8 58%, #08a9d3);
	box-shadow: 0 26px 65px rgba(16,105,208,.22);
}
.cta-band::after {
	opacity: .12;
}
.page-hero {
	padding: 118px 0 130px;
	border-radius: 0 0 30px 30px;
	background:
    radial-gradient(circle at 18% 25%, rgba(66, 133, 244,.34), transparent 27rem),
    radial-gradient(circle at 84% 72%, rgba(9,184,232,.2), transparent 27rem),
    linear-gradient(145deg, #050d1f, #0a1a35 68%, #071225);
	box-shadow: 0 22px 60px rgba(5,13,31,.13);
}

@media (max-width: 1020px) {
	.section {
		padding: 78px 0;
	}
	.section-heading {
		margin-bottom: 42px;
	}
	.split {
		gap: 34px;
	}
	.cta-band {
		padding: 58px 42px;
	}
	.page-hero {
		padding: 90px 0 98px;
	}
}

@media (max-width: 680px) {
	.section {
		padding: 64px 0;
	}
	.card {
		padding: 29px 25px;
	}
	.cta-band {
		padding: 48px 22px;
		border-radius: 22px;
	}
	.page-hero {
		padding: 70px 0 76px;
		border-radius: 0 0 24px 24px;
	}
	.section-heading {
		margin-bottom: 34px;
	}
}

.page-hero {
	position: relative;
	padding: clamp(72px, 7vw, 104px) 0 clamp(78px, 7.5vw, 112px);
	overflow: hidden;
	isolation: isolate;
	border-top: 1px solid rgba(26, 84, 152, .08);
	border-bottom: 1px solid rgba(26, 84, 152, .11);
	border-radius: 0;
	color: var(--navy);
	background:
    linear-gradient(118deg, rgba(66, 133, 244, .055), transparent 31%),
    linear-gradient(145deg, #f8fbff 0%, #fff 55%, #eefaff 100%);
	box-shadow: none;
	text-align: left;
}
.page-hero::before {
	position: absolute;
	z-index: -1;
	inset: auto -13vw -38vw auto;
	width: min(62vw, 840px);
	aspect-ratio: 1;
	border-radius: 50%;
	content: "";
	opacity: 1;
	pointer-events: none;
	background:
    radial-gradient(circle, rgba(0, 194, 255, .14) 0, rgba(66, 133, 244, .055) 38%, transparent 69%);
	mask-image: none;
}
.page-hero .eyebrow {
	grid-column: 1 / -1;
	width: fit-content;
	min-height: 0;
	margin: 0 0 28px;
	padding: 0;
	display: block;
	border: 0;
	border-radius: 0;
	color: var(--blue);
	background: none;
	font-size: 10px;
	letter-spacing: .22em;
}
.page-hero h1 {
	grid-column: 1;
	max-width: 820px;
	margin: 0;
	color: var(--navy);
	font-size: clamp(48px, 5vw, 68px);
	line-height: .99;
	letter-spacing: -0.0248em;
}
.page-hero .lead {
	grid-column: 2;
	max-width: 390px;
	margin: 0 0 3px;
	padding: 2px 0 2px 25px;
	border-left: 2px solid #19b8e7;
	color: #536079;
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.72;
}

@media (max-width: 1020px) {
	.page-hero {
		padding: 68px 0 76px;
	}
	.page-hero h1 {
		font-size: clamp(44px, 6.2vw, 61px);
	}
}

@media (max-width: 760px) {
	.page-hero {
		padding: 56px 0 62px;
	}
	.page-hero .eyebrow {
		margin-bottom: 22px;
		font-size: 10px;
	}
	.page-hero h1 {
		max-width: 620px;
		font-size: clamp(38px, 10.7vw, 52px);
		line-height: 1.02;
	}
	.page-hero .lead {
		max-width: 590px;
		margin-top: 25px;
		padding: 0;
		border-left: 0;
		color: #59657a;
		font-size: 16px;
		line-height: 1.65;
	}
}

@media (max-width: 420px) {
	.page-hero {
		padding: 50px 0 56px;
	}
	.page-hero h1 {
		font-size: clamp(36px, 10.2vw, 44px);
	}
	.page-hero .lead {
		margin-top: 21px;
		font-size: 15px;
	}
}

.page-hero {
	min-height: 390px;
	padding: 72px 0 78px;
	display: flex;
	align-items: center;
	border: 0;
	color: #fff;
	background:
    radial-gradient(900px 420px at 78% 12%, rgba(80, 114, 240, .26), transparent 62%),
    radial-gradient(1100px 560px at 18% 0%, rgba(0, 194, 255, .28), transparent 60%),
    linear-gradient(168deg, #071a36 0%, #050d1f 58%, #04101f 100%);
	box-shadow: none;
	text-align: center;
}
.page-hero::before {
	z-index: 0;
	inset: 0;
	width: auto;
	height: auto;
	aspect-ratio: auto;
	border-radius: 0;
	opacity: 1;
	background:
    radial-gradient(circle at 20% 22%, rgba(66, 133, 244, .3), transparent 31rem),
    radial-gradient(circle at 82% 78%, rgba(0, 194, 255, .2), transparent 27rem);
}
.page-hero .eyebrow {
	width: fit-content;
	min-height: 0;
	margin: 0 auto 20px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	color: #6ee4f5;
	background: none;
	font-size: 10px;
	letter-spacing: .22em;
}
.page-hero .eyebrow::before {
	width: 30px;
	height: 2px;
	display: block;
	flex: 0 0 auto;
	border-radius: 999px;
	content: "";
	background: linear-gradient(90deg, #478dff, #42def3);
}
.page-hero h1 {
	max-width: 980px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(46px, 5vw, 66px);
	line-height: 1.01;
	letter-spacing: -0.0225em;
}
.page-hero .gradient-text {
	background-image: linear-gradient(105deg, #00C2FF, #4285F4 52%, #A9A3FF);
}
.page-hero .lead {
	max-width: 760px;
	margin: 22px auto 0;
	padding: 0;
	border: 0;
	color: rgba(255, 255, 255, .76);
	font-size: clamp(16px, 1.45vw, 19px);
	line-height: 1.68;
}

@media (max-width: 760px) {
	.page-hero {
		min-height: 0;
		padding: 58px 0 64px;
	}
	.page-hero .eyebrow {
		margin-bottom: 18px;
		font-size: 10px;
	}
	.page-hero .eyebrow::before {
		width: 24px;
	}
	.page-hero h1 {
		max-width: 620px;
		font-size: clamp(37px, 10.2vw, 47px);
		line-height: 1.03;
	}
	.page-hero .lead {
		max-width: 570px;
		margin-top: 19px;
		color: rgba(255, 255, 255, .75);
		font-size: 15px;
		line-height: 1.62;
	}
}

@media (max-width: 420px) {
	.page-hero {
		padding: 52px 0 57px;
	}
	.page-hero h1 {
		font-size: clamp(35px, 9.8vw, 42px);
	}
}

/*
 * ---------------------------------------------------------------------------
 * The no-JavaScript floor. ADDITIVE: not one rule above was modified.
 *
 * Two of the source's rules hide content and rely on JavaScript to bring it
 * back — `.reveal` sits at opacity 0 until an IntersectionObserver adds
 * `.visible`, and `.faq-answer` sits at max-height 0 until the accordion adds
 * `.open`. With scripting off, the source renders a service page whose body is
 * invisible and whose FAQ answers cannot be read at all. That is a defect in
 * the source, not a design decision, and this slice is where the FAQ is built,
 * so this is where it gets a floor.
 *
 * Written as an override for `html:not(.js)` rather than by scoping the source
 * rules themselves, because scoping them would have changed their specificity
 * and quietly broken the cascade they sit in: `html.js .reveal` (0,2,1) would
 * outweigh `.reveal.visible` (0,2,0), and the reveal animation would never
 * complete. An override that cannot match when scripting is on cannot affect
 * the rendered result when scripting is on.
 *
 * `js` is added to <html> from the document head — see aithena_service_scripting_flag()
 * in inc/service.php for why it is inline and why it is not in the footer script.
 * ---------------------------------------------------------------------------
 */
html:not(.js) .reveal {
	opacity: 1;
	transform: none;
}
html:not(.js) .faq-answer {
	max-height: none;
}

/*
 * ---------------------------------------------------------------------------
 * The extended variant (Slice 4A).
 *
 * The second split section and the related-services band reuse the design's
 * existing primitives entirely -- .split, .answer-panel, .feature-list,
 * .section-soft, .section-heading, .grid-3, .card, .card-icon -- so they need
 * no new layout rules at all. That was checked rather than assumed: of the 28
 * classes those two page bodies use, exactly ONE had no rule in any stylesheet
 * this theme ships.
 *
 * That one is .text-link, the "Spoznajte storitev →" link inside a related
 * card. Copied verbatim from the design source, in source order, including its
 * split across two declarations. The source's other .text-link rules are all
 * scoped to components these pages do not contain -- .service-card,
 * .services-showcase, .brand-section, .spotlight, .text-link-large -- and are
 * deliberately not transcribed.
 *
 * Source: assets/css/style.css @ sha256:60c74b97...a206
 * ---------------------------------------------------------------------------
 */
.text-link {
	color: var(--accent-ink);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .005em;
	text-transform: none;
}
.text-link {
	display: inline-flex;
	margin-top: 8px;
	align-items: center;
	transition: gap .2s, color .2s;
}
.text-link:hover {
	color: var(--navy);
}

/*
 * ---------------------------------------------------------------------------
 * The intro split's image column (Slice 4B).
 *
 * One service page in the design puts an image where the other fourteen put
 * the answer panel. It needs one class, `.content-image`, and nothing else --
 * the column, the grid and the responsive stacking are all the existing
 * `.split` behaviour.
 *
 * Both source declarations are kept, in source order, including the fact that
 * the second overrides the first's border-radius and box-shadow. That is the
 * cascade the design actually renders (26px, not 38px), and flattening it here
 * would be editing the design while claiming to transcribe it.
 *
 * The second rule's selector is trimmed from `.image-card, .content-image`:
 * `.image-card` appears nowhere on any service page, and selectors in a list
 * are matched and weighted independently, so dropping it cannot change what
 * renders.
 *
 * Note what these rules mean for the image: `width: 100%` over a `min-height`
 * with `object-fit: cover` means the BOX is the design's and the crop is the
 * CSS's. The file's own 3:2 ratio is visible at one measured width (768) and
 * cropped at the other three. That is why the stored value is which image to
 * show, not how to frame it.
 *
 * Source: assets/css/style.css @ sha256:60c74b97...a206
 * ---------------------------------------------------------------------------
 */
.content-image {
	width: 100%;
	min-height: 450px;
	object-fit: cover;
	border-radius: 38px;
	box-shadow: var(--shadow);
}
/* trimmed from: .image-card, .content-image */
.content-image {
	border: 0;
	border-radius: 26px;
	box-shadow: 0 24px 60px rgba(8,24,52,.13);
}
