/* Atvyko V3 Landing — modern landing page, Atvido brand */

.atvyko-v3 {
	--v3-green: #4BB64A;
	--v3-green-dark: #3d9c3c;
	--v3-navy: #263E56;
	--v3-tint: #F7FFF6;
	/* Warm ivory for alternating section panels — reads friendlier than
	   the mint tint, which stays on the hero gradient. */
	--v3-surface: #F8F6F2;
	--v3-surface-line: rgba(38, 62, 86, 0.07);
	--v3-muted: rgba(38, 62, 86, 0.68);
	--v3-radius: 28px;
	--v3-grad-text: linear-gradient(92deg, #4BB64A 0%, #6fce5a 55%, #2fb894 100%);
	font-family: "Poppins", sans-serif;
	color: var(--v3-navy);
	overflow-x: hidden;
}

.atvyko-v3 h1,
.atvyko-v3 h2,
.atvyko-v3 h3 {
	color: var(--v3-navy);
	margin: 0;
}

.v3-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.v3-section {
	padding: 60px 0;
}

.v3-section--tint {
	background: var(--v3-surface);
	border: 1px solid var(--v3-surface-line);
	border-radius: 40px;
	margin: 8px clamp(8px, 2vw, 32px);
}

.v3-h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.v3-section-sub {
	color: var(--v3-muted);
	font-size: 18px;
	margin: 12px 0 0;
}

/* Reveal on scroll */
.v3-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.v3-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Buttons */
a.v3-btn,
a.v3-btn:hover,
a.v3-btn:focus,
.atvyko-v3 .v3-btn {
	text-decoration: none !important;
}

.v3-btn {
	display: inline-block;
	padding: 15px 32px;
	border-radius: 14px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	cursor: pointer;
}

.v3-btn--primary {
	background: linear-gradient(180deg, #58c257 0%, #41a940 100%);
	color: #fff !important;
	box-shadow: 0 8px 24px rgba(75, 182, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.v3-btn--primary:hover {
	background: linear-gradient(180deg, #4eb84d 0%, #3a9c39 100%);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(75, 182, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.v3-btn:active {
	transform: translateY(0) scale(0.97);
}

.v3-btn--ghost {
	background: transparent;
	color: var(--v3-navy) !important;
	border: 2px solid rgba(38, 62, 86, 0.15);
}

.v3-btn--ghost:hover {
	border-color: var(--v3-navy);
	transform: translateY(-2px);
}

.v3-btn--light {
	background: #fff;
	color: var(--v3-navy) !important;
	margin-top: 8px;
}

.v3-btn--light:hover {
	transform: translateY(-2px);
}

.v3-btn--xl {
	padding: 18px 44px;
	font-size: 18px;
}

/* Hero */
.v3-hero {
	position: relative;
	background:
		radial-gradient(1100px 560px at 85% -10%, rgba(75, 182, 74, 0.11), transparent 62%),
		radial-gradient(900px 480px at -12% 45%, rgba(198, 160, 106, 0.09), transparent 62%),
		linear-gradient(180deg, var(--v3-surface) 0%, #ffffff 100%);
	padding: 84px 0 56px;
}

.v3-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(38, 62, 86, 0.1) 1px, transparent 1px);
	background-size: 24px 24px;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
	mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
	pointer-events: none;
}

.v3-hero__grid {
	position: relative;
	z-index: 1;
}

.v3-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}

.v3-badge {
	display: inline-block;
	background: rgba(75, 182, 74, 0.12);
	color: var(--v3-green-dark);
	font-size: 14px;
	font-weight: 600;
	padding: 8px 18px;
	border-radius: 999px;
	margin-bottom: 24px;
}

.v3-ticker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(75, 182, 74, 0.1);
	border: 1px solid rgba(75, 182, 74, 0.22);
	color: var(--v3-green-dark);
	font-size: 13.5px;
	font-weight: 600;
	padding: 8px 16px 8px 10px;
	border-radius: 999px;
	margin-bottom: 24px;
}

.v3-ticker__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: rgba(75, 182, 74, 0.15);
	border-radius: 50%;
	flex: 0 0 auto;
}

.v3-ticker__icon svg {
	width: 12px;
	height: 12px;
}

.v3-ticker__text {
	transition: opacity 0.25s ease;
}

.v3-ticker__text.is-fading {
	opacity: 0;
}

.v3-hero__title {
	font-size: clamp(38px, 5.5vw, 68px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.v3-accent {
	display: block;
	background: var(--v3-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.v3-hero__sub {
	font-size: 19px;
	color: var(--v3-muted);
	margin: 24px 0 32px;
	max-width: 480px;
	line-height: 1.6;
}

.v3-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.v3-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 32px;
}

.v3-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 4px 14px rgba(38, 62, 86, 0.08);
	border-radius: 999px;
	padding: 5px 13px 5px 6px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--v3-navy);
}

.v3-chip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	flex: 0 0 auto;
	background: rgba(75, 182, 74, 0.14);
	color: var(--v3-green-dark);
	border-radius: 50%;
}

.v3-chip__icon svg {
	width: 12px;
	height: 12px;
}

.v3-hero__visual {
	position: relative;
}

.v3-hero__blob {
	position: absolute;
	inset: 10% 5%;
	background: radial-gradient(circle at 30% 30%, rgba(75, 182, 74, 0.25), transparent 70%);
	filter: blur(40px);
	z-index: 0;
}

.v3-hero__img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	animation: v3-float 6s ease-in-out infinite;
}

@keyframes v3-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

.v3-float-card {
	position: absolute;
	z-index: 2;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(38, 62, 86, 0.16);
	padding: 12px 18px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.v3-float-card strong {
	font-size: 14px;
	color: var(--v3-navy);
}

.v3-float-card span {
	font-size: 12px;
	color: var(--v3-muted);
}

.v3-float-card--1 {
	top: 8%;
	left: -4%;
	animation: v3-float 7s ease-in-out infinite 0.5s;
}

.v3-float-card--2 {
	bottom: 10%;
	right: -2%;
	animation: v3-float 8s ease-in-out infinite 1s;
}

.v3-float-card--2 strong {
	color: var(--v3-green-dark);
}

/* Logo marquee */
.v3-marquee-section {
	padding: 30px 0 34px;
}

.v3-marquee-label {
	text-align: center;
	color: var(--v3-muted);
	font-size: 15px;
	font-weight: 500;
	margin: 0 0 28px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.v3-marquee {
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.v3-marquee__track {
	display: flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: v3-marquee 45s linear infinite;
}

.v3-marquee:hover .v3-marquee__track {
	animation-play-state: paused;
}

@keyframes v3-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.v3-marquee__item {
	flex: 0 0 auto;
	padding-right: 0;
}

.atvyko-v3 .v3-marquee__item img {
	height: 34px;
	width: auto;
	max-width: 130px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.55;
	transition: filter 0.25s ease, opacity 0.25s ease;
}

.atvyko-v3 .v3-marquee__item img:hover {
	filter: none;
	opacity: 1;
}

/* Steps */
.v3-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
}

.v3-step {
	position: relative;
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: var(--v3-radius);
	padding: 36px 28px 32px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(38, 62, 86, 0.12);
}

.v3-step__num {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(75, 182, 74, 0.12);
	color: var(--v3-green-dark);
	font-weight: 700;
	border-radius: 50%;
}

.atvyko-v3 .v3-step img {
	height: 96px;
	width: auto;
	margin-bottom: 20px;
}

.v3-step h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.v3-step p {
	color: var(--v3-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* Bento cards */
.v3-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
}

.v3-card {
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: var(--v3-radius);
	padding: 36px 32px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(38, 62, 86, 0.14);
}

.v3-card h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.3;
}

.v3-card p {
	color: var(--v3-muted);
	font-size: 15.5px;
	line-height: 1.65;
	margin: 0 0 8px;
}

.v3-card--wide {
	grid-column: span 2;
}

.v3-card--navy {
	background:
		radial-gradient(520px 300px at 88% -25%, rgba(75, 182, 74, 0.4), transparent 60%),
		linear-gradient(135deg, #2b4763 0%, #1b2e43 100%);
	border-color: rgba(255, 255, 255, 0.08);
}

.v3-card--navy h3,
.v3-card--navy p {
	color: #fff;
}

.v3-card--navy p {
	opacity: 0.75;
}

.v3-card--green {
	background:
		radial-gradient(400px 240px at 90% -20%, rgba(255, 255, 255, 0.25), transparent 60%),
		linear-gradient(135deg, #53c052 0%, #3fa53e 100%);
	border-color: rgba(255, 255, 255, 0.2);
}

.v3-card--green h3,
.v3-card--green p {
	color: #fff;
}

.v3-card--green p {
	opacity: 0.9;
}

.v3-card--photo {
	position: relative;
	padding: 0;
	overflow: hidden;
	min-height: 300px;
}

.atvyko-v3 .v3-card--photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.v3-card--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(135deg, rgba(75, 182, 74, 0.4) 0%, rgba(47, 184, 148, 0.12) 30%, transparent 55%),
		linear-gradient(180deg, transparent 35%, rgba(16, 27, 40, 0.88) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	border-radius: inherit;
	pointer-events: none;
}

.v3-card--photo__caption {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 2;
	padding: 28px 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.v3-card--photo__caption strong::before {
	content: "";
	display: block;
	width: 44px;
	height: 4px;
	border-radius: 999px;
	background: var(--v3-grad-text);
	margin-bottom: 12px;
}

.v3-card--photo__caption strong {
	color: #fff;
	font-size: 19px;
	font-weight: 600;
}

.v3-card--photo__caption span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14.5px;
	line-height: 1.5;
}

.v3-bento > .v3-reveal:nth-child(4) {
	transition-delay: 0.12s;
}

.v3-card__giant {
	display: block;
	font-size: clamp(56px, 7vw, 96px);
	font-weight: 700;
	color: var(--v3-green);
	line-height: 1;
	margin-top: 8px;
}

/* Stats */
.v3-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.v3-stat__num {
	display: block;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 700;
	background: var(--v3-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1.1;
}

.v3-stat__num--text {
	font-size: clamp(28px, 3.5vw, 40px);
	padding-top: 10px;
}

.v3-stat__label {
	display: block;
	margin-top: 8px;
	color: var(--v3-muted);
	font-size: 15px;
	font-weight: 500;
}

/* Carousel */
.v3-carousel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.v3-carousel-nav {
	display: flex;
	gap: 10px;
}

.v3-carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(38, 62, 86, 0.15);
	background: #fff;
	color: var(--v3-navy);
	font-size: 18px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.v3-carousel-btn:hover {
	background: var(--v3-green);
	border-color: var(--v3-green);
	color: #fff;
	transform: translateY(-2px);
}

.v3-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 8px;
}

.v3-carousel::-webkit-scrollbar {
	display: none;
}

.v3-carousel__item {
	flex: 0 0 300px;
	scroll-snap-align: start;
}

.v3-carousel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 26px;
	background: rgba(75, 182, 74, 0.12);
	border-radius: 16px;
	margin-bottom: 18px;
}

.v3-carousel__item h3 {
	font-size: 19px;
}

.v3-link {
	color: var(--v3-green-dark) !important;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
}

.v3-link:hover {
	text-decoration: underline;
}

.v3-section--slim {
	padding: 34px 0;
}

/* Video card + story pair */
.v3-watch {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 56px;
	align-items: center;
}

.v3-watch__copy p {
	color: var(--v3-muted);
	font-size: 16px;
	line-height: 1.7;
	margin: 14px 0 0;
}

.v3-watch__copy .v3-btn {
	margin-top: 26px;
}

.v3-video {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 3px;
	width: 100%;
	aspect-ratio: 3 / 4;
	padding: 28px 84px 26px 26px;
	text-align: left;
	border-radius: 26px;
	overflow: hidden;
	cursor: pointer;
	background: #16273a;
	box-shadow: 0 22px 56px rgba(38, 62, 86, 0.24);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-video:hover {
	transform: translateY(-3px);
	box-shadow: 0 28px 66px rgba(38, 62, 86, 0.3);
}

.atvyko-v3 .v3-video__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.v3-video:hover .v3-video__thumb {
	transform: scale(1.04);
}

.v3-video__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11, 20, 33, 0.35) 0%, transparent 30%, rgba(11, 20, 33, 0.82) 100%),
		linear-gradient(140deg, rgba(75, 182, 74, 0.25) 0%, transparent 50%);
	pointer-events: none;
}

.v3-video__eyebrow {
	position: absolute;
	top: 22px;
	left: 24px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.v3-video__title {
	position: relative;
	margin-top: 0;
	font-size: 19px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.v3-video__meta {
	position: relative;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.78);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.v3-video__play {
	position: absolute;
	right: 22px;
	bottom: 22px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 0;
	background: var(--v3-green);
	box-shadow: 0 8px 22px rgba(75, 182, 74, 0.5);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.v3-video:hover .v3-video__play {
	transform: scale(1.08);
	background: var(--v3-green-dark);
}

.v3-video__play span {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent #fff;
	margin-left: 4px;
}

/* Playing: card becomes a normal 16:9 player spanning the row */
.v3-video.is-playing {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 9;
	max-width: 860px;
	margin: 0 auto;
	padding: 0;
	cursor: default;
	background: #000;
	line-height: 0;
}

.v3-video.is-playing:hover {
	transform: none;
}

.v3-video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 900px) {
	.v3-watch {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.v3-video {
		max-width: 380px;
		margin: 0 auto;
	}
}

/* Savings slider */
.v3-savings {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.v3-savings__slider {
	margin-top: 32px;
}

.atvyko-v3 .v3-savings__slider input[type="range"] {
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	height: 8px;
	border-radius: 999px;
	background: rgba(75, 182, 74, 0.2);
	outline-offset: 4px;
	cursor: pointer;
}

.atvyko-v3 .v3-savings__slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--v3-green);
	border: 4px solid #fff;
	box-shadow: 0 4px 14px rgba(38, 62, 86, 0.3);
	cursor: grab;
}

.atvyko-v3 .v3-savings__slider input[type="range"]::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--v3-green);
	border: 4px solid #fff;
	box-shadow: 0 4px 14px rgba(38, 62, 86, 0.3);
	cursor: grab;
}

.v3-savings__count {
	display: block;
	margin-top: 14px;
	color: var(--v3-muted);
	font-size: 15px;
}

.v3-savings__count strong {
	color: var(--v3-green-dark);
	font-size: 18px;
}

.v3-savings__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(38, 62, 86, 0.08);
	font-size: 15.5px;
}

.v3-savings__row--total {
	border-bottom: none;
	font-weight: 700;
	font-size: 18px;
}

.v3-savings__row--total strong {
	color: var(--v3-green);
	font-size: 24px;
}

.v3-savings__note {
	margin: 16px 0 0;
	font-size: 12.5px;
	color: var(--v3-muted);
	line-height: 1.5;
}

/* Shipping calculator (reused homepage widget, reskinned) */
.v3-shipcalc .atvyko-price-calculator,
.v3-shipcalc .heading--bg {
	background: transparent;
	padding-top: 0;
	padding-bottom: 0;
}

.v3-shipcalc .atvyko-price-calculator h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--v3-navy);
}

.v3-shipcalc .heading__excerpt p {
	color: var(--v3-muted);
	font-size: 18px;
}

.v3-shipcalc .price-calculator {
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: var(--v3-radius);
	padding: 32px;
	box-shadow: 0 12px 40px rgba(38, 62, 86, 0.07);
}

.v3-shipcalc .form__group h4 {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--v3-navy);
	margin: 0 0 8px;
}

.v3-shipcalc .price-calculator input[type="text"],
.v3-shipcalc .price-calculator input[type="number"],
.v3-shipcalc .price-calculator select {
	height: auto;
	min-height: 62px;
	background: #fff;
	border: 1.5px solid rgba(38, 62, 86, 0.12);
	border-radius: 16px;
	padding: 16px 18px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: var(--v3-navy);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v3-shipcalc .price-calculator input:focus,
.v3-shipcalc .price-calculator select:focus {
	outline: none;
	border-color: var(--v3-green);
	box-shadow: 0 0 0 4px rgba(75, 182, 74, 0.16);
}

.v3-shipcalc .select2-container .select2-choice {
	display: flex;
	align-items: center;
	height: 62px;
	line-height: 1.3;
	border: 1.5px solid rgba(38, 62, 86, 0.12);
	border-radius: 16px;
	background: #fff;
	box-shadow: none;
	padding: 0 42px 0 18px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: var(--v3-navy);
}

/* The markup wraps the label in newlines; keep it on one tidy line */
.v3-shipcalc .select2-container .select2-chosen {
	display: block;
	width: 100%;
	margin-right: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.v3-shipcalc .select2-container .select2-choice .select2-arrow {
	background: transparent;
	border-left: none;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	bottom: 0;
	height: auto;
	right: 8px;
	width: 30px;
}

/* Visible chevron so the field reads as a dropdown */
.v3-shipcalc .select2-container .select2-choice .select2-arrow b {
	display: block;
	width: 100%;
	height: 20px;
	/* select2's retina sprite is declared !important, so match it */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23263E56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 12px 8px !important;
	transition: transform 0.2s ease;
}

.v3-shipcalc .select2-container.select2-dropdown-open .select2-choice b {
	transform: rotate(180deg);
}

.v3-shipcalc .select2-container.select2-dropdown-open .select2-choice {
	border-color: var(--v3-green);
	box-shadow: 0 0 0 4px rgba(75, 182, 74, 0.16);
}

.v3-shipcalc .price-calculator .form__group-dimensions input[type="number"] {
	padding-left: 6px;
	padding-right: 6px;
	text-align: center;
}

.v3-units-toggle {
	display: inline-flex;
	gap: 4px;
	background: rgba(38, 62, 86, 0.06);
	border-radius: 12px;
	padding: 4px;
	margin-bottom: 18px;
}

.v3-units-toggle button {
	border: 0;
	background: transparent;
	border-radius: 9px;
	padding: 8px 18px;
	font-family: "Poppins", sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--v3-muted);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.v3-units-toggle button.is-active {
	background: #fff;
	color: var(--v3-green-dark);
	box-shadow: 0 2px 8px rgba(38, 62, 86, 0.12);
}

.v3-shipcalc .quick-choice {
	border-radius: 14px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v3-shipcalc .quick-choice:hover {
	transform: translateY(-2px);
}

/* ---- From / Destination as a route pair ---- */
.v3-shipcalc .form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 26px;
	align-items: start;
}

/* Wide variant (V3): full-width card, one row — From | Destination | Weight */
.atvyko-v3 .v3-shipcalc--wide .atvyko-price-calculator .col,
.atvyko-v3 .v3-shipcalc--wide .atvyko-price-calculator .col--4,
.atvyko-v3 .v3-shipcalc--wide .atvyko-price-calculator .col--6,
.atvyko-v3 .v3-shipcalc--wide .atvyko-price-calculator .col--12 {
	max-width: none;
}

.v3-shipcalc--wide .price-calculator {
	padding: 30px 34px;
}

.v3-shipcalc--wide .main-button {
	display: block;
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
}

.v3-shipcalc--wide .form {
	grid-template-columns: 1fr 1fr 1fr;
}

.v3-shipcalc .form > * {
	grid-column: 1 / -1;
}

.v3-shipcalc .form > .form__group:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.v3-shipcalc .form > .form__group:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
	position: relative;
}

.v3-shipcalc--wide .form > .v3-dims-link {
	grid-column: 1 / 3;
}

.v3-shipcalc--wide .form > [data-js="weight"] {
	grid-column: 3;
	grid-row: 1;
}

.v3-shipcalc--wide .form > .v3-dims-link {
	grid-column: 1 / 3;
	grid-row: 2;
	margin: 16px 0 0;
}

.v3-shipcalc--wide .form > [data-js="dimensions"] {
	grid-row: 3;
}

/* Arrow sitting in the gap between the two fields */
.v3-shipcalc .form > .form__group:nth-child(2)::before {
	content: "→";
	position: absolute;
	left: -26px;
	top: 56px;
	width: 26px;
	transform: translateY(-50%);
	text-align: center;
	color: var(--v3-green-dark);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	pointer-events: none;
}

/* Origin tiles: real cards, no raw checkbox */
.v3-shipcalc .form__group-quick-choices {
	margin: 0;
	gap: 10px;
}

.v3-shipcalc .quick-choice-wrap--flags {
	width: auto;
	flex: 1 1 0;
	padding: 0;
}

.v3-shipcalc .quick-choice-wrap--flags .quick-choice {
	height: auto;
	min-height: 62px;
	margin: 0;
	padding: 14px 16px;
	border-radius: 16px;
	font-size: 15.5px;
	justify-content: center;
	background: #fff;
	border: 1.5px solid rgba(38, 62, 86, 0.12);
	font-weight: 600;
	color: var(--v3-navy);
}

.v3-shipcalc .quick-choice-wrap--flags .quick-choice::before {
	display: none;
}

.v3-shipcalc .quick-choice-wrap--flags .quick-choice:hover {
	border-color: rgba(75, 182, 74, 0.45);
	transform: none;
}

.v3-shipcalc .quick-choice-wrap--flags .quick-choice.active {
	background: rgba(75, 182, 74, 0.08);
	border-color: var(--v3-green);
	box-shadow: 0 0 0 3px rgba(75, 182, 74, 0.14);
}

.v3-shipcalc .quick-choice-wrap--flags .quick-choice img {
	width: 22px;
	height: 22px;
	margin-right: 10px;
	border-radius: 3px;
}

@media (max-width: 900px) {
	.v3-shipcalc--wide .form {
		grid-template-columns: 1fr 1fr;
	}

	.v3-shipcalc--wide .form > [data-js="weight"] {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.v3-shipcalc--wide .form > .v3-units-toggle,
	.v3-shipcalc--wide .form > .v3-dims-link,
	.v3-shipcalc--wide .form > [data-js="dimensions"] {
		grid-column: 1 / -1;
		grid-row: auto;
	}
}

@media (max-width: 700px) {
	.v3-shipcalc .form {
		grid-template-columns: 1fr;
	}

	.v3-shipcalc .form > .form__group:nth-child(1),
	.v3-shipcalc .form > .form__group:nth-child(2) {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.v3-shipcalc .form > .form__group:nth-child(2)::before {
		display: none;
	}
}

.v3-shipcalc .main-button {
	background: linear-gradient(180deg, #58c257 0%, #41a940 100%);
	color: #fff !important;
	border-radius: 14px;
	padding: 15px 32px;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 8px 24px rgba(75, 182, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.v3-shipcalc .main-button:hover {
	background: linear-gradient(180deg, #4eb84d 0%, #3a9c39 100%);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(75, 182, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Faint flight path behind the section — parcel leaves, plane flies */
.v3-shipcalc {
	position: relative;
}

.v3-shipcalc::before {
	content: "";
	position: absolute;
	top: 18px;
	right: 0;
	width: 420px;
	height: 180px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='180' viewBox='0 0 420 180' fill='none'%3E%3Cpath d='M12 168C90 156 190 120 300 40' stroke='%234BB64A' stroke-width='3' stroke-linecap='round' stroke-dasharray='7 12'/%3E%3Ccircle cx='12' cy='168' r='7' fill='%234BB64A'/%3E%3Cpath d='M300 52 L352 24 L300 -4 L302 20 L326 24 L302 28 Z' fill='%234BB64A'/%3E%3C/svg%3E") no-repeat center / contain;
	opacity: 0.13;
	pointer-events: none;
	z-index: 0;
}

.v3-shipcalc > .v3-container {
	position: relative;
	z-index: 1;
}

@media (max-width: 900px) {
	.v3-shipcalc::before {
		width: 240px;
		height: 110px;
		opacity: 0.09;
	}
}

/* Our own minimal section heading replaces the inherited homepage copy */
.v3-shipcalc__head {
	text-align: center;
	margin-bottom: 26px;
}

.v3-shipcalc .atvyko-price-calculator h2,
.v3-shipcalc .heading__excerpt {
	display: none;
}

/* Single centered column: hide the illustration, center heading and form */
.v3-shipcalc .heading__image {
	display: none;
}

.v3-shipcalc .atvyko-price-calculator > .row {
	display: block;
}

.v3-shipcalc .atvyko-price-calculator .col,
.v3-shipcalc .atvyko-price-calculator .col--4,
.v3-shipcalc .atvyko-price-calculator .col--6,
.v3-shipcalc .atvyko-price-calculator .col--12 {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
	padding: 0;
	float: none;
}

.v3-shipcalc .atvyko-price-calculator h2,
.v3-shipcalc .heading__excerpt {
	text-align: center;
}

.v3-shipcalc .price-calculator {
	margin-top: 32px;
}

.v3-shipcalc .atvyko-shipping-results {
	margin-top: 24px;
}

.v3-shipcalc .atvyko-shipping-result {
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: 20px;
	box-shadow: 0 12px 32px rgba(38, 62, 86, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v3-shipcalc .atvyko-shipping-result:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(38, 62, 86, 0.12);
}

.v3-shipcalc .atvyko-shipping-result .price {
	color: var(--v3-green-dark);
	font-weight: 700;
}

/* Staged loading checklist */
.v3-shipcalc .wpcf7-spinner {
	display: none !important;
}

.v3-loading {
	display: none;
	flex-direction: column;
	align-items: center;
	padding: 44px 24px 20px;
}

.v3-loading.is-active {
	display: flex;
}

.v3-loading__dots {
	display: flex;
	gap: 10px;
	margin-bottom: 32px;
}

.v3-loading__dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--v3-green);
	animation: v3-dot 1.2s ease-in-out infinite;
}

.v3-loading__dots span:nth-child(2) {
	animation-delay: 0.15s;
}

.v3-loading__dots span:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes v3-dot {
	0%, 60%, 100% { transform: translateY(0); opacity: 0.55; }
	30% { transform: translateY(-9px); opacity: 1; }
}

.v3-loading__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.v3-loading__steps li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 16.5px;
	color: var(--v3-navy);
	opacity: 0.3;
	transition: opacity 0.4s ease;
}

.v3-loading__steps li.is-active {
	opacity: 0.85;
}

.v3-loading__steps li.is-done {
	opacity: 1;
}

.v3-loading__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 2px solid rgba(75, 182, 74, 0.5);
	color: transparent;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.v3-loading__check svg {
	width: 13px;
	height: 13px;
}

.v3-loading__steps li.is-active .v3-loading__check {
	color: var(--v3-green);
	animation: v3-check-pulse 1.2s ease-in-out infinite;
}

.v3-loading__steps li.is-done .v3-loading__check {
	background: var(--v3-green);
	border-color: var(--v3-green);
	color: #fff;
}

@keyframes v3-check-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(75, 182, 74, 0.3); }
	50% { box-shadow: 0 0 0 6px rgba(75, 182, 74, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.v3-loading__dots span,
	.v3-loading__steps li.is-active .v3-loading__check {
		animation: none !important;
	}
}

/* Units toggle sits inside the weight field */
.v3-shipcalc [data-js="weight"] {
	position: relative;
}

.v3-weight-controls {
	position: absolute;
	right: 8px;
	bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.v3-shipcalc .v3-weight-controls .v3-units-toggle {
	margin: 0;
	padding: 3px;
	border-radius: 11px;
	background: rgba(38, 62, 86, 0.07);
}

.v3-shipcalc .v3-weight-controls .v3-units-toggle button {
	padding: 6px 11px;
	font-size: 12.5px;
	border-radius: 8px;
	min-width: 34px;
}

.v3-step-btn {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(38, 62, 86, 0.12);
	background: #fff;
	border-radius: 10px;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	color: var(--v3-navy);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.v3-step-btn:hover {
	background: rgba(75, 182, 74, 0.09);
	border-color: var(--v3-green);
	color: var(--v3-green-dark);
}

.v3-step-btn:active {
	transform: scale(0.94);
}

.atvyko-v3 .v3-shipcalc [data-js="weight"] input[type="number"] {
	padding-right: 186px;
	-moz-appearance: textfield;
}

.atvyko-v3 .v3-shipcalc [data-js="weight"] input[type="number"]::-webkit-outer-spin-button,
.atvyko-v3 .v3-shipcalc [data-js="weight"] input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

@media (max-width: 560px) {
	/* Controls drop below the field so the number keeps full width */
	.v3-weight-controls {
		position: static;
		justify-content: flex-end;
		margin-top: 10px;
	}

	.v3-step-btn {
		width: 44px;
		height: 44px;
	}

	.atvyko-v3 .v3-shipcalc [data-js="weight"] input[type="number"] {
		padding-right: 18px;
	}
}

/* Trust badges under the calculator */
.v3-calc-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 22px;
	margin-top: 22px;
}

.v3-calc-badges span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--v3-muted);
}

.v3-calc-badges svg {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	color: var(--v3-green-dark);
}

/* Inside the white card: separated by a hairline rule */
.v3-calc-badges--inside {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(38, 62, 86, 0.08);
}

/* Weight-only quick mode */
.v3-shipcalc .v3-dims-link {
	display: block;
	background: none;
	border: 0;
	padding: 0;
	margin: -8px 0 18px;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--v3-green-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	text-align: left;
}

.v3-shipcalc .v3-dims-link:hover {
	color: var(--v3-green);
}

.v3-results-note {
	text-align: center;
	font-size: 13px;
	color: var(--v3-muted);
	margin: -6px auto 18px;
	max-width: 860px;
}

/* Currency toggle above results */
.v3-currency-toggle {
	display: none;
	width: max-content;
	margin: 28px auto 16px;
}

.v3-currency-toggle.is-shown {
	display: flex;
}

.v3-currency-toggle button {
	min-width: 44px;
}

/* Results as a clean single-column list */
.v3-shipcalc .shipping-results-wrap {
	display: block;
	max-width: 860px;
	margin: 0 auto;
}

.v3-shipcalc .shipping-results-wrap > .col {
	width: 100% !important;
	max-width: 100% !important;
	flex: none;
	margin: 0 0 14px;
	padding: 0;
}

.v3-shipcalc .atvyko-shipping-result.v3-row {
	display: flex;
	align-items: center;
	gap: 20px;
	text-align: left;
	padding: 22px 26px;
	border: 1px solid rgba(38, 62, 86, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.v3-shipcalc .atvyko-shipping-result.v3-row:hover {
	transform: translateY(-2px);
	border-color: rgba(75, 182, 74, 0.4);
	box-shadow: 0 14px 34px rgba(38, 62, 86, 0.1);
}

.v3-shipcalc .v3-row .logo {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(38, 62, 86, 0.04);
	border: 1px solid rgba(38, 62, 86, 0.06);
	border-radius: 14px;
	overflow: hidden;
}

.atvyko-v3 .v3-shipcalc .v3-row .logo img {
	max-height: 30px;
	width: auto;
	max-width: 40px;
	object-fit: contain;
}

.v3-shipcalc .v3-row .v3-row__logo--fallback {
	color: rgba(38, 62, 86, 0.35);
}

.v3-shipcalc .v3-row .v3-row__logo--fallback svg {
	width: 24px;
	height: 24px;
}

.v3-shipcalc .v3-row .text {
	flex: 1 1 auto;
	margin: 0;
	text-align: left;
}

.v3-shipcalc .v3-row .text p {
	text-align: left;
}

.v3-shipcalc .v3-row .v3-row__title {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-weight: 600;
	font-size: 16.5px;
	color: var(--v3-navy);
	margin: 0;
}

.v3-row__meta {
	font-size: 13px;
	color: var(--v3-muted);
	margin: 4px 0 0;
}

.v3-shipcalc .v3-row__features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin: 10px 0 0;
	padding-top: 10px;
	border-top: 1px solid rgba(38, 62, 86, 0.07);
	font-size: 11px;
	color: rgba(38, 62, 86, 0.75);
	text-align: left;
}

.v3-shipcalc .v3-row__features span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px 2px 6px;
	background: rgba(38, 62, 86, 0.04);
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: 999px;
	font-weight: 500;
	font-size: 10px;
	color: rgba(38, 62, 86, 0.6);
}

.v3-shipcalc .v3-row__features svg {
	width: 10px;
	height: 10px;
	color: rgba(38, 62, 86, 0.45);
	flex: 0 0 auto;
}

.v3-shipcalc .v3-row > .price {
	margin: 0 0 0 auto;
	font-size: 22px;
	font-weight: 700;
	color: var(--v3-green-dark);
	white-space: nowrap;
}

.v3-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
}

.v3-tag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.v3-tag--cheap {
	background: rgba(75, 182, 74, 0.12);
	color: var(--v3-green-dark);
}

.v3-tag--fast {
	background: rgba(38, 62, 86, 0.08);
	color: var(--v3-navy);
}

@media (max-width: 700px) {
	.v3-shipcalc .atvyko-shipping-result.v3-row {
		flex-wrap: wrap;
		gap: 12px;
	}

	.v3-shipcalc .v3-row > .price {
		width: 100%;
		text-align: right;
	}
}

/* Reviews */
.v3-review__stars {
	color: var(--v3-green);
	font-size: 18px;
	letter-spacing: 3px;
	display: block;
	margin-bottom: 14px;
}

.v3-review p {
	font-size: 15px;
	line-height: 1.65;
}

.v3-review__name {
	display: block;
	margin-top: 14px;
	font-weight: 600;
	font-size: 14px;
	color: var(--v3-navy);
}

.v3-reviews-more {
	margin-top: 28px;
	text-align: center;
}

/* FAQ */
.v3-faq-container {
	max-width: 820px;
}

.v3-faq {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.v3-faq__item {
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: 18px;
	padding: 0;
	overflow: hidden;
	transition: box-shadow 0.25s ease;
}

.v3-faq__item[open] {
	box-shadow: 0 12px 32px rgba(38, 62, 86, 0.1);
}

.v3-faq__item summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 56px 22px 26px;
	font-weight: 600;
	font-size: 17px;
	color: var(--v3-navy);
	position: relative;
}

.v3-faq__item summary::-webkit-details-marker {
	display: none;
}

.v3-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(75, 182, 74, 0.12);
	color: var(--v3-green-dark);
	border-radius: 50%;
	font-size: 20px;
	font-weight: 500;
	transition: transform 0.25s ease;
}

.v3-faq__item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.v3-faq__a {
	padding: 0 26px 24px;
}

.v3-faq__a p {
	margin: 0;
	color: var(--v3-muted);
	font-size: 15.5px;
	line-height: 1.7;
}

/* Sticky CTA */
.v3-sticky-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 90;
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.v3-sticky-cta.is-shown {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

/* Feature showcase carousel with mini product mockups */
.v3-carousel__item.v3-feature {
	flex: 0 0 400px;
	display: flex;
	flex-direction: column;
}

.v3-feature h3 {
	font-size: 20px;
}

.v3-feature p {
	font-size: 14.5px;
}

.v3-feature .v3-mock {
	margin-top: auto;
}

.v3-mock {
	background: linear-gradient(180deg, #fbfffa 0%, #ffffff 100%);
	border: 1px solid rgba(38, 62, 86, 0.1);
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(38, 62, 86, 0.08);
	padding: 18px 20px;
	margin-top: 18px;
	font-size: 13px;
}

.v3-mock__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--v3-muted);
	margin-bottom: 10px;
}

.v3-mock__label em {
	font-style: normal;
	margin-left: auto;
	color: var(--v3-navy);
	font-weight: 700;
	font-size: 13px;
}

/* Address mockup */
.v3-mock--address strong {
	display: block;
	font-size: 26px;
	font-weight: 700;
	color: var(--v3-navy);
	letter-spacing: -0.02em;
}

.v3-mock__muted {
	display: block;
	color: var(--v3-muted);
	margin: 4px 0 14px;
}

.v3-mock__chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(75, 182, 74, 0.12);
	color: var(--v3-green-dark);
	font-weight: 600;
	font-size: 12.5px;
	padding: 6px 14px;
	border-radius: 999px;
}

.v3-mock__chip::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--v3-green);
}

/* Photos mockup */
.v3-mock__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.v3-mock__thumbs span {
	aspect-ratio: 1;
	border-radius: 10px;
	background:
		radial-gradient(120% 120% at 20% 15%, rgba(255, 255, 255, 0.5), transparent 50%),
		linear-gradient(135deg, #d8efd4 0%, #b3dfae 100%);
	border: 1px solid rgba(75, 182, 74, 0.25);
}

.v3-mock__thumbs span:nth-child(2) {
	background:
		linear-gradient(180deg, transparent 38%, rgba(38, 62, 86, 0.28) 40%, transparent 42%, transparent 55%, rgba(38, 62, 86, 0.28) 57%, transparent 59%),
		linear-gradient(135deg, #e6f4e3 0%, #c9e8c5 100%);
}

/* Storage mockup */
.v3-mock__bars {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 46px;
}

.v3-mock__bars span {
	flex: 1;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, #58c257, #41a940);
	opacity: 0.85;
}

.v3-mock__bars span:nth-child(1) { height: 40%; }
.v3-mock__bars span:nth-child(2) { height: 65%; }
.v3-mock__bars span:nth-child(3) { height: 50%; }
.v3-mock__bars span:nth-child(4) { height: 80%; }
.v3-mock__bars span:nth-child(5) { height: 58%; }
.v3-mock__bars span:nth-child(6) { height: 92%; opacity: 1; }
.v3-mock__bars span:nth-child(7) { height: 70%; }
.v3-mock__bars span:nth-child(8) { height: 44%; }
.v3-mock__bars span:nth-child(9) { height: 76%; }
.v3-mock__bars span:nth-child(10) { height: 55%; }
.v3-mock__bars span:nth-child(11) { height: 88%; }
.v3-mock__bars span:nth-child(12) { height: 62%; }
.v3-mock__bars span:nth-child(13) { height: 48%; background: rgba(38, 62, 86, 0.15); }
.v3-mock__bars span:nth-child(14) { height: 68%; background: rgba(38, 62, 86, 0.15); }

/* Checklist mockup */
.v3-mock--checks {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.v3-mock--checks span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--v3-navy);
	font-weight: 500;
}

.v3-mock--checks i {
	font-style: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(75, 182, 74, 0.14);
	color: var(--v3-green-dark);
	font-size: 11px;
	font-weight: 700;
}

/* Customs mockup */
.v3-mock--customs {
	display: flex;
	align-items: center;
	gap: 16px;
}

.v3-mock__doc {
	flex: 1;
}

.v3-mock__doc b {
	display: block;
	font-size: 12.5px;
	color: var(--v3-navy);
	margin-bottom: 8px;
}

.v3-mock__doc u {
	display: block;
	height: 5px;
	border-radius: 3px;
	background: rgba(38, 62, 86, 0.1);
	margin-bottom: 6px;
}

.v3-mock__doc u:last-child {
	width: 60%;
}

.v3-mock__ok {
	font-style: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 2px dashed rgba(75, 182, 74, 0.5);
	color: var(--v3-green-dark);
	font-weight: 700;
}

.v3-feature .v3-link {
	display: inline-block;
	margin-top: 14px;
}

@media (max-width: 560px) {
	.v3-carousel__item.v3-feature {
		flex-basis: 300px;
	}
}

/* Country landing: static price table */
.v3-country-hero {
	max-width: 720px;
}

.v3-ptable-wrap {
	margin-top: 36px;
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(38, 62, 86, 0.07);
	overflow-x: auto;
}

.v3-ptable {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	color: var(--v3-navy);
}

.v3-ptable th,
.v3-ptable td {
	text-align: left;
	padding: 15px 24px;
	border-bottom: 1px solid rgba(38, 62, 86, 0.07);
}

.v3-ptable th {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--v3-muted);
}

.v3-ptable tbody tr:last-child td {
	border-bottom: none;
}

.v3-ptable tbody tr:hover {
	background: rgba(75, 182, 74, 0.04);
}

.v3-ptable__price {
	font-weight: 700;
	color: var(--v3-green-dark);
	white-space: nowrap;
}

/* Country landing: breadcrumbs, eyebrows, route card */
.v3-crumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--v3-muted);
	margin-bottom: 20px;
}

.v3-crumbs a {
	color: var(--v3-muted);
	text-decoration: none;
}

.v3-crumbs a:hover {
	color: var(--v3-green-dark);
	text-decoration: underline;
}

.v3-eyebrow {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--v3-green-dark);
	margin-bottom: 12px;
}

.atvyko-country .v3-hero {
	padding-bottom: 96px;
}

.atvyko-country .v3-hero__grid {
	grid-template-columns: 1.05fr 1fr;
}

/* Route card */
.v3-route {
	position: relative;
	z-index: 1;
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: var(--v3-radius);
	box-shadow: 0 24px 60px rgba(38, 62, 86, 0.14);
	padding: 28px 30px 24px;
}

.v3-route__label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--v3-muted);
	margin-bottom: 22px;
}

.v3-route__line {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
}

.v3-route__end strong {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--v3-navy);
	line-height: 1.2;
}

.v3-route__end span {
	display: block;
	font-size: 12px;
	color: var(--v3-muted);
	margin-top: 2px;
}

.v3-route__end--dest {
	text-align: right;
}

.v3-route__end--dest strong {
	background: var(--v3-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.v3-route__path {
	position: relative;
	height: 2px;
	background: repeating-linear-gradient(90deg, rgba(75, 182, 74, 0.45) 0 6px, transparent 6px 12px);
	display: flex;
	align-items: center;
}

.v3-route__dot {
	position: absolute;
	left: -4px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--v3-green);
}

.v3-route__dot--end {
	left: auto;
	right: -4px;
	background: #2fb894;
}

.v3-route__plane {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 34px;
	height: 34px;
	margin: -17px 0 0 -17px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid rgba(75, 182, 74, 0.3);
	border-radius: 50%;
	color: var(--v3-green);
	box-shadow: 0 4px 14px rgba(75, 182, 74, 0.22);
	animation: v3-plane 3.4s ease-in-out infinite;
}

.v3-route__plane svg {
	width: 16px;
	height: 16px;
	transform: rotate(90deg);
}

@keyframes v3-plane {
	0%, 100% { transform: translateX(-14px); }
	50% { transform: translateX(14px); }
}

.v3-route__facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid rgba(38, 62, 86, 0.08);
}

.v3-route__k {
	display: block;
	font-size: 11px;
	color: var(--v3-muted);
	margin-bottom: 3px;
}

.v3-route__v {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--v3-navy);
}

.atvyko-country .v3-hero__title {
	font-size: clamp(34px, 3.4vw, 50px);
}

.atvyko-country .v3-hero__visual {
	padding: 46px 0 52px;
}

.atvyko-country .v3-float-card--1 {
	top: 0;
	left: -5%;
	z-index: 2;
}

.atvyko-country .v3-float-card--2 {
	bottom: 0;
	right: -5%;
	z-index: 2;
}

/* People section */
.v3-people {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.v3-people__photo {
	position: relative;
	border-radius: var(--v3-radius);
	overflow: hidden;
	box-shadow: 0 20px 52px rgba(38, 62, 86, 0.16);
	line-height: 0;
}

.atvyko-v3 .v3-people__photo img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.v3-people__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(140deg, rgba(75, 182, 74, 0.28) 0%, transparent 45%);
	pointer-events: none;
}

.v3-people__badge {
	position: absolute;
	z-index: 1;
	left: 18px;
	bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 10px 16px;
	line-height: 1.3;
	box-shadow: 0 10px 28px rgba(38, 62, 86, 0.16);
}

.v3-people__badge strong {
	font-size: 14px;
	color: var(--v3-navy);
}

.v3-people__badge span {
	font-size: 12px;
	color: var(--v3-muted);
}

.v3-people__copy p {
	color: var(--v3-muted);
	font-size: 16px;
	line-height: 1.7;
	margin: 14px 0 0;
}

.v3-people__list {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.v3-people__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15.5px;
	font-weight: 500;
	color: var(--v3-navy);
}

.v3-people__list li::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(75, 182, 74, 0.14);
	color: var(--v3-green-dark);
	font-size: 12px;
	font-weight: 700;
}

/* Review author avatars (initials — never fake photos of real people) */
.v3-review__by {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

.v3-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, #58c257, #3d9c3c);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
}

.v3-avatar--alt {
	background: linear-gradient(135deg, #2b4763, #1b2e43);
}

.v3-review__by .v3-review__name {
	margin-top: 0;
}

@media (max-width: 900px) {
	.v3-people {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* Country landing: extra sections */
.v3-steps--four {
	grid-template-columns: repeat(4, 1fr);
}

.v3-table-note {
	margin: 16px 4px 0;
	font-size: 13px;
	color: var(--v3-muted);
}

.v3-stores {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.v3-store-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.v3-store-list li {
	font-size: 14.5px;
	color: var(--v3-muted);
	padding-left: 18px;
	position: relative;
}

.v3-store-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(75, 182, 74, 0.45);
}

.v3-restricted {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 32px;
	max-width: 860px;
}

.v3-restricted li {
	background: #fff;
	border: 1px solid rgba(38, 62, 86, 0.08);
	border-radius: 14px;
	padding: 13px 18px 13px 42px;
	font-size: 14.5px;
	color: var(--v3-navy);
	position: relative;
}

.v3-restricted li::before {
	content: "✕";
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #dc2626;
	font-weight: 700;
	font-size: 12px;
}

.v3-review-pair {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 40px;
}

@media (max-width: 900px) {
	.v3-steps--four {
		grid-template-columns: 1fr 1fr;
	}

	.v3-stores {
		grid-template-columns: 1fr 1fr;
	}

	.v3-review-pair,
	.v3-restricted {
		grid-template-columns: 1fr;
	}

	.atvyko-country .v3-hero__grid {
		grid-template-columns: 1fr;
	}

	.atvyko-country .v3-float-card--1,
	.atvyko-country .v3-float-card--2 {
		left: auto;
		right: 0;
		position: static;
		margin-top: 12px;
	}
}

@media (max-width: 560px) {
	.v3-route__facts {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.v3-route {
		padding: 22px 20px 20px;
	}
}

@media (max-width: 560px) {
	.v3-steps--four,
	.v3-stores {
		grid-template-columns: 1fr;
	}
}

/* Countries hub */
.hub-featured {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.atvyko-v3 a.hub-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none;
	cursor: pointer;
}

.hub-card__route {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--v3-muted);
}

.hub-card__arrow {
	color: var(--v3-green);
}

.hub-card__name {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--v3-navy);
	line-height: 1.15;
}

.atvyko-v3 a.hub-card:hover .hub-card__name {
	background: var(--v3-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hub-card__meta {
	font-size: 14px;
	color: var(--v3-muted);
}

.hub-card__meta strong {
	color: var(--v3-green-dark);
}

.hub-card__cta {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--v3-green-dark);
}

.hub-card--soon {
	background: rgba(255, 255, 255, 0.6);
	border-style: dashed;
}

.hub-intro {
	max-width: 760px;
	margin: 18px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--v3-muted);
}

/* Directory */
.hub-search {
	position: relative;
	max-width: 420px;
	margin: 32px 0 28px;
}

.hub-search svg {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	color: var(--v3-muted);
	pointer-events: none;
}

.atvyko-v3 .hub-search input {
	width: 100%;
	min-height: 52px;
	background: #fff;
	border: 1.5px solid rgba(38, 62, 86, 0.12);
	border-radius: 14px;
	padding: 13px 16px 13px 44px;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	color: var(--v3-navy);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.atvyko-v3 .hub-search input:focus {
	outline: none;
	border-color: var(--v3-green);
	box-shadow: 0 0 0 4px rgba(75, 182, 74, 0.16);
}

.hub-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px 24px;
}

.hub-country span,
.hub-country a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 14.5px;
	color: var(--v3-navy);
	text-decoration: none;
}

.hub-country a {
	font-weight: 600;
}

.hub-country a:hover {
	background: rgba(75, 182, 74, 0.08);
}

.hub-country__badge {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--v3-green-dark);
	background: rgba(75, 182, 74, 0.12);
	border-radius: 999px;
	padding: 2px 9px;
}

.hub-empty {
	margin-top: 20px;
	color: var(--v3-muted);
	font-size: 14.5px;
}

@media (max-width: 900px) {
	.hub-featured {
		grid-template-columns: 1fr;
	}

	.hub-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.hub-grid {
		grid-template-columns: 1fr;
	}
}

/* Final CTA */
.v3-cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #2b4763 0%, #1b2e43 100%);
	border-radius: 40px;
	padding: 80px 48px;
	text-align: center;
}

.v3-cta h2 {
	color: #fff;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: -0.02em;
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.v3-cta p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 17px;
	margin: 18px auto 32px;
	position: relative;
	z-index: 1;
}

.v3-cta .v3-btn {
	position: relative;
	z-index: 1;
}

.v3-cta__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.5;
}

.v3-cta__blob--1 {
	width: 340px;
	height: 340px;
	background: var(--v3-green);
	top: -120px;
	left: -80px;
}

.v3-cta__blob--2 {
	width: 280px;
	height: 280px;
	background: #3b82f6;
	bottom: -140px;
	right: -60px;
	opacity: 0.25;
}

/* Staggered reveals for card groups */
.v3-steps > .v3-reveal:nth-child(2),
.v3-bento > .v3-reveal:nth-child(2) {
	transition-delay: 0.12s;
}

.v3-steps > .v3-reveal:nth-child(3),
.v3-bento > .v3-reveal:nth-child(3) {
	transition-delay: 0.24s;
}

/* Accessibility */
.atvyko-v3 a:focus-visible,
.atvyko-v3 button:focus-visible,
.atvyko-v3 summary:focus-visible {
	outline: 3px solid rgba(75, 182, 74, 0.6);
	outline-offset: 3px;
	border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
	.v3-hero__img,
	.v3-float-card,
	.v3-marquee__track {
		animation: none !important;
	}

	.v3-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.atvyko-v3 * {
		transition-duration: 0.01ms !important;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.v3-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.v3-steps,
	.v3-stats {
		grid-template-columns: 1fr 1fr;
	}

	.v3-bento {
		grid-template-columns: 1fr;
	}

	.v3-savings {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.v3-card--wide {
		grid-column: span 1;
	}

	.v3-section {
		padding: 44px 0;
	}
}

@media (max-width: 560px) {
	.v3-steps,
	.v3-stats {
		grid-template-columns: 1fr;
	}

	.v3-hero {
		padding: 64px 0 48px;
	}

	.v3-float-card--1 {
		left: 0;
	}

	.v3-float-card--2 {
		right: 0;
	}

	.v3-cta {
		padding: 56px 24px;
	}

	.v3-carousel__item {
		flex-basis: 260px;
	}
}
