/*!
 * PerkuAutoX — main.css
 * Sharp/modern light theme su accent shape'ais
 */

/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
	/* Šviesos paviršiai */
	--c-bg:          #f5f5f4;
	--c-bg-alt:      #ffffff;
	--c-bg-accent:   #ececeb;
	--c-surface:     #ffffff;
	--c-surface-2:   #ececeb;

	/* Tamsos paviršiai */
	--c-dark:        #0a0a0a;
	--c-dark-2:      #141414;
	--c-dark-3:      #1f1f1f;

	/* Tekstas */
	--c-ink:         #0a0a0a;
	--c-ink-2:       rgba(10,10,10,0.72);
	--c-ink-3:       rgba(10,10,10,0.52);
	--c-ink-mute:    rgba(10,10,10,0.38);

	/* Tekstas tamsiame fone */
	--c-on-dark:     #fafafa;
	--c-on-dark-2:   rgba(250,250,250,0.78);
	--c-on-dark-3:   rgba(250,250,250,0.55);

	/* Linijos */
	--c-line:        rgba(10,10,10,0.08);
	--c-line-strong: rgba(10,10,10,0.18);
	--c-line-dark:   rgba(255,255,255,0.10);
	--c-line-dark-2: rgba(255,255,255,0.20);

	/* Accent */
	--c-accent:      #FACC15;
	--c-accent-2:    #EAB308;
	--c-accent-soft: #fef9c3;
	--c-accent-ink:  #0a0a0a;

	/* Typografija */
	--ff-display: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
	--ff-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

	/* Layout */
	--container-w:        1240px;
	--container-w-narrow: 880px;
	--header-h:           80px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--c-ink);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-accent-2); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding-left: 1.25em; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-display);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 0.6em;
	letter-spacing: -0.02em;
	color: var(--c-ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p  { margin: 0 0 1em; color: var(--c-ink-2); }

::selection { background: var(--c-accent); color: var(--c-accent-ink); }

.skip-link {
	position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
	left: 1rem; top: 1rem; width: auto; height: auto; padding: .6rem 1rem;
	background: var(--c-accent); color: var(--c-accent-ink); z-index: 100;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
	width: 100%;
	max-width: var(--container-w);
	margin: 0 auto;
	padding: 0 24px;
}
.container--narrow { max-width: var(--container-w-narrow); }

@media (max-width: 720px) {
	.container { padding: 0 18px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	background: transparent;
	color: var(--c-ink);
	text-decoration: none;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .25s ease;
	white-space: nowrap;
}
.btn--lg { padding: 17px 30px; font-size: 15px; }

.btn--accent {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border-color: var(--c-accent);
	box-shadow: 0 4px 16px rgba(250,204,21,0.35);
}
.btn--accent:hover {
	background: var(--c-accent-2);
	border-color: var(--c-accent-2);
	color: var(--c-accent-ink);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(250,204,21,0.45);
}

.btn--dark {
	background: var(--c-dark);
	color: var(--c-on-dark);
	border-color: var(--c-dark);
}
.btn--dark:hover {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border-color: var(--c-accent);
	transform: translateY(-2px);
}

.btn--ghost {
	background: transparent;
	color: var(--c-ink);
	border-color: var(--c-line-strong);
}
.btn--ghost:hover {
	background: var(--c-dark);
	color: var(--c-on-dark);
	border-color: var(--c-dark);
	transform: translateY(-2px);
}

.section--dark .btn--ghost {
	color: var(--c-on-dark);
	border-color: var(--c-line-dark-2);
}
.section--dark .btn--ghost:hover {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border-color: var(--c-accent);
}

/* ==========================================================================
   Background shapes (per-section dekoracinis sluoksnis)
   ========================================================================== */
.bg-shapes {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}
.bg-shape { position: absolute; pointer-events: none; }

/* Blurred orb (šviesiose sekcijose — neutralus pilkas, tamsiose / hero — geltonas akcentas) */
.bg-shape--orb {
	border-radius: 50%;
	background: radial-gradient(circle, rgba(10,10,10,0.07) 0%, rgba(10,10,10,0) 70%);
	filter: blur(60px);
}
.hero .bg-shape--orb {
	background: radial-gradient(circle, rgba(250,204,21,0.35) 0%, rgba(250,204,21,0) 70%);
	filter: blur(55px);
}
.section--dark .bg-shape--orb {
	background: radial-gradient(circle, rgba(250,204,21,0.38) 0%, rgba(250,204,21,0) 70%);
	filter: blur(60px);
}

.bg-shape--orb-tr { width: 560px; height: 560px; top: -180px; right: -160px; }
.bg-shape--orb-bl { width: 440px; height: 440px; bottom: -160px; left: -140px; }
.bg-shape--orb-tl { width: 420px; height: 420px; top: -140px; left: -120px; }
.bg-shape--orb-br { width: 460px; height: 460px; bottom: -150px; right: -130px; }
.bg-shape--orb-r  { width: 380px; height: 380px; top: 30%; right: -120px; }
.bg-shape--orb-l  { width: 380px; height: 380px; top: 60%; left: -120px; }
.bg-shape--orb-c  { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.55; }

/* Big rotating X (šviesiose — pilkas, tamsiose — geltonas) */
.bg-shape--x {
	color: rgba(10,10,10, 0.05);
	width: 440px; height: 440px;
}
.hero .bg-shape--x { color: rgba(250,204,21, 0.10); }
.section--dark .bg-shape--x { color: rgba(250,204,21, 0.07); }
.bg-shape--x svg { width: 100%; height: 100%; }
.bg-shape--x-tr { top: -100px; right: -80px; }
.bg-shape--x-bl { bottom: -100px; left: -80px; }
.bg-shape--x-c  { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Small solid square — tik tamsiose sekcijose geltonas, kitur — pilkas */
.bg-shape--square {
	width: 80px; height: 80px;
	background: rgba(10,10,10,0.06);
}
.section--dark .bg-shape--square,
.hero .bg-shape--square { background: var(--c-accent); }
.bg-shape--square-sm { width: 40px; height: 40px; }
.bg-shape--square-tl { top: 60px; left: 5%; }
.bg-shape--square-br { bottom: 80px; right: 8%; }
.bg-shape--square-tr { top: 80px; right: 12%; }

/* Diagonal stripes — pilki šviesiose, geltoni tamsiose / hero */
.bg-shape--stripes {
	width: 160px; height: 160px;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(10,10,10,0.10) 0,
		rgba(10,10,10,0.10) 6px,
		transparent 6px,
		transparent 14px
	);
	opacity: 0.7;
}
.section--dark .bg-shape--stripes,
.hero .bg-shape--stripes {
	background-image: repeating-linear-gradient(
		45deg,
		var(--c-accent) 0,
		var(--c-accent) 6px,
		transparent 6px,
		transparent 14px
	);
	opacity: 0.5;
}
.bg-shape--stripes-bl { bottom: 40px; left: 4%; }
.bg-shape--stripes-tr { top: 50px; right: 6%; }

/* Dot grid pattern */
.bg-shape--dots {
	width: 200px; height: 200px;
	background-image: radial-gradient(circle, rgba(10,10,10,0.18) 1.5px, transparent 1.5px);
	background-size: 18px 18px;
}
.section--dark .bg-shape--dots {
	background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
}
.bg-shape--dots-tr { top: 80px; right: 10%; }
.bg-shape--dots-bl { bottom: 80px; left: 8%; }

/* Outline circle — pilkas šviesiose sekcijose, geltonas tamsiose */
.bg-shape--ring {
	width: 220px; height: 220px;
	border: 12px solid rgba(10,10,10,0.10);
	border-radius: 50%;
	opacity: 1;
}
.hero .bg-shape--ring,
.section--dark .bg-shape--ring {
	border-color: var(--c-accent);
	opacity: 0.22;
}
.bg-shape--ring-tr { top: -60px; right: -60px; }
.bg-shape--ring-bl { bottom: -60px; left: -60px; }

/* Subtle grid background */
.bg-shape--grid {
	inset: 0;
	background-image:
		linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.section--dark .bg-shape--grid {
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* Wrap content above shapes */
.hero, .section, .page-hero, .stats, .site-footer { position: relative; }
.hero > .container,
.section > .container,
.page-hero > .container,
.stats > .container,
.site-footer > .container { position: relative; z-index: 2; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--c-line);
	transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-bottom-color: var(--c-line-strong);
	box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: var(--header-h);
}

.site-branding { flex-shrink: 0; }
.site-branding a { display: inline-flex; align-items: center; }
.site-branding img,
.site-branding .custom-logo {
	height: 44px !important;
	width: auto !important;
	max-width: 220px;
}
.site-branding__text {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: var(--c-ink);
	text-decoration: none;
}
.site-branding__text .accent { color: var(--c-accent-2); }

.primary-nav { margin-left: auto; }
.primary-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
}
.primary-nav__list li { display: block; }
.primary-nav__list a {
	position: relative;
	display: block;
	padding: 10px 14px;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 14px;
	color: var(--c-ink-2);
	text-decoration: none;
	transition: color .15s ease;
}
.primary-nav__list a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 14px; right: 14px;
	height: 2px;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.primary-nav__list a:hover { color: var(--c-ink); }
.primary-nav__list a:hover::after { transform: scaleX(1); }

.site-header__cta {
	margin-left: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.01em;
	text-decoration: none;
	border: 2px solid var(--c-accent);
	transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
	box-shadow: 0 4px 14px rgba(250,204,21,0.35);
}
.site-header__phone:hover {
	background: var(--c-dark);
	color: var(--c-on-dark);
	border-color: var(--c-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--c-line-strong);
	color: var(--c-ink);
	padding: 8px;
	cursor: pointer;
}

@media (max-width: 960px) {
	.primary-nav {
		display: none;
	}
	.menu-toggle { display: none; }
	.site-header__cta {
		display: flex !important;
		margin-left: auto;
	}
	.site-header__phone {
		padding: 10px 14px;
		font-size: 13.5px;
		gap: 6px;
	}
	.site-header__phone svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 380px) {
	.site-header__phone {
		padding: 10px;
		font-size: 0;
	}
	.site-header__phone span { display: none; }
	.site-header__phone svg {
		width: 20px;
		height: 20px;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	background: var(--c-bg-alt);
	color: var(--c-ink);
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.18;
	z-index: 1;
}
.hero > .container { z-index: 3; }
.hero .bg-shapes { z-index: 2; }
.hero--no-image::before { display: none; }

.hero__inner {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 60px;
	padding: 100px 0 90px;
	align-items: center;
}
.hero__brand { display: inline-flex; margin-bottom: 28px; }
.hero__brand img { height: 56px; width: auto; }

.hero__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 24px;
	box-shadow: 0 4px 14px rgba(250,204,21,0.3);
}
.hero__title {
	font-size: clamp(2.2rem, 4.8vw, 3.6rem);
	margin: 0 0 22px;
	color: var(--c-ink);
}
.hero__title .accent { color: var(--c-accent-2); }
.hero__text {
	font-size: 17px;
	color: var(--c-ink-2);
	margin: 0 0 30px;
	max-width: 560px;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}
.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
.hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--c-ink-3);
}
.hero__meta-item svg { color: var(--c-accent-2); }

.hero__card {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	padding: 32px 30px;
	color: var(--c-ink);
	box-shadow: 0 24px 60px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}
.hero__card h3 { margin: 0 0 8px; font-size: 20px; }
.hero__card-lead { color: var(--c-ink-3); font-size: 14px; margin: 0 0 22px; }
.hero__card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.hero__card ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--c-ink-2); }
.hero__card ul li svg { color: var(--c-accent-2); flex-shrink: 0; margin-top: 2px; }

/* Hero card variant — su CF7 forma */
.hero__card--form .cf7-row { margin-bottom: 10px; }
.hero__card--form .cf7-row label {
	font-size: 12.5px;
	margin-bottom: 0;
}
.hero__card--form .cf7-row input[type="text"],
.hero__card--form .cf7-row input[type="email"],
.hero__card--form .cf7-row input[type="tel"],
.hero__card--form .cf7-row input[type="number"],
.hero__card--form .cf7-row select {
	padding: 11px 12px;
	font-size: 14px;
	margin-top: 4px;
}
.hero__card--form .cf7-row--check {
	margin-top: 6px;
	margin-bottom: 14px;
}
.hero__card--form .cf7-row--check label,
.hero__card--form .cf7-row--check .cf7-check-label {
	font-size: 12px !important;
	line-height: 1.45 !important;
}
.hero__card--form input[type="submit"] {
	width: 100%;
	margin-top: 4px;
}
.hero__card--form .wpcf7-response-output {
	margin: 12px 0 0 !important;
	font-size: 13px !important;
	padding: 10px 14px !important;
}

@media (max-width: 960px) {
	.hero__inner { grid-template-columns: 1fr; padding: 64px 0; gap: 36px; }
	.hero__brand img { height: 48px; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
	background: var(--c-dark);
	color: var(--c-on-dark);
	padding: 60px 0;
	overflow: hidden;
}
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.stats__item { text-align: center; }
.stats__num {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: clamp(2.2rem, 4.5vw, 3.2rem);
	color: var(--c-accent);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 10px;
}
.stats__lbl {
	font-size: 14px;
	color: var(--c-on-dark-2);
	letter-spacing: 0.02em;
}
@media (max-width: 720px) {
	.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
	padding: 100px 0;
	background: var(--c-bg);
	color: var(--c-ink);
	overflow: hidden;
}
.section--alt    { background: var(--c-bg-alt); }
.section--accent { background: var(--c-bg-accent); }
.section--dark   {
	background: var(--c-dark);
	color: var(--c-on-dark);
}
.section--dark h2, .section--dark h3 { color: var(--c-on-dark); }
.section--dark p, .section--dark li  { color: var(--c-on-dark-2); }

.section-head {
	max-width: 760px;
	margin: 0 auto 60px;
	text-align: center;
}
.section-head__eyebrow {
	display: inline-block;
	padding: 5px 12px;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.section--dark .section-head__eyebrow {
	background: transparent;
	color: var(--c-accent);
	border: 1px solid var(--c-line-dark-2);
}
.section-head h2 { margin: 0 0 14px; }
.section-head__lead { color: var(--c-ink-3); font-size: 17px; margin: 0; }
.section--dark .section-head__lead { color: var(--c-on-dark-3); }

@media (max-width: 720px) {
	.section { padding: 72px 0; }
	.section-head { margin-bottom: 44px; }
}

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.service-card {
	padding: 32px 26px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	color: var(--c-ink);
	transition: transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease, border-color .25s ease;
}
.service-card:hover {
	transform: translateY(-6px);
	border-color: var(--c-accent);
	box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.service-card__icon {
	display: inline-flex;
	width: 56px; height: 56px;
	align-items: center;
	justify-content: center;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	margin-bottom: 22px;
	box-shadow: 0 4px 14px rgba(250,204,21,0.35);
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p  { font-size: 14.5px; margin: 0; color: var(--c-ink-3); }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Process
   ========================================================================== */
.process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.process__step {
	padding: 28px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	transition: transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease;
}
.process__step:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.section--dark .process__step {
	background: var(--c-dark-2);
	border-color: var(--c-line-dark);
}
.section--dark .process__step:hover { border-color: var(--c-accent); }
.process__num {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 56px;
	line-height: 1;
	color: var(--c-accent);
	letter-spacing: -0.04em;
	margin-bottom: 16px;
}
.process__step h3 { margin: 0 0 8px; font-size: 19px; }
.process__step p  { margin: 0; font-size: 15px; }

@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; gap: 18px; } }

/* ==========================================================================
   Cities
   ========================================================================== */
.cities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.city-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 24px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	color: var(--c-ink);
	text-decoration: none;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 16px;
	transition: background .2s ease, color .2s ease, transform .25s cubic-bezier(.16,.84,.44,1), box-shadow .25s ease, border-color .2s ease;
}
.city-card:hover {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border-color: var(--c-accent);
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(250,204,21,0.30);
}
.city-card:hover .city-card__arrow svg { color: var(--c-accent-ink); }
.city-card__arrow svg { color: var(--c-accent-2); transition: color .15s ease; }

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

/* ==========================================================================
   Why us
   ========================================================================== */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.why-card {
	padding: 32px 28px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	transition: transform .3s cubic-bezier(.16,.84,.44,1), border-color .25s ease, box-shadow .3s ease;
}
.why-card:hover {
	transform: translateY(-6px);
	border-color: var(--c-accent);
	box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.section--dark .why-card {
	background: var(--c-dark-2);
	border-color: var(--c-line-dark);
}
.why-card__icon {
	display: inline-flex;
	width: 56px; height: 56px;
	align-items: center;
	justify-content: center;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	margin-bottom: 22px;
	box-shadow: 0 4px 14px rgba(250,204,21,0.35);
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p  { font-size: 15px; margin: 0; }

@media (max-width: 880px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Apie mus
   ========================================================================== */
.about__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 70px;
	align-items: center;
}
.about__media {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--c-surface-2);
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.about__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.about__media--placeholder {
	background: linear-gradient(135deg, #f0f0ef 0%, #e4e4e3 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.about__media-plc {
	text-align: center;
	color: var(--c-ink-3);
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.about__media-plc svg { color: var(--c-accent-2); opacity: 0.6; }
.about__media-plc span {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--c-ink-2);
	margin-top: 6px;
}
.about__media-plc small { font-size: 12px; }

.about__badge {
	position: absolute;
	bottom: -32px;
	right: -32px;
	background: var(--c-dark);
	color: var(--c-on-dark);
	padding: 24px 32px;
	box-shadow: 0 18px 38px rgba(0,0,0,0.20);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	z-index: 2;
	min-width: 180px;
	min-height: 120px;
}
.about__badge-num {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 42px;
	color: var(--c-accent);
	line-height: 1;
	letter-spacing: -0.02em;
}
.about__badge-lbl {
	font-size: 13px;
	line-height: 1.2;
	color: var(--c-on-dark-2);
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.about__content h2 { margin: 14px 0 18px; }
.about__features {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.about__features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15.5px;
	color: var(--c-ink-2);
}
.about__features li svg { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }
.about__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 880px) {
	.about__inner { grid-template-columns: 1fr; gap: 60px; }
	.about__badge { bottom: -22px; right: -22px; padding: 20px 24px; min-width: 150px; min-height: 100px; gap: 8px; }
	.about__badge-num { font-size: 34px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-wrap { position: relative; }

.testimonials-slider {
	overflow: hidden;
}
.testimonials-slider .swiper-slide {
	height: auto;
	display: flex;
}
.testimonials-slider .testimonial {
	width: 100%;
}

.testimonial {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease, border-color .25s ease;
}
.testimonial:hover {
	transform: translateY(-4px);
	border-color: var(--c-accent);
	box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.testimonial__photo {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--c-surface-2);
}
.testimonial__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s cubic-bezier(.16,.84,.44,1);
}
.testimonial:hover .testimonial__photo img { transform: scale(1.04); }

.testimonial__body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.testimonial__icon { display: inline-flex; color: var(--c-accent); margin-bottom: 14px; }
.stars { color: var(--c-accent); display: inline-flex; gap: 2px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; }
.testimonial__text { font-size: 16px; margin: 0 0 24px; flex: 1; color: var(--c-ink-2); }
.testimonial__meta { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial__avatar {
	width: 52px; height: 52px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 18px;
}
.testimonial__avatar--photo {
	padding: 0;
	background: var(--c-surface-2);
}
.testimonial__avatar--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.testimonial__name { font-weight: 700; font-family: var(--ff-display); font-size: 15px; color: var(--c-ink); }
.testimonial__sub  { color: var(--c-ink-3); font-size: 13px; }

/* Controls (nav + pagination) — žemiau kortelių, niekam neužlandos */
.testimonials-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-top: 44px;
}
.testimonials-nav-btn {
	width: 48px;
	height: 48px;
	background: var(--c-surface);
	color: var(--c-ink);
	border: 1.5px solid var(--c-line-strong);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.testimonials-nav-btn:hover:not(.swiper-button-disabled) {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border-color: var(--c-accent);
	transform: scale(1.05);
}
.testimonials-nav-btn.swiper-button-disabled {
	opacity: 0.30;
	cursor: not-allowed;
}
.testimonials-prev svg { transform: rotate(180deg); }

.testimonials-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.testimonials-pagination .swiper-pagination-bullet {
	width: 28px;
	height: 4px;
	border-radius: 0;
	background: var(--c-line-strong);
	opacity: 1;
	transition: background .2s ease, width .25s ease;
	margin: 0 !important;
	cursor: pointer;
}
.testimonials-pagination .swiper-pagination-bullet-active {
	background: var(--c-accent);
	width: 48px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	border: 1px solid var(--c-line);
	background: var(--c-surface);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--c-line-strong); }
.faq-item[aria-expanded="true"] {
	border-color: var(--c-accent);
	box-shadow: 0 8px 24px rgba(250,204,21,0.15);
}
.faq-item__btn {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	background: transparent;
	border: 0;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 16px;
	text-align: left;
	color: var(--c-ink);
}
.faq-item__icon {
	color: var(--c-accent-2);
	flex-shrink: 0;
	transition: transform .25s ease;
}
.faq-item[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.faq-item[aria-expanded="true"] .faq-item__panel { max-height: 600px; }
.faq-item__panel-inner {
	padding: 0 24px 22px;
	color: var(--c-ink-2);
	font-size: 15.5px;
	line-height: 1.65;
}

/* ==========================================================================
   Contact / form
   ========================================================================== */
.cta-form {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: start;
}
.section--dark .cta-form__info h2 { color: var(--c-on-dark); }
.section--dark .cta-form__info p  { color: var(--c-on-dark-2); }
.cta-contact-list {
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.cta-contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.cta-contact-list svg { color: var(--c-accent); flex-shrink: 0; margin-top: 4px; }
.cta-contact-list a { color: var(--c-ink); font-weight: 600; }
.cta-contact-list a:hover { color: var(--c-accent-2); }
.cta-contact-list small { display: block; color: var(--c-ink-3); font-size: 13px; margin-top: 2px; }
.section--dark .cta-contact-list a    { color: var(--c-on-dark); }
.section--dark .cta-contact-list a:hover { color: var(--c-accent); }
.section--dark .cta-contact-list small { color: var(--c-on-dark-3); }

.cta-form__form {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	padding: 36px 32px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
}
.cta-form__form h3 { margin: 0 0 6px; color: var(--c-ink); }
.cta-form__form > p { color: var(--c-ink-3); margin-bottom: 22px; }

.cta-form__form input[type="text"],
.cta-form__form input[type="email"],
.cta-form__form input[type="tel"],
.cta-form__form input[type="number"],
.cta-form__form input[type="url"],
.cta-form__form select,
.cta-form__form textarea {
	width: 100%;
	padding: 13px 14px;
	margin-bottom: 14px;
	background: var(--c-bg);
	color: var(--c-ink);
	border: 1.5px solid var(--c-line-strong);
	font-family: var(--ff-body);
	font-size: 15px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.cta-form__form input:focus,
.cta-form__form select:focus,
.cta-form__form textarea:focus {
	outline: 0;
	border-color: var(--c-accent);
	box-shadow: 0 0 0 3px rgba(250,204,21,0.2);
}
.cta-form__form label { color: var(--c-ink); font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.cta-form__form .wpcf7-submit,
.cta-form__form button[type="submit"],
.cta-form__form input[type="submit"] {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border: 2px solid var(--c-accent);
	padding: 14px 28px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .2s ease;
	box-shadow: 0 4px 16px rgba(250,204,21,0.35);
}
.cta-form__form .wpcf7-submit:hover,
.cta-form__form button[type="submit"]:hover,
.cta-form__form input[type="submit"]:hover {
	background: var(--c-dark);
	color: var(--c-on-dark);
	border-color: var(--c-dark);
	transform: translateY(-2px);
}

@media (max-width: 880px) {
	.cta-form { grid-template-columns: 1fr; gap: 32px; }
	.cta-form__form { padding: 28px 22px; }
}

/* ==========================================================================
   Page hero (sub-pages)
   ========================================================================== */
.page-hero {
	padding: 80px 0 60px;
	background: var(--c-bg-alt);
	border-bottom: 1px solid var(--c-line);
	overflow: hidden;
}
.page-hero h1 { margin: 0 0 14px; }
.page-hero__lead { font-size: 17px; color: var(--c-ink-2); margin: 0; max-width: 720px; }

.breadcrumbs { font-size: 13px; color: var(--c-ink-3); margin-bottom: 18px; }
.breadcrumbs a { color: var(--c-ink-3); }
.breadcrumbs a:hover { color: var(--c-accent-2); }
.breadcrumbs__sep { margin: 0 6px; color: var(--c-ink-mute); }

/* ==========================================================================
   Entry / single
   ========================================================================== */
.entry { padding: 60px 0; background: var(--c-bg); }
.entry__container {
	max-width: var(--container-w-narrow);
	margin: 0 auto;
	padding: 0 24px;
}
.entry .featured-img { margin: 0 0 32px; }
.entry-content { font-size: 16.5px; line-height: 1.75; color: var(--c-ink-2); }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; color: var(--c-ink); }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.1em; }
.entry-content a { color: var(--c-accent-2); text-decoration: underline; }
.entry-content blockquote {
	border-left: 4px solid var(--c-accent);
	padding: 8px 24px;
	font-style: italic;
	color: var(--c-ink-2);
	margin: 1.6em 0;
	background: var(--c-bg-accent);
}
.entry-content img { margin: 1.4em 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--c-dark);
	color: var(--c-on-dark-2);
	padding: 70px 0 0;
	overflow: hidden;
}
.site-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 50px;
}
.site-footer__brand {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 22px;
	color: var(--c-on-dark);
	margin-bottom: 14px;
}
.site-footer__brand .accent { color: var(--c-accent); }
.site-footer__desc { color: var(--c-on-dark-3); font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
	display: inline-flex;
	width: 38px; height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--c-line-dark-2);
	color: var(--c-on-dark-2);
	transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.site-footer__social a:hover {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border-color: var(--c-accent);
	transform: translateY(-2px);
}
.site-footer__col h4 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-on-dark);
	margin: 0 0 18px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col ul a { color: var(--c-on-dark-3); font-size: 14.5px; }
.site-footer__col ul a:hover { color: var(--c-accent); }
.site-footer__contact ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--c-on-dark-3);
	font-size: 14.5px;
}
.site-footer__contact svg { color: var(--c-accent); flex-shrink: 0; margin-top: 3px; }
.site-footer__contact a { color: var(--c-on-dark-2); }
.site-footer__contact a:hover { color: var(--c-accent); }

.site-footer__bottom {
	padding: 22px 0;
	border-top: 1px solid var(--c-line-dark);
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 13px;
	color: var(--c-on-dark-3);
	flex-wrap: wrap;
}
.site-footer__bottom a { color: var(--c-on-dark-3); }
.site-footer__bottom a:hover { color: var(--c-accent); }

@media (max-width: 960px) {
	.site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
}
@media (max-width: 520px) {
	.site-footer__top { grid-template-columns: 1fr; }
	.site-footer__bottom { flex-direction: column; gap: 8px; text-align: left; }
}

/* ==========================================================================
   Pagination / search-empty
   ========================================================================== */
.pagination { margin-top: 50px; display: flex; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex;
	padding: 10px 14px;
	margin: 0 3px;
	color: var(--c-ink-2);
	background: var(--c-surface);
	border: 1px solid var(--c-line-strong);
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 14px;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--c-accent); color: var(--c-accent-ink); border-color: var(--c-accent); }
.search-empty { text-align: center; padding: 60px 20px; color: var(--c-ink-2); }

/* ==========================================================================
   Mobile sticky CTA + Float WhatsApp + BDAR banner
   ========================================================================== */
.mobile-cta {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 60;
	background: var(--c-dark);
	border-top: 2px solid var(--c-accent);
	box-shadow: 0 -8px 24px rgba(0,0,0,.25);
}
.mobile-cta__inner { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 8px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	color: var(--c-on-dark);
	border-right: 1px solid var(--c-line-dark);
}
.mobile-cta__btn:last-child { border-right: 0; }
.mobile-cta__btn--phone { background: var(--c-accent); color: var(--c-accent-ink); }
.mobile-cta__btn--phone:hover { background: var(--c-accent-2); color: var(--c-accent-ink); }
.mobile-cta__btn--form:hover { background: var(--c-dark-3); color: var(--c-accent); }
.mobile-cta__btn svg { flex-shrink: 0; }

@media (max-width: 720px) {
	.has-mobile-cta .mobile-cta { display: block; }
	.has-mobile-cta { padding-bottom: 64px; }
	.has-mobile-cta .float-wa { bottom: 78px; }
	.has-mobile-cta .bdar-banner { bottom: 64px; }
}

.float-wa {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 55;
	width: 56px; height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #25D366;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,.15);
	transition: transform .15s ease, background .15s ease;
	animation: wa-pulse 2.5s ease-in-out infinite;
}
.float-wa:hover { background: #1ebe5b; color: #fff; transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
	0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,.15), 0 0 0 0 rgba(37,211,102,0.5); }
	70%      { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,.15), 0 0 0 16px rgba(37,211,102,0); }
}

.bdar-banner {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 65;
	background: var(--c-dark);
	color: var(--c-on-dark);
	border-top: 2px solid var(--c-accent);
	box-shadow: 0 -8px 24px rgba(0,0,0,.3);
	padding: 18px 0;
}
.bdar-banner__content { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.bdar-banner__text { flex: 1; min-width: 280px; font-size: 14px; color: var(--c-on-dark-2); line-height: 1.5; }
.bdar-banner__text a { color: var(--c-accent); text-decoration: underline; }
.bdar-banner__text a:hover { color: var(--c-on-dark); }
.bdar-banner__accept {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border: 2px solid var(--c-accent);
	padding: 12px 28px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	cursor: pointer;
	white-space: nowrap;
	transition: background .15s ease, color .15s ease;
}
.bdar-banner__accept:hover { background: var(--c-on-dark); color: var(--c-dark); border-color: var(--c-on-dark); }

@media (max-width: 720px) {
	.bdar-banner__content { flex-direction: column; align-items: stretch; gap: 14px; }
	.bdar-banner__accept { width: 100%; }
}

/* ==========================================================================
   Calculator
   ========================================================================== */
.calc { display: flex; flex-direction: column; gap: 14px; }
.calc__field { display: flex; flex-direction: column; gap: 6px; }
.calc__field label {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 13px;
	color: var(--c-ink-2);
	letter-spacing: 0.02em;
}
.calc__field input,
.calc__field select {
	padding: 12px 14px;
	border: 1.5px solid var(--c-line-strong);
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: var(--ff-body);
	font-size: 15px;
	transition: border-color .15s ease, box-shadow .15s ease;
	width: 100%;
}
.calc__field input:focus,
.calc__field select:focus { outline: 0; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(250,204,21,0.2); }
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc__btn {
	margin-top: 6px;
	padding: 14px 20px;
	background: var(--c-dark);
	color: var(--c-on-dark);
	border: 2px solid var(--c-dark);
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background .15s ease, color .15s ease, transform .15s ease;
	position: relative;
	overflow: hidden;
}
.calc__btn:hover { background: var(--c-accent); color: var(--c-accent-ink); border-color: var(--c-accent); transform: translateY(-2px); }
.calc__btn::after {
	content: '';
	position: absolute;
	top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
	transition: left .5s ease;
}
.calc__btn:hover::after { left: 100%; }
.calc__result {
	margin-top: 14px;
	padding: 18px;
	background: var(--c-bg-accent);
	border-left: 4px solid var(--c-accent);
}
.calc__result[hidden] { display: none; }
.calc__result-label {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 12px;
	color: var(--c-ink-3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.calc__price {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 28px;
	color: var(--c-ink);
	letter-spacing: -0.02em;
	margin: 4px 0 8px;
}
.calc__hint { font-size: 12px; color: var(--c-ink-3); margin: 0; }
.calc__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 14px;
	color: var(--c-ink);
	text-decoration: none;
	border-bottom: 2px solid var(--c-accent);
	padding-bottom: 2px;
}
.calc__cta:hover { color: var(--c-accent-2); }

/* ==========================================================================
   Paslaugos archive grid
   ========================================================================== */
.paslauga-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.paslauga-card {
	padding: 32px 28px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	text-decoration: none;
	color: var(--c-ink);
	display: flex;
	flex-direction: column;
	transition: transform .3s cubic-bezier(.16,.84,.44,1), border-color .25s ease, box-shadow .3s ease;
}
.paslauga-card:hover {
	transform: translateY(-6px);
	border-color: var(--c-accent);
	box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}
.paslauga-card__icon {
	display: inline-flex;
	width: 56px; height: 56px;
	align-items: center;
	justify-content: center;
	background: var(--c-accent);
	color: var(--c-accent-ink);
	margin-bottom: 24px;
	box-shadow: 0 4px 14px rgba(250,204,21,0.35);
}
.paslauga-card h3 { font-size: 20px; margin-bottom: 10px; }
.paslauga-card p  { font-size: 14.5px; margin: 0 0 16px; flex: 1; color: var(--c-ink-3); }
.paslauga-card__more {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-ink);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
}

@media (max-width: 1024px) { .paslauga-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
	.paslauga-grid { grid-template-columns: 1fr; }
	.calc__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GSAP pre-state (gsap.from atvers su animacijomis)
   ========================================================================== */
.gsap-fade {
	opacity: 0;
}
.gsap-fade-up {
	opacity: 0;
	transform: translateY(40px);
}
.gsap-fade-right {
	opacity: 0;
	transform: translateX(40px);
}
.gsap-fade-left {
	opacity: 0;
	transform: translateX(-40px);
}
.gsap-scale {
	opacity: 0;
	transform: scale(0.92);
}

/* Jei JS neveikia / disabled — viskas matoma */
.no-js .gsap-fade,
.no-js .gsap-fade-up,
.no-js .gsap-fade-right,
.no-js .gsap-fade-left,
.no-js .gsap-scale {
	opacity: 1;
	transform: none;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
	.gsap-fade, .gsap-fade-up, .gsap-fade-right, .gsap-fade-left, .gsap-scale {
		opacity: 1 !important;
		transform: none !important;
	}
	.float-wa { animation: none !important; }
}

/* ==========================================================================
   Multistep contact form
   ========================================================================== */
.msform { display: flex; flex-direction: column; }

/* Progress */
.msform__progress { margin-bottom: 28px; }
.msform__progress-track {
	height: 6px;
	background: var(--c-surface-2);
	overflow: hidden;
	position: relative;
}
.msform__progress-bar {
	height: 100%;
	background: var(--c-accent);
	width: 33.33%;
	transition: width .4s cubic-bezier(.16,.84,.44,1);
}
.msform__progress-bar[data-step-progress="1"] { width: 33.33%; }
.msform__progress-bar[data-step-progress="2"] { width: 66.66%; }
.msform__progress-bar[data-step-progress="3"] { width: 100%; }

.msform__progress-labels {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink-3);
}
.msform__progress-labels li { display: inline-flex; align-items: baseline; gap: 4px; transition: color .25s ease; }
.msform__progress-labels li span { color: var(--c-ink-mute); font-weight: 700; }
.msform__progress-labels li.is-active { color: var(--c-ink); }
.msform__progress-labels li.is-active span { color: var(--c-accent-2); }
.msform__progress-labels li.is-done { color: var(--c-ink-2); }
.msform__progress-labels li.is-done span { color: var(--c-accent); }

/* Step */
.msform__step {
	border: 0;
	margin: 0;
	padding: 0;
	display: none;
}
.msform__step.is-active {
	display: block;
	animation: msform-in 0.4s cubic-bezier(.16,.84,.44,1);
}
@keyframes msform-in {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}

.msform__step-head { margin: 0 0 20px; }
.msform__step-head h4 {
	margin: 0 0 6px;
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 20px;
	color: var(--c-ink);
	letter-spacing: -0.01em;
}
.msform__step-head p { margin: 0; color: var(--c-ink-3); font-size: 14px; }

/* Field row layout */
.cf7-row { margin: 0 0 14px; }
.cf7-row label {
	display: block;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 13px;
	color: var(--c-ink);
	margin-bottom: 0;
}
.cf7-row label .req { color: var(--c-accent-2); font-weight: 800; }
.cf7-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf7-row--three { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.cf7-row input[type="text"],
.cf7-row input[type="email"],
.cf7-row input[type="tel"],
.cf7-row input[type="number"],
.cf7-row select,
.cf7-row textarea {
	width: 100%;
	margin-top: 6px;
	padding: 13px 14px;
	background: var(--c-bg);
	color: var(--c-ink);
	border: 1.5px solid var(--c-line-strong);
	font-family: var(--ff-body);
	font-size: 15px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.cf7-row input[type="file"] {
	width: 100%;
	margin-top: 6px;
	padding: 10px 12px;
	background: var(--c-bg);
	color: var(--c-ink-2);
	border: 1.5px dashed var(--c-line-strong);
	font-family: var(--ff-body);
	font-size: 13.5px;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}
.cf7-row input[type="file"]:hover { border-color: var(--c-accent-2); background: var(--c-bg-accent); }
.cf7-row input[type="file"]::file-selector-button {
	background: var(--c-dark);
	color: var(--c-on-dark);
	border: 0;
	padding: 8px 14px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 12.5px;
	letter-spacing: 0.02em;
	cursor: pointer;
	margin-right: 12px;
	transition: background .15s ease, color .15s ease;
}
.cf7-row input[type="file"]::file-selector-button:hover { background: var(--c-accent); color: var(--c-accent-ink); }

/* Drag and Drop Multiple File Upload - Contact Form 7 (plugin) integracija su tema */
.cf7-row .codedropz-upload-wrapper { margin-top: 6px; }
.cf7-row .codedropz-upload-handler {
	border: 1.5px dashed var(--c-line-strong) !important;
	background: var(--c-bg);
	padding: 28px 20px;
	text-align: center;
	transition: border-color .15s ease, background .15s ease;
	cursor: pointer;
}
.cf7-row .codedropz-upload-handler:hover {
	border-color: var(--c-accent-2) !important;
	background: var(--c-bg-accent);
}
.cf7-row .codedropz-upload-inner h3 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 15px;
	margin: 0 0 6px;
	color: var(--c-ink);
}
.cf7-row .codedropz-upload-inner span,
.cf7-row .codedropz-upload-inner p {
	color: var(--c-ink-3);
	font-size: 13px;
	margin: 0 0 10px;
}
.cf7-row .cd-upload-btn,
.cf7-row a.cd-upload-btn {
	background: var(--c-dark) !important;
	color: var(--c-on-dark) !important;
	border: 0 !important;
	padding: 10px 20px !important;
	font-family: var(--ff-display) !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	letter-spacing: 0.02em !important;
	text-decoration: none !important;
	display: inline-block;
	transition: background .15s ease, color .15s ease;
}
.cf7-row .cd-upload-btn:hover,
.cf7-row a.cd-upload-btn:hover {
	background: var(--c-accent) !important;
	color: var(--c-accent-ink) !important;
}
.cf7-row .dnd-upload-status {
	margin-top: 10px;
	padding: 8px 12px;
	background: var(--c-surface-2);
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.cf7-row .dnd-upload-image {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	background: var(--c-surface-2);
	margin-top: 6px;
	font-size: 13px;
}
.cf7-row .dnd-progress-bar { background: var(--c-accent); height: 4px; }
.cf7-row .remove-file {
	color: #dc2626;
	font-size: 18px;
	margin-left: auto;
	cursor: pointer;
	font-weight: 700;
}

/* ==========================================================================
   Custom Multi-File Upload (savo sprendimas, be plugin'o)
   ========================================================================== */
.multiupload {
	margin-top: 6px;
	position: relative;
}
.multiupload__input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	opacity: 0;
}

.multiupload__drop {
	border: 1.5px dashed var(--c-line-strong);
	background: var(--c-bg);
	padding: 36px 24px;
	text-align: center;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
	user-select: none;
}
.multiupload__drop:hover,
.multiupload__drop.is-dragover {
	border-color: var(--c-accent);
	background: var(--c-bg-accent);
}
.multiupload__drop.is-dragover {
	transform: scale(1.01);
}
.multiupload__drop.is-full {
	opacity: 0.55;
	pointer-events: none;
}
.multiupload__drop-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--c-bg-accent);
	color: var(--c-accent-2);
	margin-bottom: 12px;
}
.multiupload__drop-icon svg { width: 28px; height: 28px; }
.multiupload__drop h4 {
	margin: 0 0 6px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 16px;
	color: var(--c-ink);
}
.multiupload__drop p {
	margin: 0 0 16px;
	color: var(--c-ink-3);
	font-size: 13px;
}
.multiupload__browse {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: var(--c-dark);
	color: var(--c-on-dark);
	border: 0;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.multiupload__browse:hover {
	background: var(--c-accent);
	color: var(--c-accent-ink);
}
.multiupload__counter {
	display: inline-block;
	margin-top: 12px;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 12px;
	color: var(--c-ink-3);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.multiupload__counter strong { color: var(--c-ink); }

.multiupload__list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 10px;
}
.multiupload__list:empty { display: none; }

.multiupload__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: var(--c-surface);
	border: 1.5px solid var(--c-line);
	transition: border-color .2s ease;
	position: relative;
}
.multiupload__item.is-done { border-color: #16a34a; }
.multiupload__item.is-error { border-color: #dc2626; }

.multiupload__thumb {
	width: 52px;
	height: 52px;
	background: var(--c-surface-2);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-ink-3);
	overflow: hidden;
}
.multiupload__thumb svg { width: 22px; height: 22px; }

.multiupload__info {
	flex: 1;
	min-width: 0;
}
.multiupload__name {
	display: block;
	font-family: var(--ff-display);
	font-size: 13px;
	font-weight: 600;
	color: var(--c-ink);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.multiupload__size {
	display: block;
	font-size: 11.5px;
	color: var(--c-ink-3);
	margin-top: 3px;
	font-family: var(--ff-body);
	letter-spacing: 0;
}
.multiupload__item.is-error .multiupload__size { color: #dc2626; }

.multiupload__progress {
	margin-top: 5px;
	height: 3px;
	background: var(--c-surface-2);
	overflow: hidden;
}
.multiupload__progress-bar {
	height: 100%;
	width: 0;
	background: var(--c-accent);
	transition: width .2s ease;
}
.multiupload__item.is-done .multiupload__progress,
.multiupload__item.is-error .multiupload__progress { display: none; }

.multiupload__status {
	display: none;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
}
.multiupload__item.is-done .multiupload__status {
	display: inline-flex;
	background: #16a34a;
	color: #fff;
}
.multiupload__item.is-error .multiupload__status {
	display: inline-flex;
	background: #dc2626;
	color: #fff;
}

.multiupload__remove {
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: var(--c-ink-3);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	transition: color .15s ease, background .15s ease;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.multiupload__remove:hover {
	color: #dc2626;
	background: rgba(220,38,38,0.10);
}

@media (max-width: 520px) {
	.multiupload__list { grid-template-columns: 1fr; }
	.multiupload__drop { padding: 26px 16px; }
	.multiupload__drop h4 { font-size: 15px; }
}
.cf7-row input::placeholder,
.cf7-row textarea::placeholder { color: var(--c-ink-mute); }
.cf7-row input:focus,
.cf7-row select:focus,
.cf7-row textarea:focus {
	outline: 0;
	border-color: var(--c-accent);
	box-shadow: 0 0 0 3px rgba(250,204,21,0.20);
}
.cf7-row input.is-invalid,
.cf7-row select.is-invalid,
.cf7-row textarea.is-invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

/* Checkbox row */
.cf7-row--check { margin-top: 4px; }
.cf7-row--check label,
.cf7-row--check .cf7-check-label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
	font-family: var(--ff-body) !important;
	font-weight: 500 !important;
	font-size: 13.5px !important;
	color: var(--c-ink-2) !important;
	line-height: 1.5 !important;
	cursor: pointer;
	margin: 0 !important;
}
.cf7-row--check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: var(--c-accent-2);
	cursor: pointer;
}
.cf7-row--check input[type="checkbox"].cf7-invalid {
	outline: 2px solid #dc2626;
	outline-offset: 2px;
}
.msform__check {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	font-weight: 500 !important;
	font-size: 13.5px !important;
	color: var(--c-ink-2) !important;
	line-height: 1.5;
	cursor: pointer;
}
.msform__check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: var(--c-accent-2);
	cursor: pointer;
}

/* Honeypot — hidden but accessible to bots */
.msform__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Navigation */
.msform__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}
.msform__back-arrow {
	display: inline-block;
	margin-right: 4px;
}
.msform__submit.is-loading {
	pointer-events: none;
	opacity: 0.7;
	position: relative;
}
.msform__submit.is-loading::before {
	content: '';
	display: inline-block;
	width: 14px; height: 14px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	margin-right: 8px;
	animation: msform-spin 0.7s linear infinite;
	vertical-align: middle;
}
@keyframes msform-spin { to { transform: rotate(360deg); } }

/* Result state */
.msform__result {
	padding: 24px 24px;
	margin-top: 16px;
	border-left: 4px solid var(--c-accent);
	background: var(--c-bg-accent);
	color: var(--c-ink);
	font-size: 15px;
	line-height: 1.55;
}
.msform__result.is-success { border-left-color: #16a34a; background: rgba(22,163,74,0.08); }
.msform__result.is-error   { border-left-color: #dc2626; background: rgba(220,38,38,0.08); }
.msform__result strong { font-family: var(--ff-display); display: block; margin-bottom: 4px; font-size: 16px; }

@media (max-width: 520px) {
	.cf7-row--two { grid-template-columns: 1fr; }
	.cf7-row--three { grid-template-columns: 1fr; }
	.msform__nav { flex-direction: column-reverse; align-items: stretch; }
	.msform__nav .btn { width: 100%; }
}

/* ==========================================================================
   CF7 multistep (kai forma įdėta per CF7 shortcode su .cf7-step struktūra)
   ========================================================================== */
.wpcf7-form .cf7-progress { margin-bottom: 28px; }
.cf7-progress-track {
	height: 6px;
	background: var(--c-surface-2);
	overflow: hidden;
	position: relative;
}
.cf7-progress-bar {
	height: 100%;
	background: var(--c-accent);
	width: 33.33%;
	transition: width .4s cubic-bezier(.16,.84,.44,1);
}
.cf7-progress-bar[data-step="1"] { width: 33.33%; }
.cf7-progress-bar[data-step="2"] { width: 66.66%; }
.cf7-progress-bar[data-step="3"] { width: 100%; }

.cf7-progress-labels {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink-3);
}
.cf7-progress-labels li { display: inline-flex; align-items: baseline; gap: 4px; transition: color .25s ease; }
.cf7-progress-labels li span { color: var(--c-ink-mute); font-weight: 700; }
.cf7-progress-labels li.is-active { color: var(--c-ink); }
.cf7-progress-labels li.is-active span { color: var(--c-accent-2); }
.cf7-progress-labels li.is-done { color: var(--c-ink-2); }
.cf7-progress-labels li.is-done span { color: var(--c-accent); }

.cf7-step { display: none; }
.cf7-step.is-active {
	display: block;
	animation: msform-in 0.4s cubic-bezier(.16,.84,.44,1);
}
.cf7-step-head { margin: 0 0 20px; }
.cf7-step-head h4 {
	margin: 0 0 6px;
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 20px;
	color: var(--c-ink);
	letter-spacing: -0.01em;
}
.cf7-step-head p { margin: 0; color: var(--c-ink-3); font-size: 14px; }

.cf7-step-nav {
	display: flex !important;
	flex-direction: row !important;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	flex-wrap: nowrap;
}
.cf7-step-nav .btn { flex: 0 0 auto; }

/* CF7 gali apvilkti turinį <p> tag'ais — neutralizuojam, kad neišlaužytų flex layout'o */
.cf7-step-nav > p,
.cf7-step > p {
	display: contents;
	margin: 0 !important;
	padding: 0 !important;
}
.cf7-step-next,
.cf7-step-prev {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	cursor: pointer;
}

/* CF7 invalid state for our multistep */
.wpcf7-form .cf7-invalid,
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 3px rgba(220,38,38,0.15) !important;
}
.wpcf7-form .wpcf7-not-valid-tip { color: #dc2626; font-size: 12.5px; margin-top: 4px; font-family: var(--ff-body); }
.wpcf7-form .wpcf7-response-output {
	border: 0 !important;
	padding: 14px 18px !important;
	margin: 18px 0 0 !important;
	border-left: 4px solid var(--c-accent) !important;
	background: var(--c-bg-accent);
	font-size: 14px;
}
.wpcf7-form.sent .wpcf7-response-output {
	border-left-color: #16a34a !important;
	background: rgba(22,163,74,0.10);
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
	border-left-color: #dc2626 !important;
	background: rgba(220,38,38,0.10);
}

/* Submit mygtukas iš [submit class:btn class:btn--accent class:btn--lg] */
.wpcf7-form input[type="submit"].btn--accent {
	background: var(--c-accent);
	color: var(--c-accent-ink);
	border: 2px solid var(--c-accent);
	box-shadow: 0 4px 16px rgba(250,204,21,0.35);
}
.wpcf7-form input[type="submit"].btn--accent:hover {
	background: var(--c-accent-2);
	border-color: var(--c-accent-2);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(250,204,21,0.45);
}
.wpcf7-form .wpcf7-spinner { display: none !important; }
.wpcf7-form.submitting input[type="submit"] {
	opacity: 0.7;
	pointer-events: none;
}

.cf7-row .req { color: var(--c-accent-2); font-weight: 800; }

@media (max-width: 520px) {
	.cf7-step-nav { gap: 8px; }
	.cf7-step-nav .btn { padding: 13px 16px; font-size: 13.5px; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.screen-reader-text { border:0; clip:rect(1px,1px,1px,1px); -webkit-clip-path:inset(50%); clip-path:inset(50%); height:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; width:1px; word-wrap:normal!important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
