:root {
	--color-sky: #249ff9;
	--color-sky-light: #37a9ff;
	--color-steel: #408cc3;
	--color-ink: #000000;
	--color-gold: #eb9609;
	--color-white: #ffffff;
	--color-surface: #f3f3f3;
	--color-card: #e9eef2;
	--color-border: rgba(64, 140, 195, 0.14);
	--color-muted: #4e4e4e;
	--shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.08);
	--shadow-pill: 0 10px 18px rgba(0, 0, 0, 0.12);
	--radius-xl: 28px;
	--container: 1320px;
	
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	color: var(--color-ink);
	background: var(--color-surface);
}

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

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

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

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

.container {
	width: min(calc(100% - 48px), var(--container));
	margin: 0 auto;
}

.site-shell {
	min-height: 100vh;
	overflow: clip;
}

.site-main > section {
	position: relative;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	align-items: center;
	gap: 28px;
	min-height: 84px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
}

.site-branding__logo {
	width: 118px;
	height: auto;
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	margin-left: auto;
	border: 1px solid rgba(36, 159, 249, 0.16);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
	cursor: pointer;
}

.site-header__toggle-bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #111111;
	transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-header__toggle-bar + .site-header__toggle-bar {
	margin-top: 4px;
}

.site-header__menu {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
}

.primary-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-header .menu,
.site-header .fallback-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: 'Poppins', sans-serif;
	font-size: 0.97rem;
	font-weight: 500;
}

.site-header .menu > li,
.site-header .fallback-menu > li {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.site-header .menu > li + li::before,
.site-header .fallback-menu > li + li::before {
	content: '|';
	margin: 0 12px;
	color: rgba(0, 0, 0, 0.75);
	font-weight: 400;
}

.site-header .menu-item a,
.site-header .fallback-menu .menu-item a,
.site-header .menu > li > a,
.site-header .fallback-menu > li > a {
	display: inline-block;
	padding: 4px 0;
	color: #111111;
	line-height: 1.2;
}

.site-header .menu-item-has-children > a {
	position: relative;
	padding-right: 18px;
}

.site-header .menu-item-has-children > a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2px;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	opacity: 0.6;
}

.site-header .menu-item.current-menu-item a,
.site-header .menu-item.current_page_item a,
.site-header .current-menu-item > a,
.site-header .current_page_item > a {
	color: var(--color-steel);
	font-weight: 700;
}

.site-header .sub-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 0;
	z-index: 60;
	min-width: 220px;
	margin: 0;
	padding: 12px 0;
	list-style: none;
	border: 1px solid rgba(36, 159, 249, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-header .sub-menu li {
	display: block;
}

.site-header .sub-menu a {
	display: block;
	padding: 10px 18px;
	white-space: nowrap;
}

.site-header .sub-menu .menu-item + .menu-item::before,
.site-header .sub-menu > li + li::before {
	content: none;
}

.site-header .menu-item-has-children:hover > .sub-menu,
.site-header .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.submenu-toggle {
	display: none;
}

.site-header__actions,
.hero-copy__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 1;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	filter: saturate(1.05);
}

.button--header {
	min-width: 136px;
	padding: 12px 20px 13px;
	font-size: 1rem;
	color: var(--color-white);
	box-shadow: var(--shadow-pill);
}

.button--demo,
.button--primary {
	background: linear-gradient(180deg, #76bfff, var(--color-sky));
}

.button--login,
.button--secondary {
	background: linear-gradient(180deg, #f5ba53, var(--color-gold));
}

.hero-section,
.brand-section,
.power-section,
.feature-section,
.event-type-section,
.steps-section,
.lead-section,
.benefits-section,
.cta-section {
	background:
		linear-gradient(135deg, transparent 49%, rgba(255, 255, 255, 0.55) 50%, transparent 51%) top left / 320px 72px repeat-x,
		linear-gradient(225deg, transparent 49%, rgba(255, 255, 255, 0.55) 50%, transparent 51%) top left / 320px 72px repeat-x,
		var(--color-surface);
}

.hero-section {
	padding: 74px 0 90px;

	background:
		radial-gradient(circle at right 84%, rgba(235, 150, 9, 0.11), transparent 15%),
		linear-gradient(135deg, transparent 49%, rgba(255, 255, 255, 0.55) 50%, transparent 51%) top left / 320px 72px repeat-x,
		linear-gradient(225deg, transparent 49%, rgba(255, 255, 255, 0.55) 50%, transparent 51%) top left / 320px 72px repeat-x,
		var(--color-surface);
}

.hero-section__pattern {
	position: absolute;
	inset: 0 0 auto;
	height: 86px;
	pointer-events: none;
}

.hero-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
	align-items: center;
	gap: 32px;
}

.hero-copy {
	max-width: 710px;
	padding-top: 24px;
}

.hero-copy__eyebrow,
.section-heading span,
.section-kicker span {
	color: var(--color-sky);
}

.hero-copy__eyebrow {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.1rem, 4.3vw, 4.1rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.hero-copy__title,
.section-heading {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4.15rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.hero-copy__title span {
	display: block;
}

.hero-copy__description {
	max-width: 760px;
	margin: 28px 0 38px;
	font-size: clamp(1.15rem, 2vw, 1.65rem);
	line-height: 1.42;
}

.button--hero {
	min-width: 252px;
	padding: 19px 30px;
	font-size: 1.15rem;
	color: var(--color-white);
	box-shadow: 0 16px 20px rgba(0, 0, 0, 0.14);
}

.hero-visual {
	position: relative;
	min-height: 610px;
}

.hero-visual__halo {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
}

.hero-visual__halo--left {
	left: 8%;
	top: 20%;
	width: 240px;
	height: 240px;
	background: rgba(64, 140, 195, 0.08);
}

.hero-visual__halo--right {
	right: -8%;
	bottom: 14%;
	width: 240px;
	height: 240px;
	background: rgba(235, 150, 9, 0.1);
}
.hero-visual__halo {
	animation: halo-pulse 5s ease-in-out infinite;
}

@keyframes halo-pulse {
	0%,100% {
		transform: translateY(50px) scale(.85);
		opacity: 0.8;
	}
	50% {
		transform:  translateY(-10px) scale(1);
		opacity: 1;
	}
}
.hero-visual__orbit {
	position: absolute;
	inset: 90px 64px 74px 54px;
	border: 1.5px dashed rgba(64, 140, 195, 0.42);
	border-radius: 50%;
}

.hero-visual__phones,
.hero-visual__custom-image {
	position: absolute;
	inset: 52px 44px 54px 58px;
}

.hero-visual__custom-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-visual__custom-image img {
	max-height: 100%;
	object-fit: contain;
}

.phone {
	position: absolute;
	width: 210px;
	height: 395px;
	background: linear-gradient(180deg, #545454, #1c1c1c);
	border-radius: 33px;
	padding: 8px;
	box-shadow: 0 20px 24px rgba(0, 0, 0, 0.18);
}

.phone::after {
	content: '';
	position: absolute;
	inset: 8px;
	border-radius: 27px;
	background: #fefefe;
}

.phone--left {
	left: 90px;
	top: 34px;
	--float-rotate: -8deg;
	transform: rotate(-8deg);
}

.phone--right {
	right: 38px;
	top: 38px;
	--float-rotate: 8deg;
	transform: rotate(8deg);
}

.phone__speaker {
	position: absolute;
	top: 12px;
	left: 50%;
	z-index: 2;
	width: 96px;
	height: 19px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: #111111;
}

.phone__speaker::before,
.phone__speaker::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background: #2e2e2e;
}

.phone__speaker::before {
	left: 14px;
	width: 7px;
	height: 7px;
}

.phone__speaker::after {
	right: 14px;
	width: 8px;
	height: 8px;
}

.phone__screen {
	position: absolute;
	inset: 5px 6px 8px;
	z-index: 1;
	border-radius: 22px;
	background:
		
		url("https://www.grupio.com/wp-content/uploads/2026/03/Groupio1.png") center/cover;
}

.phone--right .phone__screen {
	background:
		
		url("https://www.grupio.com/wp-content/uploads/2026/03/Groupio-2.png") center/cover;
}

.hero-visual__badge {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	top: 100px;
	left: 128px;
	padding: 10px 14px;
	border-radius: 12px;
	background: #93baf9;
	color: var(--color-white);
	font-family: 'Lato', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 12px 18px rgba(36, 159, 249, 0.18);
}

.hero-visual__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.72);
	font-size: 0.8rem;
}

.hero-visual__accent {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--color-white);
	font-family: 'Lato', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
}

.hero-visual__accent--left {
	left: 0;
	top: 332px;
	background: #52d267;
}

.hero-visual__accent--right {
	right: 8px;
	top: 282px;
	background: #d26bff;
}

.hero-visual__accent--bottom {
	left: 46%;
	bottom: 40px;
	background: #f0aa34;
}

.brand-section,
.power-section,
.feature-section,
.event-type-section,
.steps-section,
.lead-section,
.benefits-section,
.cta-section,
.testimonials-section {
	padding: 74px 0 84px;
}

.section-heading {
	max-width: 960px;
}

.section-heading--center {
	max-width: none;
	text-align: center;
}

.section-heading--light {
	color: var(--color-white);
}

.section-heading--split {
	max-width: 660px;
}

.section-kicker {
	margin: 34px 0 0;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.08;
}

.section-kicker--large {
	margin-top: 42px;
}

.logo-marquee {
	position: relative;
	margin-top: 48px;
	padding: 22px 0;

	width: 100vw;
	left: 50%;
	transform: translateX(-50%);

	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 92px;
	z-index: 1;
}

.logo-marquee::before {
	left: 0;
	background-color: transparent;
}

.logo-marquee::after {
	right: 0;
	background-color: transparent;
}

.logo-marquee__track {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: marquee-scroll 24s linear infinite;
	
}

.logo-marquee__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 96px;
	padding: 0 8px;
}

.logo-marquee__item img {
	max-height: 80px;
	width: auto;
	object-fit: contain;
	filter: saturate(0.9);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	max-width: 1090px;
	margin: 44px auto 0;
}

.stat-card {
	padding: 26px 24px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.stat-card__value {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 700;
	line-height: 1;
	color: var(--color-steel);
}

.stat-card__divider {
	width: 100%;
	height: 1px;
	margin: 12px 0 16px;
	background: rgba(36, 159, 249, 0.4);
}

.stat-card__label {
	margin: 0;
	font-size: 1.1rem;
}

.power-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
	align-items: center;
	gap: 52px;
}

.power-section__grid > * {
	min-width: 0;
}

.power-copy__intro {
	max-width: 520px;
	margin: 20px 0 0;
	font-size: 1.06rem;
	line-height: 1.5;
}

.power-list {
	margin-top: 34px;
}

.power-list__item + .power-list__item {
	margin-top: 20px;
}

.power-list__item h3 {
	margin: 0 0 4px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.15rem;
	font-style: italic;
	font-weight: 700;
	color: var(--color-sky);
}

.power-list__item p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.45;
}

.phone-gallery {
	position: relative;
	overflow: hidden;
	padding: 18px 0 56px;
}

.phone-gallery__track {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	width: max-content;
	animation: phone-scroll 18s linear infinite;
}

.phone-gallery__slide {
	flex: 0 0 auto;
}

.phone-gallery__mockup {
	position: relative;
	width: 214px;
	height: 410px;
	border-radius: 32px;
	background: linear-gradient(180deg, #505050, #171717);
	padding: 7px;
	box-shadow: 0 22px 26px rgba(0, 0, 0, 0.16);
}

.phone-gallery__mockup::before {
	content: '';
	position: absolute;
	inset: 7px;
	border-radius: 26px;
	background: #f8f8f8;
}

.phone-gallery__topbar {
	position: absolute;
	top: 13px;
	left: 50%;
	z-index: 2;
	width: 92px;
	height: 19px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: #111111;
}

.phone-gallery__screen {
	position: absolute;
	inset: 33px 9px 17px;
	z-index: 1;
	border-radius: 22px;
	background-position: center;
	background-size: cover;
}

.carousel-3d {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 600px;
}

.carousel-3d__scene {
	width: min(100%, 600px);
	height: 580px;
	perspective: 1600px;
}

.carousel-3d__ring {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transform: rotateX(-10deg) rotateY(var(--rotation, 0deg));
	transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-3d__card {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 260px;
	height: 460px;
	margin: -230px 0 0 -130px;
	transform-style: preserve-3d;
	transform:
		rotateY(calc(var(--index) * 1turn / var(--card-count)))
		translateZ(280px);
}

.carousel-3d__card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.8s ease;
}

.carousel-3d__card:hover .carousel-3d__card-inner,
.carousel-3d__card:focus-within .carousel-3d__card-inner {
	transform: rotateY(180deg);
}

.carousel-3d__face {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 34px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	box-shadow: 0 28px 38px rgba(0, 0, 0, 0.16);
}

.carousel-3d__face--front {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 241, 248, 0.92));
}

.carousel-3d__face--back {
	background: linear-gradient(180deg, #249ff9, #178ce3);
	color: var(--color-white);
	transform: rotateY(180deg);
}

.carousel-3d__phone {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 32px;
	background: linear-gradient(180deg, #565656, #171717);
	padding: 8px;
}

.carousel-3d__phone::before {
	content: '';
	position: absolute;
	inset: 8px;
	border-radius: 25px;
	background: #f7f7f7;
}

.carousel-3d__phone-top {
	position: absolute;
	top: 14px;
	left: 50%;
	z-index: 2;
	width: 98px;
	height: 20px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: #111111;
}

.carousel-3d__phone-screen {
	position: absolute;
	inset: 35px 16px 18px;
	z-index: 1;
	border-radius: 21px;
	background-position: center;
	background-size: cover;
}

.carousel-3d__meta {
	display: grid;
	gap: 12px;
}

.carousel-3d__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.carousel-3d__meta h3 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 1.35rem;
	line-height: 1.1;
}

.carousel-3d__meta p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 44px 34px;
	margin-top: 60px;
}

.feature-card {
	padding: 18px 16px 14px;
	border-radius: 8px;
	background: #dfeaf3;
	text-align: center;
	box-shadow: 0 14px 22px rgba(0, 0, 0, 0.06);
}

.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: -26px auto 12px;
	border-radius: 50%;
	background: linear-gradient(180deg, #c8dffd, #b6d6f5);
	border: 1px solid rgba(64, 140, 195, 0.35);
	font-family: 'Poppins', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	color: #2d78be;
}

.feature-card h3 {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	line-height: 1.3;
}

.feature-card p {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.42;
}

.feature-section__footer {
	margin-top: 52px;
	text-align: center;
}

.feature-section__footer a {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.event-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 980px;
	margin: 26px auto 0;
	padding: 9px 14px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.04);
}

.event-type-select-wrap {
	position: relative;
	display: none;
	max-width: 360px;
	margin: 26px auto 0;
}

.event-type-select {
	appearance: none;
	width: 100%;
	padding: 14px 52px 14px 18px;
	border: 1px solid rgba(64, 140, 195, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.04);
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-ink);
}

.event-type-select:focus {
	outline: 2px solid rgba(36, 159, 249, 0.25);
	outline-offset: 2px;
}

.event-type-select__arrow {
	position: absolute;
	right: 18px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--color-ink);
	border-bottom: 2px solid var(--color-ink);
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.event-tabs__button {
	position: relative;
	padding: 0 18px;
	border: 0;
	background: transparent;
	color: rgba(0, 0, 0, 0.28);
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	cursor: pointer;
}

.event-tabs__button + .event-tabs__button::before {
	content: '|';
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0, 0, 0, 0.4);
}

.event-tabs__button.is-active {
	color: var(--color-ink);
}

.event-panels {
	margin-top: 58px;
}

.event-panel {
	display: none;
	grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 1fr);
	align-items: center;
	gap: 48px;
}

.event-panel.is-active {
	display: grid;
	animation: panel-fade 0.45s ease both;
}

.event-panel__media img {
	width: 100%;
	border-radius: 26px;
	aspect-ratio: 1.38;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
}

.event-panel__content {
	max-width: 640px;
}

.event-panel__description {
	margin: 0 0 28px;
	font-size: 1.1rem;
	line-height: 1.45;
	text-align: center;
}

.event-panel__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.event-panel__list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 14px;
	align-items: start;
}

.event-panel__list li + li {
	margin-top: 14px;
}

.event-panel__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #45a4f8;
	color: var(--color-white);
	font-size: 0.82rem;
	font-weight: 700;
}

.event-panel__list strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-style: italic;
	font-weight: 700;
	line-height: 1.25;
}

.event-panel__list p {
	margin: 2px 0 0;
	font-size: 1rem;
	line-height: 1.38;
}

.steps-section {
	overflow: hidden;
}

.steps-timeline {
	position: relative;
	max-width: 640px;
	height: 4px;
	margin: 46px auto -12px;
	background: #9fd2ff;
}

.steps-timeline::before,
.steps-timeline::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 14px;
	height: 14px;
	border: 4px solid #6fbaf8;
	border-radius: 50%;
	background: var(--color-surface);
	transform: translateY(-50%);
}

.steps-timeline::before {
	left: 0;
}

.steps-timeline::after {
	right: 0;
}

.steps-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 32px;
	text-align: center;
}

.step-card {
	position: relative;
	padding: 0 14px;
}

.step-card__device {
	position: relative;
	width: 164px;
	height: 312px;
	margin: 0 auto 28px;
	border-radius: 30px;
	background: linear-gradient(180deg, #545454, #171717);
	padding: 7px;
	box-shadow: 0 22px 26px rgba(0, 0, 0, 0.18);
}

.step-card__device::before {
	content: '';
	position: absolute;
	inset: 7px;
	border-radius: 24px;
	background: #f7f7f7;
}

.step-card__device-top {
	position: absolute;
	top: 12px;
	left: 50%;
	z-index: 2;
	width: 86px;
	height: 18px;
	transform: translateX(-50%);
	border-radius: 999px;
	
}

.step-card__device-screen {
	position: absolute;
	inset: 5px 4px 6px;
	padding: 10px;
	z-index: 1;
	border-radius: 20px;
	background-position: center;
	background-size: cover;
}

.step-card__dot {
	width: 16px;
	height: 16px;
	margin: 0 auto 18px;
	border: 4px solid #69b7f7;
	border-radius: 50%;
	background: var(--color-surface);
}

.step-card__label {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-style: italic;
	font-weight: 700;
	color: var(--color-sky);
}

.step-card h3 {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-style: italic;
	font-weight: 700;
}

.step-card p:last-child {
	max-width: 260px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.45;
}

.lead-section {
	background:
		radial-gradient(circle at 0 18%, rgba(64, 140, 195, 0.1), transparent 26%),
		repeating-radial-gradient(circle at 0 0, transparent 0 10px, rgba(64, 140, 195, 0.08) 11px 12px),
		var(--color-surface);
	
}

.lead-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
	align-items: center;
	gap: 42px;
}

.lead-copy__intro,
.benefits-section__intro,
.cta-copy__description {
	max-width: 620px;
	margin: 26px 0 0;
	font-size: 1.08rem;
	line-height: 1.5;
}

.lead-feature-list {
	display: grid;
	gap: 12px;
	margin-top: 34px;
}

.lead-feature-card {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	align-items: start;
	padding: 18px 18px 18px 14px;
	border: 1px solid rgba(64, 140, 195, 0.18);
	border-radius: 14px;

}

.lead-feature-card__icon,
.benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	
	border: 1px solid rgba(36, 159, 249, 0.34);
	color: var(--color-sky);
	font-family: 'Poppins', sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
}

.lead-feature-card h3,
.benefit-card h3,
.testimonial-card h4 {
	margin: 0 0 6px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.08rem;
	font-weight: 700;
}

.lead-feature-card p,
.benefit-card p,
.testimonial-card__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.42;
}

.lead-visual {
	position: relative;
	min-height: 520px;
}

.lead-visual__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
}

.lead-visual__orb--one {
	left: 6%;
	top: 18%;
	width: 200px;
	height: 200px;
	background: rgba(64, 140, 195, 0.08);
}

.lead-visual__orb--two {
	right: 0;
	bottom: 10%;
	width: 180px;
	height: 180px;
	background: rgba(235, 150, 9, 0.08);
}

.lead-visual__phone {
	top: 30px;
}

.lead-visual__phone--left {
	left: 48px;
	--float-rotate: -9deg;
	opacity:1;
	transform: rotate(-9deg);
}

.lead-visual__phone--right {
	right: 38px;
	--float-rotate: 9deg;
	transform: rotate(9deg);
}

.benefits-section__intro {
	max-width: 760px;
	margin: 24px auto 0;
	text-align: center;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 26px;
	margin-top: 42px;
}

.benefit-card {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	align-items: start;
	padding: 22px 20px;
	border: 1px solid rgba(64, 140, 195, 0.18);
	border-radius: 14px;
	background: rgba(223, 234, 243, 0.94);
}

.testimonials-section {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 18%),
		linear-gradient(180deg, #2a9af0, #2193ee);
}

.testimonials-slider {
	position: relative;
	margin-top: 54px;
}

.testimonials-slider__viewport {
	position: relative;
	height: 420px;
	overflow: hidden;
}

.testimonials-slider__track {
	position: relative;
	height: 100%;
}

.testimonial-card {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(32vw, 360px);
	min-width: 280px;
	padding: 26px 24px;
	border-radius: 18px;
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 28px 36px rgba(8, 51, 90, 0.22);
	opacity: 0;
	pointer-events: none;
	filter: brightness(0.62);
	transform: translateX(-50%) scale(0.62);
	transform-origin: center center;
	transition: transform 0.55s ease, filter 0.55s ease, opacity 0.55s ease;
}

.testimonial-card.now,
.testimonial-card.prev,
.testimonial-card.next {
	opacity: 1;
}

.testimonial-card.now {
	z-index: 3;
	pointer-events: auto;
	filter: brightness(1);
	transform: translateX(-50%) scale(1);
}

.testimonial-card.prev {
	z-index: 2;
	filter: brightness(0.72);
	transform: translateX(calc(-50% - var(--cascade-offset, 310px))) scale(0.8);
}

.testimonial-card.next {
	z-index: 2;
	filter: brightness(0.72);
	transform: translateX(calc(-50% + var(--cascade-offset, 310px))) scale(0.8);
}

.testimonial-card--clone {
	display: none;
}

.testimonials-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.testimonials-slider__dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.32);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonials-slider__dot.is-active {
	background: rgba(255, 255, 255, 0.92);
	transform: scale(1.15);
}

.testimonials-slider__dot:hover,
.testimonials-slider__dot:focus-visible {
	background: rgba(255, 255, 255, 0.72);
}

.testimonial-card {
	padding: 26px 24px;
}

.testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}

.testimonial-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border: 3px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.testimonial-card__person h3,
.testimonial-card__person p {
	margin: 0;
}

.testimonial-card__person h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
}

.testimonial-card__person p {
	font-size: 0.98rem;
	opacity: 0.92;
}

.testimonial-card h4 {
	color: var(--color-white);
	font-size: 1.45rem;
}

.testimonial-card__text {
	min-height: 86px;
}

.testimonial-card__stars {
	margin: 22px 0 0;
	color: #ffcc1e;
	font-size: 1.6rem;
	letter-spacing: 0.18em;
}

.cta-section {
	background:
		radial-gradient(circle at 0 20%, rgba(64, 140, 195, 0.12), transparent 24%),
		repeating-radial-gradient(circle at 0 0, transparent 0 12px, rgba(64, 140, 195, 0.07) 13px 14px),
		var(--color-surface);
}

.cta-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
	gap: 44px;
	align-items: center;
}

.cta-form-shell {
	min-height: 620px;
	padding: 34px;
	border: 1px solid rgba(64, 140, 195, 0.16);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: var(--shadow-soft);
}

.cta-form-shell__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 550px;
	border-radius: 14px;
	background:
		linear-gradient(90deg, rgba(36, 159, 249, 0.08), rgba(255, 255, 255, 0.24), rgba(36, 159, 249, 0.08));
}

.cta-form-shell .wpcf7,
.cta-form-shell .wpcf7-form {
	height: 100%;
}

.cta-form-shell .wpcf7-form {
	display: grid;
	gap: 16px;
}

.cta-form-shell input:not([type='submit']),
.cta-form-shell select,
.cta-form-shell textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(64, 140, 195, 0.18);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
}

.cta-form-shell textarea {
	min-height: 150px;
	resize: vertical;
}

.cta-form-shell input[type='submit'],
.cta-form-shell button[type='submit'] {
	min-width: 180px;
	padding: 16px 26px;
	border: 0;
	border-radius: 999px;
	color: var(--color-white);
	font-family: 'Lato', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	background: linear-gradient(180deg, #76bfff, var(--color-sky));
	box-shadow: var(--shadow-pill);
	cursor: pointer;
}

.cta-form-shell .wpcf7-spinner {
	margin: 10px 0 0;
}

.cta-form-shell .wpcf7-not-valid-tip,
.cta-form-shell .wpcf7-response-output {
	font-size: 0.92rem;
}

.phone--floating {
	animation: phone-float 4.8s ease-in-out infinite;
}

.phone--floating-delay {
	animation-delay: -2.4s;
}

.site-footer {
	position: relative;
	padding: 68px 0 56px;
	background:
		radial-gradient(circle at 18% 30%, rgba(36, 159, 249, 0.08), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.88)),
		var(--color-surface);
}

.site-footer::before,
.site-footer::after {
	content: '';
	position: absolute;
	inset: auto auto 0 0;
	width: 46%;
	height: 100%;
	pointer-events: none;
	background:
		repeating-radial-gradient(circle at 0 0, transparent 0 13px, rgba(64, 140, 195, 0.1) 14px 15px);
	opacity: 0.26;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

.site-footer::after {
	inset: auto 0 0 auto;
	transform: scaleX(-1);
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.site-footer__logo-link {
	display: inline-flex;
}

.site-footer__logo {
	width: min(280px, 100%);
}

.site-footer__description {
	max-width: 410px;
	margin: 18px 0 30px;
	font-size: 1rem;
	line-height: 1.45;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px;
}

.site-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	color: #111111;
	transition: transform 0.2s ease, color 0.2s ease;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
	transform: translateY(-2px);
	color: var(--color-sky);
}

.site-footer__social svg {
	width: 34px;
	height: 34px;
}

.site-footer__content {
	display: grid;
	gap: 28px;
}

.site-footer__title {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	line-height: 1;
}

.site-footer__contact-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.site-footer__contact {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.98rem;
	line-height: 1.35;
}

.site-footer__contact a {
	color: #111111;
}

.site-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 50%;
	border: 2px solid rgba(36, 159, 249, 0.55);
	color: var(--color-sky);
	background: rgba(255, 255, 255, 0.66);
}

.site-footer__contact-icon svg {
	width: 25px;
	height: 25px;
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.site-footer__column h3 {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
}

.site-footer__column ul {
	margin: 0;
	padding-left: 20px;
}

.site-footer__column li + li {
	margin-top: 6px;
}

.site-footer__column a {
	color: rgba(0, 0, 0, 0.84);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
	color: var(--color-sky);
}

.content-section {
	padding: 80px 0;
}

.content-section__title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 18px;
}

.content-section__body {
	font-size: 1.05rem;
	line-height: 1.7;
}

@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes phone-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes phone-float {
	0%,
	100% {
		transform: translateY(0) rotate(var(--float-rotate, 0deg));
	}

	50% {
		transform: translateY(-14px) rotate(var(--float-rotate, 0deg));
	}
}

@keyframes panel-fade {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes testimonial-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 9px));
	}
}

@media (max-width: 1220px) {
	.site-header__inner {
		grid-template-columns: 1fr;
		justify-items: stretch;
		padding: 16px 0;
	}

	.primary-nav {
		width: 100%;
	}

	.site-header .menu,
	.site-header .fallback-menu {
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.hero-section__grid,
	.power-section__grid,
	.event-panel,
	.feature-grid,
	.lead-section__grid,
	.cta-section__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__inner,
	.site-footer__contact-row,
	.site-footer__links {
		grid-template-columns: 1fr;
	}

	.site-footer__content {
		justify-items: center;
		text-align: center;
	}

	.site-footer__contact {
		justify-content: center;
	}

	.site-footer__column ul {
		padding-left: 0;
		list-style-position: inside;
	}

	.hero-copy,
	.power-copy,
	.lead-copy,
	.cta-copy {
		max-width: 100%;
		text-align: center;
	}

	.power-section__grid {
		gap: 36px;
	}

	.hero-copy__actions {
		justify-content: center;
	}

	.hero-visual,
	.phone-gallery,
	.carousel-3d,
	.lead-visual {
		max-width: 720px;
		margin: 0 auto;
	}

	.feature-grid {
		gap: 38px 24px;
	}

	.event-panel__content {
		max-width: none;
	}

	.power-copy__intro,
	.lead-copy__intro,
	.cta-copy__description {
		margin-left: auto;
		margin-right: auto;
	}

	.power-list {
		max-width: 720px;
		margin-left: auto;
		margin-right: auto;
	}

	.benefits-grid,
	.steps-grid,
	.testimonials-slider__track {
		grid-template-columns: 1fr;
	}

	.steps-timeline {
		display: none;
	}
}

@media (max-width: 900px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.site-header__toggle {
		display: inline-flex;
		flex-direction: column;
	}

	.site-header__toggle[aria-expanded='true'] .site-header__toggle-bar:nth-child(2) {
		transform: translateY(6px) rotate(45deg);
	}

	.site-header__toggle[aria-expanded='true'] .site-header__toggle-bar:nth-child(3) {
		opacity: 0;
	}

	.site-header__toggle[aria-expanded='true'] .site-header__toggle-bar:nth-child(4) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-header__menu {
		display: none;
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 18px;
		border: 1px solid rgba(36, 159, 249, 0.14);
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
	}

	.site-header__menu.is-open {
		display: grid;
	}

	.primary-nav {
		justify-content: flex-start;
	}

	.site-header .menu,
	.site-header .fallback-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.site-header .menu > li,
	.site-header .fallback-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.site-header .menu > li + li::before,
	.site-header .fallback-menu > li + li::before {
		content: none;
	}

	.site-header .menu-item-has-children > a::after {
		content: none;
	}

	.site-header .sub-menu {
		grid-column: 1 / -1;
		position: static;
		min-width: 0;
		padding: 8px 0 0 18px;
		margin-top: 4px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}

	.site-header .menu-item-has-children.is-submenu-open > .sub-menu {
		display: grid;
	}

	.site-header .sub-menu a {
		padding: 8px 0;
		white-space: normal;
	}

	.submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgba(36, 159, 249, 0.08);
		color: #111111;
		cursor: pointer;
	}

	.submenu-toggle::before {
		content: '';
		width: 8px;
		height: 8px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s ease;
	}

	.site-header .menu-item-has-children.is-submenu-open > .submenu-toggle::before {
		transform: rotate(225deg);
	}

	.power-list__item {
		text-align: left;
		padding: 16px 18px;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.76);
		border: 1px solid rgba(64, 140, 195, 0.14);
	}

	.power-list__item + .power-list__item {
		margin-top: 14px;
	}

	.cc-slider {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}

	.cc-slider__scene {
		width: 100%;
		max-width: 340px;
		margin: 0 auto;
	}

	.site-header__actions {
		width: 100%;
	}

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

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

	.carousel-3d__scene {
		height: 500px;
	}

	.carousel-3d__card {
		width: 220px;
		height: 396px;
		margin: -198px 0 0 -110px;
		transform:
			rotateY(calc(var(--index) * 1turn / var(--card-count)))
			translateZ(220px);
	}

	.lead-visual {
		min-height: 430px;
	}

	.testimonials-slider__viewport {
		height: 460px;
	}

	.testimonial-card {
		width: min(34vw, 330px);
	}

	.testimonial-card.prev {
		transform: translateX(calc(-50% - 240px)) scale(0.8);
	}

	.testimonial-card.next {
		transform: translateX(calc(-50% + 240px)) scale(0.8);
	}

	.event-tabs {
		border-radius: 24px;
	}
}

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

	.site-header .menu > li + li::before,
	.site-header .fallback-menu > li + li::before {
		margin: 0 8px;
	}

	.site-header__actions,
	.site-header__menu {
		width: 100%;
	}

	.site-header__actions,
	.hero-copy__actions {
		flex-direction: column;
		width: 100%;
	}

	.button--header,
	.button--hero {
		width: 100%;
		min-width: 0;
	}

	.hero-section,
	.brand-section,
	.power-section,
	.feature-section,
	.event-type-section,
	.steps-section,
	.lead-section,
	.benefits-section,
	.cta-section,
	.testimonials-section {
		padding: 48px 0 62px;
	}

	.hero-visual {
		min-height: 450px;
	}

	.hero-visual__phones,
	.hero-visual__custom-image {
		inset: 40px 10px 18px;
	}

	.phone {
		width: 156px;
		height: 296px;
	}

	.phone--left {
		left: 20px;
		top: 26px;
	}

	.phone--right {
		right: 20px;
		top: 30px;
	}

	.hero-visual__orbit {
		inset: 66px 18px 54px;
	}

	.hero-visual__badge {
		left: 44px;
		top: 54px;
	}

	.hero-visual__accent--left {
		left: 0;
		top: 206px;
	}

	.hero-visual__accent--right {
		right: 0;
		top: 172px;
	}

	.hero-visual__accent--bottom {
		bottom: 8px;
	}

	.logo-marquee {
		border-radius: 28px;
	}

	.logo-marquee__track {
		gap: 38px;
	}

	.logo-marquee__item {
		min-width: 160px;
		height: 62px;
	}

	.carousel-3d {
		min-height: auto;
	}

	.carousel-3d__scene {
		width: 100%;
		height: auto;
		perspective: none;
	}

	.carousel-3d__ring {
		display: grid;
		gap: 18px;
		transform: none !important;
	}

	.carousel-3d__card {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		margin: 0;
		transform: none !important;
	}

	.carousel-3d__card-inner {
		min-height: 360px;
	}

	.carousel-3d__face {
		position: absolute;
	}

	.event-panel.is-active {
		animation-duration: 0.34s;
	}

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

	.step-card {
		padding: 0;
	}

	.lead-feature-card,
	.benefit-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.lead-feature-card__icon,
	.benefit-card__icon {
		margin: 0 auto;
	}

	.lead-visual {
		min-height: 320px;
	}

	.lead-visual__phone {
		width: 156px;
		height: 296px;
		top: 8px;
	}

	.lead-visual__phone--left {
		left: 12px;
	}

	.lead-visual__phone--right {
		right: 12px;
	}

	.cta-form-shell {
		min-height: 420px;
		padding: 22px;
	}

	.cta-form-shell__empty {
		min-height: 360px;
	}

	.phone-gallery__mockup {
		width: 176px;
		height: 336px;
	}

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

	.event-tabs {
		gap: 10px 0;
		padding: 14px 12px;
	}

	.event-tabs__button {
		font-size: 0.95rem;
	}

	.site-footer {
		padding: 52px 0 46px;
	}

	.site-footer__inner {
		gap: 48px;
	}

	.site-footer__social {
		width: 52px;
		height: 52px;
	}

	.site-footer__social svg {
		width: 30px;
		height: 30px;
	}

	.site-footer__contact {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.site-footer__contact-icon {
		width: 48px;
		height: 48px;
		flex: 0 0 48px;
		margin: 0 auto;
	}

	.site-footer__contact-icon svg {
		width: 22px;
		height: 22px;
	}
}

@media (max-width: 480px) {
  .power-section {
    overflow: hidden;
  }

  .power-section .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .power-section__grid {
    gap: 24px;
  }

  .power-copy {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .power-copy .section-heading,
  .power-copy .section-heading--split {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .power-copy__intro {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .power-list {
    margin-top: 24px;
    max-width: 100%;
  }

  .power-list__item {
    padding: 14px 14px 12px;
  }

  .power-list__item h3 {
    font-size: 1rem;
  }

  .power-list__item p {
    font-size: 0.96rem;
  }

  .cc-slider {
    padding: 0 4px;
    width: 100%;
    max-width: 100%;
  }

  .cc-slider__scene {
    max-width: 100%;
  }

	.event-type-select-wrap {
		display: block;
	}

	.event-tabs {
		display: none;
	}
	.testimonials-slider__viewport {
		height: auto;
		overflow: hidden;
	}

	.testimonials-slider__track {
		display: flex;
		gap: 18px;
		width: max-content;
		height: auto;
		animation: testimonial-marquee 18s linear infinite;
	}

	.testimonials-slider__track:hover {
		animation-play-state: paused;
	}

	.testimonial-card,
	.testimonial-card.now,
	.testimonial-card.prev,
	.testimonial-card.next {
		position: relative;
		top: auto;
		left: auto;
		flex: 0 0 min(78vw, 290px);
		width: min(78vw, 290px);
		min-width: 250px;
		opacity: 1;
		pointer-events: auto;
		filter: none;
		transform: none;
	}

	.testimonial-card--clone {
		display: block;
	}

	.testimonials-slider__dots {
		display: none;
	}

	.site-footer__title {
		font-size: clamp(1.8rem, 6vw, 2.4rem);
	}

	.site-footer__contact {
		font-size: 0.9rem;
		padding: 16px 12px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.05);
	}

	.site-footer__contact-icon {
		width: 44px;
		height: 44px;
		flex: 0 0 44px;
	}

	.site-footer__contact-icon svg {
		width: 20px;
		height: 20px;
	}
}
/* ============================================================
   CAROUSEL CASCADE  —  phone card slider
   Targeting theme selectors precisely based on source CSS.
   ============================================================ */

/* ── Wrapper ───────────────────────────────────────────────── */
.carousel-cascade {
  position: relative;
  width: 100%;
}

/* ── Scene / viewport ──────────────────────────────────────── */
.carousel-cascade__scene {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Kill the 3D ring rotation entirely ────────────────────── */
/* Theme sets rotateY on .carousel-3d__ring — neutralise it */
.carousel-cascade .carousel-3d__ring {
  transform: none !important;
  transform-style: flat !important;
  transition: none !important;
  perspective: none !important;
  /* Reset the grid layout the theme adds at ≤768px */
  display: block !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
}

/* ── Kill the per-card rotateY + translateZ positioning ─────── */
/* Theme: position absolute, top/left 50%, margin negative */
.carousel-cascade .carousel-3d__card {
  /* Reset theme's absolute centering */
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
  /* Reset theme's 3D transform */
  transform: none !important;
  transform-style: flat !important;
  /* Reset theme's fixed dimensions */
  width: 260px !important;
  height: 460px !important;
}

/* ── Kill the card-inner flip on hover/focus ────────────────── */
/* Theme: .carousel-3d__card:hover .carousel-3d__card-inner { transform: rotateY(180deg) } */
.carousel-cascade .carousel-3d__card-inner,
.carousel-cascade .carousel-3d__card:hover .carousel-3d__card-inner,
.carousel-cascade .carousel-3d__card:focus-within .carousel-3d__card-inner {
  transform: none !important;
  transform-style: flat !important;
  transition: none !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

/* ── Always show front face, never show back ────────────────── */
.carousel-cascade .carousel-3d__face--front {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  opacity: 1 !important;
  backface-visibility: visible !important;
  transform: none !important;
  /* Remove the white gradient background from theme */
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.carousel-cascade .carousel-3d__face--back {
  display: none !important;
}

/* ── Fix the phone shell ────────────────────────────────────── */
/* Theme sets: background gradient dark, padding 8px, border-radius 32px */
/* The ::before creates the white inner fill — we kill it */
.carousel-cascade .carousel-3d__phone {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 32px !important;
  background: linear-gradient(180deg, #565656, #171717) !important;
  padding: 0 !important;        /* remove the 8px padding that reveals ::before */
  overflow: hidden !important;
  display: block !important;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32) !important;
}

/* Kill the white ::before pseudo-element */
.carousel-cascade .carousel-3d__phone::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ── Notch bar ──────────────────────────────────────────────── */
/* Theme: position absolute, top 14px, width 98px, height 20px */
.carousel-cascade .carousel-3d__phone-top {
  position: absolute !important;
  top: 14px !important;
  left: 50% !important;
  z-index: 2 !important;
  width: 98px !important;
  height: 20px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: #111111 !important;
}

/* ── Phone screen ───────────────────────────────────────────── */
/*
  Theme: position absolute, inset: 35px 16px 18px, z-index 1
  We expand it to fill the full phone (top: 0) since ::before is gone.
  background-image is set inline by PHP — we just ensure it covers.
*/
.carousel-cascade .carousel-3d__phone-screen {
  position: absolute !important;
  inset: 0 !important;            /* fill entire phone area */
  z-index: 1 !important;
  border-radius: 32px !important;
  background-color: #1a1a1a !important;   /* dark fallback */
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* ── Cascade card positioning ──────────────────────────────── */
/* Cards sit absolutely inside .carousel-cascade__scene */
.carousel-cascade .carousel-cascade__card {
  position: absolute !important;
  transition:
    transform  0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter     0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.55s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  will-change: transform, filter, opacity;
}

/* Active / center */
.carousel-cascade .carousel-cascade__card.now {
  transform: translateX(0) scale(1) !important;
  filter: brightness(1);
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

/* Left neighbour */
.carousel-cascade .carousel-cascade__card.prev {
  transform: translateX(-58%) scale(0.8) !important;
  filter: brightness(0.75);
  z-index: 2;
  opacity: 1;
}

/* Right neighbour */
.carousel-cascade .carousel-cascade__card.next {
  transform: translateX(58%) scale(0.8) !important;
  filter: brightness(0.75);
  z-index: 2;
  opacity: 1;
}

/* Clones hidden until marquee mode */
.carousel-cascade .carousel-cascade__card--clone {
  display: none !important;
}

/* ── Dots only — no arrows ──────────────────────────────────── */
.carousel-cascade__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.carousel-cascade__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-cascade__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-cascade__dot.is-active {
  background: var(--color-sky, #249ff9);
  transform: scale(1.45);
}

/* ── Override theme's ≤768px grid reset for our carousel ───── */
/*
  Theme at ≤768px does:
    .carousel-3d__ring { display: grid; transform: none !important; }
    .carousel-3d__card { position: relative; width: 100%; height: auto; }
  We need absolute positioning and fixed sizes for the cascade to work.
*/
@media (max-width: 768px) {
  .carousel-cascade .carousel-3d__ring {
    display: block !important;
    position: static !important;
    transform: none !important;
  }

  .carousel-cascade .carousel-3d__card {
    position: absolute !important;
    width: 220px !important;
    height: 400px !important;
  }

  .carousel-cascade__scene {
    height: 440px;
  }
}

/* ============================================================
   MOBILE MARQUEE  (≤ 480px)
   JS adds .is-marquee to .carousel-cascade
   ============================================================ */
@media (max-width: 480px) {

  /* Marquee scene — horizontal flex row with animation */
  .carousel-cascade.is-marquee .carousel-cascade__scene {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 20px !important;
    overflow: hidden !important;
    height: auto !important;
    position: relative !important;
    width: 100% !important;
    animation: carousel-marquee 22s linear infinite !important;
  }

  .carousel-cascade.is-marquee .carousel-cascade__scene:hover {
    animation-play-state: paused !important;
  }

  /* Show clones for seamless loop */
  .carousel-cascade.is-marquee .carousel-cascade__card--clone {
    display: block !important;
  }

  /* Every card flows inline — reset all cascade state */
  .carousel-cascade.is-marquee .carousel-cascade__card,
  .carousel-cascade.is-marquee .carousel-cascade__card.prev,
  .carousel-cascade.is-marquee .carousel-cascade__card.now,
  .carousel-cascade.is-marquee .carousel-cascade__card.next {
    position: static !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 170px !important;
    height: 340px !important;
    flex-shrink: 0 !important;
    z-index: auto !important;
  }

  /* Smaller phone shell in marquee */
  .carousel-cascade.is-marquee .carousel-3d__phone {
    border-radius: 26px !important;
  }

  .carousel-cascade.is-marquee .carousel-3d__phone-screen {
    border-radius: 26px !important;
  }

  .carousel-cascade.is-marquee .carousel-3d__phone-top {
    width: 70px !important;
    height: 16px !important;
    top: 10px !important;
  }

  /* Hide dots in marquee mode */
  .carousel-cascade.is-marquee .carousel-cascade__controls {
    display: none !important;
  }

  @keyframes carousel-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .carousel-cascade.is-marquee .carousel-cascade__scene {
      animation: none !important;
      flex-wrap: wrap !important;
      height: auto !important;
    }
  }
}

/* =============================================================
   CC-SLIDER
   Cascade phone slider for the power section.
   Uses cc- prefix exclusively — zero conflict with theme CSS.
   ============================================================= */


/* ── Outer wrapper ─────────────────────────────────────────── */

.cc-slider {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}


/* ── Scene: the overflow-hidden stage ─────────────────────── */

.cc-slider__scene {
  position: relative;
  height: 500px;
  overflow: hidden;
  /* centre cards horizontally and vertically */
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── Slide cards ───────────────────────────────────────────── */

.cc-slider__card {
  /* stack cards on top of each other in the centre */
  position: absolute;
  /* hidden by default — JS adds .prev / .now / .next */
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    filter    0.52s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, filter, opacity;
}

/* active / centre card */
.cc-slider__card.now {
  transform: translateX(0) scale(1);
  filter: brightness(1);
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

/* left neighbour */
.cc-slider__card.prev {
  transform: translateX(-62%) scale(0.8);
  filter: brightness(0.7);
  z-index: 2;
  opacity: 1;
}

/* right neighbour */
.cc-slider__card.next {
  transform: translateX(62%) scale(0.8);
  filter: brightness(0.7);
  z-index: 2;
  opacity: 1;
}

/* clones — only shown during mobile marquee */
.cc-slider__card--clone {
  display: none;
}


/* ── Phone mockup ──────────────────────────────────────────── */

.cc-phone {
  position: relative;
  width: 220px;
  height: 450px;
  border-radius: 38px;
  /* dark metallic bezel */
  background: linear-gradient(160deg, #4a4a4a 0%, #181818 100%);
  /* subtle outer ring + depth shadow */
  border:solid 5px black;
  /* clip the screen image to the rounded corners */
  overflow: hidden;
}


/* ── Dynamic island / notch pill ───────────────────────────── */

.cc-phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #0d0d0d;
  z-index: 3;
  /* sits on top of the screen image */
}


/* ── Screen ────────────────────────────────────────────────── */
/*
  Fills the entire phone interior edge-to-edge.
  overflow:hidden on .cc-phone clips it to the rounded bezel.
  background-image is injected inline via PHP.
  No white overlays. No padding gaps.
*/

.cc-phone__screen {
  position: absolute;
  /* edge-to-edge fill */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset:2px 1px 1px;
  border-radius: 30px;        /* match parent so image corners are rounded */
  /* dark fallback while image loads */
  background-color: #1a1a1a;
  /* ensure the inline background-image from PHP covers fully */
  background-size:auto 100%;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}


/* ── Dots ──────────────────────────────────────────────────── */

.cc-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.cc-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cc-slider__dot.is-active {
  background: var(--color-sky, #249ff9);
  transform: scale(1.5);
}

.cc-slider__dot:hover {
  background: var(--color-sky, #249ff9);
  opacity: 0.7;
}


/* =============================================================
   TABLET  (≤ 900px)
   Slightly smaller phone so it fits the stacked layout.
   ============================================================= */

@media (max-width: 900px) {
  .cc-slider__scene {
    height: 460px;
  }

  .cc-phone {
    width: 200px;
    height: 410px;
    border-radius: 34px;
  }

  .cc-phone__screen {
    border-radius: 34px;
  }

  .cc-phone__notch {
    width: 80px;
    height: 20px;
  }
}


/* =============================================================
   MOBILE MARQUEE  (≤ 480px)
   JS adds .is-marquee to .cc-slider when screen width ≤ 480px.
   Scene becomes a continuous infinite horizontal ticker.
   ============================================================= */

@media (max-width: 480px) {

  /* ── Scene becomes the scrolling runway ───────────────────── */
  .cc-slider.is-marquee .cc-slider__scene {
    /* switch from centred stack to scrolling flex row */
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    height: auto;
    overflow: hidden;
    /* scroll the whole row left; -50% works because originals
       and clones are equal length (total = 2× originals) */
    animation: cc-marquee 22s linear infinite;
  }

  .cc-slider.is-marquee .cc-slider__scene:hover {
    animation-play-state: paused;
  }

  /* ── Show clone set for seamless loop ──────────────────────── */
  .cc-slider.is-marquee .cc-slider__card--clone {
    display: block;
  }

  /* ── Every card flows as a static inline item ──────────────── */
  .cc-slider.is-marquee .cc-slider__card,
  .cc-slider.is-marquee .cc-slider__card.prev,
  .cc-slider.is-marquee .cc-slider__card.now,
  .cc-slider.is-marquee .cc-slider__card.next {
    position: static;
    transform: none;
    filter: none;
    opacity: 1;
    pointer-events: auto;
    /* fixed card width so phones stay a readable size */
    width: 148px;
    height: auto;
    flex-shrink: 0;
    z-index: auto;
  }

  /* ── Smaller phone in marquee ──────────────────────────────── */
  .cc-slider.is-marquee .cc-phone {
    width: 148px;
    height: 280px;
    border-radius: 24px;
  }

  .cc-slider.is-marquee .cc-phone__screen {
    border-radius: 24px;
  }

  .cc-slider.is-marquee .cc-phone__notch {
    width: 66px;
    height: 17px;
    top: 10px;
  }

  /* ── Hide dots during marquee ──────────────────────────────── */
  .cc-slider.is-marquee .cc-slider__dots {
    display: none;
  }

  /* ── Marquee keyframe ──────────────────────────────────────── */
  /* Translates left by exactly 50% of the total track width.
     Because originals + clones = 2× originals, -50% lands back
     at the start of the originals → seamless infinite loop.   */
  @keyframes cc-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── Respect reduced-motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .cc-slider.is-marquee .cc-slider__scene {
      animation: none;
      flex-wrap: wrap;
      height: auto;
      justify-content: center;
    }
  }
}

.platform-hero,
.platform-suite,
.platform-event-types,
.platform-proof,
.platform-cta {
	position: relative;
	overflow: hidden;
	padding: 72px 0 86px;
}

body.page-template-page-platform-php,
body.page-template-page-platform {
	background:
		url('https://www.grupio.com/wp-content/uploads/2026/03/bg-grupio.png') center top / cover no-repeat fixed,
		var(--color-surface);
}

.platform-hero,
.platform-suite,
.platform-event-types,
.platform-proof,
.platform-cta {
	background: transparent;
}

.platform-page__pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:url('https://www.grupio.com/wp-content/uploads/2026/03/bg-grupio.png') center top / cover no-repeat fixed,
		var(--color-surface);;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 92%);
	opacity: 0.9;
}

.platform-page__pattern--soft {
	opacity: 0.52;
}

.platform-page__pattern--blue {
	background:
		radial-gradient(circle at 0 50%, rgba(255, 255, 255, 0.16), transparent 32%),
		repeating-radial-gradient(circle at 0 0, transparent 0 12px, rgba(255, 255, 255, 0.08) 13px 14px);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 92%);
	opacity: 0.74;
}

.platform-hero__grid,
.platform-tab-panel--feature,
.platform-event-types__grid,
.platform-tab-panel--event,
.platform-cta__grid {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	gap: 44px;
}

.platform-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
}

.platform-hero__copy {
	order: 2;
	max-width: 660px;
}

.platform-hero__visual {
	order: 1;
	position: relative;
	min-height: 430px;
	animation: panel-fade 0.65s ease both;
}

.platform-page__eyebrow {
	margin: 0 0 18px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-sky);
}

.platform-page__headline,
.platform-cta__copy h2,
.platform-event-types__intro h2 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.08;
}

.platform-page__headline,
.platform-cta__copy h2 {
	max-width: 680px;
}

.platform-event-types__intro h2,
.platform-event-types__intro p,
.platform-event-types__intro span {
	color: var(--color-ink);
}

.platform-page__headline span,
.platform-cta__copy h2 span,
.platform-event-types__intro h2 span,
.platform-proof .section-heading span {
	color: var(--color-sky);
}

.platform-page__description,
.platform-proof__intro,
.platform-cta__copy p,
.platform-event-types__intro p {
	font-size: 1.08rem;
	line-height: 1.55;
}

.platform-page__description,
.platform-cta__copy p {
	max-width: 620px;
	margin: 24px 0 0;
}

.platform-page__actions {
	margin-top: 34px;
}

.platform-hero__copy,
.platform-event-types__intro,
.platform-proof__grid,
.platform-cta__copy,
.platform-tabset {
	animation: platform-rise 0.75s ease both;
}

.platform-device {
	position: relative;
}

.platform-device__screen {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78) 15%, transparent 16%),
		radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72) 16%, transparent 17%),
		linear-gradient(180deg, #cfe8f7 0%, #dff1fb 60%, #c6e2f1 100%);
}

.platform-device__screen::before,
.platform-device__screen::after {
	content: '';
	position: absolute;
	left: -10%;
	right: -10%;
	border-radius: 50%;
}

.platform-device__screen::before {
	bottom: 18%;
	height: 30%;
	background: #c6df7f;
}

.platform-device__screen::after {
	bottom: -2%;
	height: 28%;
	background: #8ea900;
}

.platform-device__screen--meadow::before {
	background: #c8dd85;
}

.platform-device__screen--meadow::after {
	background: #8ba600;
}

.platform-device__screen--skyline {
	background:
		linear-gradient(180deg, #d2e9f8 0%, #d8effd 48%, #d4edf8 100%);
}

.platform-device__screen--skyline::before {
	bottom: 22%;
	height: 24%;
	background: #b7d8dd;
}

.platform-device__screen--skyline::after {
	bottom: 0;
	height: 24%;
	background: #6aa8b6;
}

.platform-device__screen--aurora {
	background:
		linear-gradient(180deg, #cddff5 0%, #dcefff 58%, #d9eefe 100%);
}

.platform-device__screen--aurora::before {
	bottom: 18%;
	height: 28%;
	background: #c5df87;
}

.platform-device__screen--aurora::after {
	bottom: 0;
	height: 20%;
	background: #7f9b00;
}

.platform-device__screen--sunrise {
	background:
		linear-gradient(180deg, #d8ecfb 0%, #eef7ff 52%, #ecf6ff 100%);
}

.platform-device__screen--sunrise::before {
	bottom: 20%;
	height: 24%;
	background: #d5e89a;
}

.platform-device__screen--sunrise::after {
	bottom: 0;
	height: 18%;
	background: #9cb400;
}

.platform-device__screen--analytics {
	background:
		linear-gradient(180deg, #162536 0%, #1e364d 100%);
}

.platform-device__screen--analytics::before {
	left: 10%;
	right: 10%;
	bottom: 14%;
	height: 2px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow:
		0 -38px 0 rgba(255, 255, 255, 0.1),
		0 -76px 0 rgba(255, 255, 255, 0.08);
}

.platform-device__screen--analytics::after {
	left: 12%;
	right: 12%;
	bottom: 14%;
	height: 48%;
	border-radius: 0;
	background:
		linear-gradient(135deg, transparent 0 12%, rgba(83, 181, 255, 0.3) 12% 14%, transparent 14% 100%),
		linear-gradient(180deg, transparent 0 100%);
}

.platform-device__screen--conference {
	background:
		linear-gradient(180deg, #d7eafb 0%, #ebf4fb 60%, #e7f1fb 100%);
}

.platform-device__screen--conference::before {
	bottom: 20%;
	height: 26%;
	background: #c7de87;
}

.platform-device__screen--conference::after {
	bottom: 0;
	height: 24%;
	background: #89a700;
}

.platform-device__screen--expo {
	background:
		linear-gradient(180deg, #d3ebff 0%, #eaf5ff 100%);
}

.platform-device__screen--expo::before {
	bottom: 26%;
	height: 18%;
	background: #95b8df;
}

.platform-device__screen--expo::after {
	bottom: 0;
	height: 26%;
	background: #0065a9;
}

.platform-device__screen--summit {
	background:
		linear-gradient(180deg, #d0e6f5 0%, #dfedf7 54%, #dbe9f6 100%);
}

.platform-device__screen--summit::before {
	bottom: 22%;
	height: 22%;
	background: #ccde92;
}

.platform-device__screen--summit::after {
	bottom: 0;
	height: 20%;
	background: #849a00;
}

.platform-device__screen--health {
	background:
		linear-gradient(180deg, #dbeefb 0%, #f0f8ff 60%, #eef8ff 100%);
}

.platform-device__screen--health::before {
	bottom: 26%;
	height: 20%;
	background: #d2e39d;
}

.platform-device__screen--health::after {
	bottom: 0;
	height: 18%;
	background: #92af08;
}

.platform-device__screen--campus {
	background:
		linear-gradient(180deg, #cfe6f7 0%, #e7f3fb 58%, #e2eff9 100%);
}

.platform-device__screen--campus::before {
	bottom: 20%;
	height: 24%;
	background: #c2d991;
}

.platform-device__screen--campus::after {
	bottom: 0;
	height: 22%;
	background: #7a9800;
}

.platform-device__cloud,
.platform-device__glow,
.platform-device__footer-bar {
	position: absolute;
	display: block;
	z-index: 2;
}

.platform-device__cloud {
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	filter: blur(0.3px);
}

.platform-device__cloud--one {
	top: 17%;
	left: 12%;
	width: 22%;
	height: 9%;
}

.platform-device__cloud--two {
	top: 12%;
	right: 16%;
	width: 28%;
	height: 12%;
}

.platform-device__glow {
	inset: 8% 12% auto;
	height: 2px;
	background: rgba(255, 255, 255, 0.18);
}

.platform-device__footer-bar {
	left: 18%;
	right: 18%;
	bottom: 4%;
	height: 2.4%;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 999px;
}

.platform-device--phone {
	width: 220px;
}

.platform-device__phone-shell {
	position: relative;
	width: 100%;
	aspect-ratio: 0.5 / 1;
	padding: 7px;
	border-radius: 34px;
	background: linear-gradient(180deg, #323232, #070707);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.08),
		0 24px 44px rgba(0, 0, 0, 0.28);
}

.platform-device__phone-shell .platform-device__screen {
	position: absolute;
	inset: 7px;
	border-radius: 28px;
}

.platform-device__phone-notch {
	position: absolute;
	top: 14px;
	left: 50%;
	z-index: 3;
	width: 34%;
	height: 18px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: #050505;
}

.platform-device--phone-md {
	width: 178px;
}

.platform-device--phone-lg {
	width: 200px;
}

.platform-device--phone-xl {
	width: 208px;
}

.platform-device--laptop {
	width: min(100%, 560px);
}

.platform-device__laptop-screen {
	position: relative;
	width: 100%;
	aspect-ratio: 1.58 / 1;
	padding: 14px;
	border: 4px solid #0d0d0d;
	border-bottom-width: 12px;
	border-radius: 24px 24px 12px 12px;
	background: linear-gradient(180deg, #2b2b2b, #050505);
	box-shadow: 0 30px 48px rgba(0, 0, 0, 0.22);
}

.platform-device__laptop-screen .platform-device__screen {
	position: absolute;
	inset: 14px;
	border-radius: 14px 14px 8px 8px;
}

.platform-device__laptop-base {
	position: relative;
	width: 110%;
	height: 18px;
	margin: -2px auto 0;
	border-radius: 0 0 26px 26px;
	background: linear-gradient(180deg, #a0a0a0, #767676);
	box-shadow: 0 12px 18px rgba(0, 0, 0, 0.16);
}

.platform-device__laptop-base::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 18%;
	height: 4px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
}

.platform-device--hero-laptop {
	position: absolute;
	left: 0;
	right: 70px;
	bottom: 16px;
	transform: perspective(1600px);
	transform-origin: center bottom;
}

.platform-device--hero-phone {
	position: absolute;
	right: 26px;
	bottom: 0;
	width: 166px;
	transform: translateY(8px) rotate(0deg);
}

.platform-tabset {
	position: relative;
	z-index: 1;
	margin-top: 32px;
}

.platform-tabset__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	width: min(100%, 980px);
	margin: 0 auto;
	padding: 10px 18px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 14px 24px rgba(0, 0, 0, 0.05);
	overflow-x: auto;
	scrollbar-width: none;
}

.platform-tabset__list::-webkit-scrollbar {
	display: none;
}

.platform-tabset__button {
	position: relative;
	flex: 0 0 auto;
	padding: 0 16px;
	border: 0;
	background: transparent;
	color: rgba(0, 0, 0, 0.34);
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	white-space: nowrap;
	cursor: pointer;
}

.platform-tabset__button + .platform-tabset__button::before {
	content: '|';
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0, 0, 0, 0.24);
}

.platform-tabset__button.is-active {
	color: var(--color-ink);
}

.platform-tabset__panels {
	margin-top: 44px;
}

.platform-tab-panel[hidden] {
	display: none !important;
}

.platform-tab-panel--feature {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.platform-tab-panel__copy h3,
.platform-event-card__copy h3 {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.08;
}

.platform-tab-panel__lead {
	margin: 18px 0 0;
	font-size: 1.05rem;
	line-height: 1.5;
}

.platform-check-list,
.platform-bullet-list {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.platform-check-list li {
	position: relative;
	padding-left: 42px;
	font-size: 1rem;
	line-height: 1.48;
}

.platform-check-list li + li,
.platform-bullet-list li + li {
	margin-top: 16px;
}

.platform-check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(180deg, #68bcff, #249ff9);
	box-shadow: 0 8px 14px rgba(36, 159, 249, 0.22);
}

.platform-check-list li::after {
	content: '';
	position: absolute;
	left: 8px;
	top: 9px;
	width: 8px;
	height: 4px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(-45deg);
}

.platform-tab-panel__visual--phones {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 28px;
	min-height: 470px;
}

.platform-event-types__grid {
	grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
	align-items: stretch;
}

.platform-event-types__intro {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 18px;
}

.platform-event-types__intro p {
	margin: 24px 0 0;
	max-width: 430px;
}

.platform-tabset--card {
	align-self: center;
}

.platform-tabset__list--light {
	width: calc(100% - 28px);
	max-width: calc(100% - 28px);
	margin: 0 auto -16px;
	background: rgba(255, 255, 255, 0.86);
	position: relative;
	z-index: 3;
}

.platform-tabset__button--light.is-active {
	color: var(--color-ink);
}

.platform-event-card {
	padding: 42px 34px 34px;
	border-radius: 28px;
	background: rgba(241, 247, 252, 0.9);
	box-shadow: 0 24px 44px rgba(11, 66, 122, 0.16);
	backdrop-filter: blur(4px);
}

.platform-tab-panel--event {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.platform-bullet-list li {
	position: relative;
	padding-left: 18px;
	font-size: 1rem;
	line-height: 1.44;
}

.platform-bullet-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.platform-event-card__copy h3 {
	color: var(--color-sky);
}

.platform-event-card__visual {
	position: relative;
	min-height: 460px;
}

.platform-device--event-tablet {
	position: absolute;
	left: 0;
	right: 68px;
	bottom: 24px;
	transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
	transform-origin: center bottom;
}

.platform-device--event-phone {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 176px;
	transform: rotate(0deg) scale(.75) translateY(30px);
}

.platform-proof__intro {
	max-width: 760px;
	margin: 22px auto 0;
	text-align: center;
}

.platform-proof__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 26px;
	margin-top: 44px;
}

.platform-proof-card {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	align-items: center;
	padding: 26px 24px;
	border: 1px solid rgba(64, 140, 195, 0.18);
	border-radius: 16px;
	background: rgba(223, 234, 243, 0.92);
}

.platform-proof-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 20px;
	border: 1px solid rgba(36, 159, 249, 0.28);
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-sky);
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.platform-proof-card h3 {
	margin: 0 0 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
}

.platform-proof-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.45;
}

.platform-cta__grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
}

.platform-cta__copy p {
	max-width: 460px;
}

.platform-cta__copy .button {
	margin-top: 28px;
}

.platform-cta__visual {
	position: relative;
	min-height: 460px;
}

.platform-device--cta-laptop {
	position: absolute;
	left: 0;
	right: 120px;
	bottom: 28px;
	transform: perspective(1300px) rotateX(0deg) rotateY(0deg);
	transform-origin: center bottom;
}

.platform-device--cta-tablet {
	position: absolute;
	right: 106px;
	bottom: 22px;
	transform:translateY(40px) rotate(0deg) scale(.75);
}

.platform-device--cta-phone {
	position: absolute;
	right: -38px;
	bottom: 0;

	transform: translateY(20px) rotate(0deg) scale(.75);
}

.platform-tab-panel--feature,
.platform-tab-panel--event {
	animation: panel-fade 0.52s ease both;
}

.platform-tab-panel--feature .platform-device,
.platform-tab-panel--event .platform-device {
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.5s ease;
}

.platform-tabset__panels > .platform-tab-panel--feature:nth-child(odd).is-active .platform-device--phone-md {
	transform: translateY(-18px) rotate(-4deg);
}

.platform-tabset__panels > .platform-tab-panel--feature:nth-child(odd).is-active .platform-device--phone-xl {
	transform: translateY(18px) rotate(4deg);
}

.platform-tabset__panels > .platform-tab-panel--feature:nth-child(even).is-active .platform-device--phone-md {
	transform: translateY(18px) rotate(4deg);
}

.platform-tabset__panels > .platform-tab-panel--feature:nth-child(even).is-active .platform-device--phone-xl {
	transform: translateY(-18px) rotate(-4deg);
}

.platform-tabset__panels > .platform-tab-panel--event:nth-child(odd).is-active .platform-device--event-tablet {
	transform: perspective(1200px) rotateX(7deg) rotateY(-8deg) translateY(-12px);
}

.platform-tabset__panels > .platform-tab-panel--event:nth-child(odd).is-active .platform-device--event-phone {
	transform: rotate(4deg) translateY(14px);
}

.platform-tabset__panels > .platform-tab-panel--event:nth-child(even).is-active .platform-device--event-tablet {
	transform: perspective(1200px) rotateX(7deg) rotateY(-8deg) translateY(12px);
}

.platform-tabset__panels > .platform-tab-panel--event:nth-child(even).is-active .platform-device--event-phone {
	transform: rotate(4deg) translateY(-14px);
}

@media (max-width: 1220px) {
	.platform-hero__grid,
	.platform-tab-panel--feature,
	.platform-event-types__grid,
	.platform-tab-panel--event,
	.platform-cta__grid {
		grid-template-columns: 1fr;
	}

	.platform-hero__copy,
	.platform-hero__visual {
		order: initial;
	}

	.platform-hero__copy,
	.platform-tab-panel__copy,
	.platform-event-card__copy,
	.platform-cta__copy,
	.platform-event-types__intro {
		max-width: 100%;
		text-align: center;
	}

	.platform-event-types__intro {
		padding-right: 0;
	}

	.platform-page__description,
	.platform-proof__intro,
	.platform-cta__copy p,
	.platform-event-types__intro p,
	.platform-tab-panel__lead {
		margin-left: auto;
		margin-right: auto;
	}

	.platform-check-list {
		max-width: 660px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	.platform-bullet-list {
		max-width: 620px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	.platform-hero__visual,
	.platform-event-card__visual,
	.platform-cta__visual {
		max-width: 720px;
		margin: 0 auto;
	}
}

@media (max-width: 900px) {
	.platform-hero,
	.platform-suite,
	.platform-event-types,
	.platform-proof,
	.platform-cta {
		padding: 56px 0 68px;
	}

	.platform-hero__visual {
		min-height: 360px;
	}

	.platform-tab-panel__visual--phones,
	.platform-tab-panel__visual--devices {
		min-height: 360px;
	}

	.platform-event-card__visual,
	.platform-cta__visual {
		min-height: 380px;
	}

	.platform-device--hero-laptop,
	.platform-device--cta-laptop {
		right: 72px;
	}

	.platform-device--event-tablet {
		right: 72px;
	}

	.platform-device--hero-phone,
	.platform-device--event-phone,
	.platform-device--cta-tablet {
		right: 18px;
	}

	.platform-device--cta-phone {
		right: 0;
	}

	.platform-device--phone {
		width: 188px;
	}

	.platform-device--phone-md {
		width: 162px;
	}

	.platform-device--laptop {
		width: min(100%, 500px);
	}

	.platform-device--tablet {
		width: min(100%, 250px);
	}

	.platform-proof__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.platform-page__actions {
		flex-direction: column;
		width: 100%;
	}

	.platform-page__actions .button {
		width: 100%;
	}

	.platform-hero__visual,
	.platform-tab-panel__visual--phones,
	.platform-tab-panel__visual--devices,
	.platform-event-card__visual,
	.platform-cta__visual {
		min-height: auto;
	}

	.platform-device--hero-laptop,
	.platform-device--hero-phone,
	.platform-device--event-tablet,
	.platform-device--event-phone,
	.platform-device--cta-laptop,
	.platform-device--cta-tablet,
	.platform-device--cta-phone {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 0 auto;
		transform: none;
	}

	.platform-hero__visual,
	.platform-event-card__visual,
	.platform-cta__visual {
		display: grid;
		justify-items: center;
		gap: 20px;
	}

	.platform-tab-panel__visual--phones,
	.platform-tab-panel__visual--devices {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 18px;
	}

	.platform-tabset__list {
		width: calc(100% + 8px);
		margin-left: -4px;
		margin-right: -4px;
		padding: 10px 14px;
	}

	.platform-event-card {
		padding: 32px 22px 24px;
		border-radius: 22px;
	}

	.platform-tabset__list--light {
		margin: 0 0 -14px;
		width: calc(100% + 8px);
		max-width: none;
	}

	.platform-proof-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.platform-proof-card__badge {
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.platform-hero,
	.platform-suite,
	.platform-event-types,
	.platform-proof,
	.platform-cta {
		padding: 46px 0 58px;
	}

	.platform-page__headline,
	.platform-cta__copy h2,
	.platform-event-types__intro h2,
	.platform-tab-panel__copy h3,
	.platform-event-card__copy h3 {
		font-size: clamp(2rem, 9vw, 2.7rem);
	}

	.platform-page__description,
	.platform-proof__intro,
	.platform-cta__copy p,
	.platform-event-types__intro p,
	.platform-tab-panel__lead,
	.platform-check-list li,
	.platform-bullet-list li,
	.platform-proof-card p {
		font-size: 0.98rem;
	}

	.platform-tabset__button {
		font-size: 0.96rem;
		padding: 0 14px;
	}

	.platform-device--phone {
		width: 150px;
	}

	.platform-device--phone-md {
		width: 136px;
	}

	.platform-device--laptop {
		width: min(100%, 360px);
	}

	.platform-device__phone-shell {
		border-radius: 28px;
	}

	.platform-device__phone-shell .platform-device__screen {
		border-radius: 22px;
	}

	.platform-device__phone-notch {
		top: 10px;
		height: 14px;
	}

	.platform-proof-card {
		padding: 22px 18px;
	}

	.platform-proof-card h3 {
		font-size: 1.2rem;
	}
}

.platform-page__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.16;
}

.platform-page__background--blue {
	opacity: 0.12;
}

.platform-device__screen--image {
	background: #edf4fa;
}

.platform-device__screen--image::before,
.platform-device__screen--image::after {
	display: none;
}

.platform-device__screen-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.platform-device--tablet {
	width: min(100%, 300px);
}

.platform-device__tablet-shell {
	position: relative;
	width: 100%;
	aspect-ratio: 0.78 / 1;
	padding: 10px;
	border-radius: 28px;
	background: linear-gradient(180deg, #303030, #080808);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.07),
		0 26px 44px rgba(0, 0, 0, 0.26);
}

.platform-device__tablet-shell .platform-device__screen {
	position: absolute;
	inset: 10px;
	border-radius: 20px;
}

.platform-device__tablet-camera {
	position: absolute;
	top: 12px;
	left: 50%;
	z-index: 3;
	width: 9px;
	height: 9px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.22);
}

.platform-device--tablet-md {
	width: min(100%, 286px);
}

.platform-tab-panel__visual--devices {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: 24px;
	min-height: 470px;
}

.platform-device--cta-tablet {
	position: absolute;
	right: 106px;
	bottom: 22px;
}

.platform-device--cta-phone {
	position: absolute;
	right: 8px;
	bottom: 0;
}

@media (max-width: 900px) {
	.platform-device--tablet {
		width: min(100%, 250px);
	}

	.platform-device--cta-tablet {
		right: 96px;
	}
}

@media (max-width: 768px) {
	.platform-device--cta-tablet,
	.platform-device--cta-phone {
		position: relative;
		right: auto;
		bottom: auto;
	}

	.platform-tab-panel__visual--devices {
		min-height: auto;
	}
}

@media (max-width: 480px) {
	.platform-page__background {
		opacity: 0.12;
	}

	body.page-template-page-platform-php,
	body.page-template-page-platform {
		background-attachment: scroll;
	}

	.platform-device--tablet {
		width: min(100%, 220px);
	}

	.platform-device__tablet-shell {
		border-radius: 22px;
	}

	.platform-device__tablet-shell .platform-device__screen {
		border-radius: 16px;
	}

	.platform-device--hero-phone {
		width: 142px;
	}
}

@keyframes platform-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.platform-hero__copy,
	.platform-event-types__intro,
	.platform-proof__grid,
	.platform-cta__copy,
	.platform-tabset,
	.platform-hero__visual,
	.platform-tab-panel--feature,
	.platform-tab-panel--event {
		animation: none;
	}

	.platform-tab-panel--feature .platform-device,
	.platform-tab-panel--event .platform-device {
		transition: none;
	}
}
/* ============================================================
   DEMO VIDEO SECTION
   Full-width product demo embed placed between hero and brand.
   Supports YouTube, Vimeo iframes and HTML5 <video>.
   Height is controlled by --gr-video-height (set via functions.php
   Customizer → 🎬 Product Demo Video → "Video frame height (px)").
   ============================================================ */

/* ── Section wrapper ──────────────────────────────────────── */
.demo-video-section {
	padding: 80px 0 96px;
	background:
		radial-gradient(circle at 18% 60%, rgba(36, 159, 249, 0.07), transparent 28%),
		radial-gradient(circle at 82% 30%, rgba(235, 150, 9, 0.06), transparent 24%),
		linear-gradient(135deg, transparent 49%, rgba(255,255,255,0.55) 50%, transparent 51%) top left / 320px 72px repeat-x,
		linear-gradient(225deg, transparent 49%, rgba(255,255,255,0.55) 50%, transparent 51%) top left / 320px 72px repeat-x,
		var(--color-surface);
	position: relative;
	overflow: hidden;
}

/* ── Centred column ───────────────────────────────────────── */
.demo-video-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 52px;
}

/* ── Optional heading + subtext ──────────────────────────── */
.demo-video-section__copy {
	text-align: center;
	max-width: 760px;
}

.demo-video-section__heading {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 4.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.demo-video-section__heading span {
	color: var(--color-sky);
}

.demo-video-section__subtext {
	margin: 18px 0 0;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	line-height: 1.5;
	color: var(--color-muted);
}

/* ── Stage: max-width + glow rings ───────────────────────── */
.demo-video-section__stage {
	position: relative;
	width: 100%;
	max-width: 1080px;
}

.demo-video-section__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(56px);
}

.demo-video-section__glow--left {
	left: -80px;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(36, 159, 249, 0.18), transparent 70%);
}

.demo-video-section__glow--right {
	right: -80px;
	top: 50%;
	transform: translateY(-50%);
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(235, 150, 9, 0.13), transparent 70%);
}

/* ── Frame: rounded video shell ──────────────────────────── */
.demo-video-section__frame {
	position: relative;
	z-index: 1;
	border-radius: 28px;
	overflow: hidden;
	background: #0d0d0d;
	height: var(--gr-video-height, 560px);
	box-shadow:
		0 0 0 1px rgba(36, 159, 249, 0.22),
		0 0 0 6px rgba(36, 159, 249, 0.07),
		0 32px 64px rgba(0, 0, 0, 0.22),
		0 8px 24px rgba(0, 0, 0, 0.14);
}

/* ── iframe fills the frame ──────────────────────────────── */
.demo-video-section__embed-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.4s ease 0.1s;
}

.demo-video-section__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ── HTML5 <video> also fills the frame ─────────────────── */
.demo-video-section__video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 28px;
	object-fit: cover;
}

/* ============================================================
   CUSTOM PLAY BUTTON OVERLAY
   Shown over a poster image for YouTube / Vimeo.
   JS adds .is-playing to .demo-video-section__frame on click,
   which hides the overlay and reveals the iframe.
   ============================================================ */

/* Poster image layer */
.demo-video-section__poster {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-color: #111111;
	background-size: cover;
	background-position: center;
	transition: opacity 0.35s ease;
}

/* Vignette overlay on the poster */
.demo-video-section__poster::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.52) 100%);
	border-radius: inherit;
}

/* Play button positioned over the poster */
.demo-video-section__play {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 0;
	background: transparent;
	padding: 0;
	transition: opacity 0.35s ease;
}

.demo-video-section__play-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
	box-shadow:
		0 0 0 12px rgba(255, 255, 255, 0.18),
		0 18px 42px rgba(0, 0, 0, 0.38);
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.demo-video-section__play:hover .demo-video-section__play-inner,
.demo-video-section__play:focus-visible .demo-video-section__play-inner {
	transform: scale(1.12);
	background: var(--color-sky, #249ff9);
	box-shadow:
		0 0 0 14px rgba(36, 159, 249, 0.22),
		0 20px 48px rgba(0, 0, 0, 0.42);
}

/* CSS triangle — the "play" arrow */
.demo-video-section__play-icon {
	width: 0;
	height: 0;
	margin-left: 6px; /* nudge right to visually centre in circle */
	border-style: solid;
	border-width: 18px 0 18px 32px;
	border-color: transparent transparent transparent #111111;
	transition: border-color 0.22s ease;
}

.demo-video-section__play:hover .demo-video-section__play-icon,
.demo-video-section__play:focus-visible .demo-video-section__play-icon {
	border-color: transparent transparent transparent #ffffff;
}

/* ── Transition to "playing" state ─────────────────────────
   JS adds .is-playing to .demo-video-section__frame          */

.demo-video-section__frame.is-playing .demo-video-section__poster,
.demo-video-section__frame.is-playing .demo-video-section__play {
	opacity: 0;
	pointer-events: none;
}

.demo-video-section__frame.is-playing .demo-video-section__embed-wrap {
	opacity: 1;
}

/* No-poster fallback: show iframe immediately */
.demo-video-section__frame.no-poster .demo-video-section__embed-wrap {
	opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
	.demo-video-section {
		padding: 64px 0 80px;
	}

	.demo-video-section__inner {
		gap: 40px;
	}

	.demo-video-section__frame {
		border-radius: 20px;
		height: max(300px, calc(var(--gr-video-height, 560px) * 0.72));
	}

	.demo-video-section__video {
		border-radius: 20px;
	}

	.demo-video-section__glow--left {
		left: -50px;
		width: 220px;
		height: 220px;
	}

	.demo-video-section__glow--right {
		right: -50px;
		width: 200px;
		height: 200px;
	}

	.demo-video-section__play-inner {
		width: 72px;
		height: 72px;
	}

	.demo-video-section__play-icon {
		border-width: 14px 0 14px 26px;
		margin-left: 4px;
	}
}

@media (max-width: 600px) {
	.demo-video-section {
		padding: 52px 0 68px;
	}

	.demo-video-section__inner {
		gap: 28px;
	}

	.demo-video-section__frame {
		border-radius: 14px;
		height: max(220px, calc(var(--gr-video-height, 560px) * 0.5));
	}

	.demo-video-section__video {
		border-radius: 14px;
	}

	.demo-video-section__glow--left,
	.demo-video-section__glow--right {
		display: none;
	}

	.demo-video-section__play-inner {
		width: 60px;
		height: 60px;
	}

	.demo-video-section__play-icon {
		border-width: 11px 0 11px 20px;
		margin-left: 3px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.demo-video-section__poster,
	.demo-video-section__embed-wrap,
	.demo-video-section__play-inner,
	.demo-video-section__play-icon {
		transition: none;
	}
}






/* ============================================================
   PLATFORM PAGE  — MOBILE-FIRST ADDITIONS & OVERRIDES
   Add this file after your main style.css (or append to it).
   Covers:
     1. Platform video frame (hero + CTA)
     2. Event-type tabs – full mobile overhaul
     3. General platform-page mobile polish
   ============================================================ */


/* ── 1. PLATFORM VIDEO FRAME ──────────────────────────────── */

.platform-video-frame {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #0d0d0d;
	box-shadow:
		0 0 0 1px rgba(36, 159, 249, 0.22),
		0 0 0 6px rgba(36, 159, 249, 0.07),
		0 32px 64px rgba(0, 0, 0, 0.22),
		0 8px 24px rgba(0, 0, 0, 0.14);
	/* aspect-ratio keeps the frame proportional on every screen */
	aspect-ratio: 16 / 9;
	width: 100%;
}

/* Browser chrome bar at top of the "window" */
.platform-video-frame__chrome {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: linear-gradient(180deg, rgba(30, 30, 30, 0.92), transparent);
}

.platform-video-frame__dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.platform-video-frame__dot:nth-child(1) { background: #ff5f57; }
.platform-video-frame__dot:nth-child(2) { background: #febc2e; }
.platform-video-frame__dot:nth-child(3) { background: #28c840; }

/* The actual <video> element fills the frame */
.platform-video-frame__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

/* Hero — video sits on the right column */
.platform-hero__visual--video {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: unset;       /* override the device-era min-height */
}

/* CTA — video sits on the right column */
.platform-cta__visual--video {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: unset;
}

.platform-video-frame--cta {
	border-radius: 20px;
}


/* ── 2. EVENT-TYPE TABS – FULL MOBILE OVERHAUL ────────────── */

/*
 * DESKTOP (> 768 px):
 *   – Regular horizontal pill tablist, hidden select
 *
 * MOBILE (≤ 768 px):
 *   – Tablist hidden, native <select> styled as a pill chooser
 *   – Panels stacked, visual section collapses gracefully
 */

/* Scroll-wrap + right fade for small screens where tabs overflow */
.platform-tabset__scroll-wrap {
	position: relative;
}

.platform-tabset__fade-right {
	display: none;   /* shown only on narrow screens – see below */
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 56px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92));
	border-radius: 0 999px 999px 0;
	pointer-events: none;
	z-index: 2;
}

/* The events-specific tablist allows horizontal scroll */
.platform-tabset__list--events {
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	gap: 0;
}

.platform-tabset__list--events::-webkit-scrollbar {
	display: none;
}

.platform-tabset__list--events .platform-tabset__button {
	scroll-snap-align: start;
	flex-shrink: 0;
}

/* Select dropdown — hidden on desktop, shown on mobile */
.platform-event-select-wrap {
	display: none;
	position: relative;
	margin: 0 auto 20px;
	max-width: 480px;
	width: 100%;
}

.platform-event-select {
	width: 100%;
	padding: 14px 48px 14px 22px;
	border: 2px solid rgba(36, 159, 249, 0.32);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-ink);
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.platform-event-select:focus {
	outline: 2px solid var(--color-sky);
	outline-offset: 2px;
}

.platform-event-select__arrow {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--color-sky);
	border-bottom: 2px solid var(--color-sky);
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}


/* ── Event card inner layout ────────────────────────────────
   On mobile the two-column grid (copy | visual) goes single-
   column.  The visual (tablet + phone devices) also shrinks.  */

.platform-tab-panel--event {
	/* desktop default: two columns */
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
}

/* Visual area inside the event card */
.platform-event-card__visual {
	position: relative;
	min-height: 380px;
}


/* ── 3. GENERAL PLATFORM-PAGE MOBILE POLISH ──────────────── */

/* Slightly tighter section padding on mid screens */
@media (max-width: 1100px) {
	.platform-hero__grid {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.platform-hero__copy {
		order: 1;
		max-width: 760px;
	}

	.platform-hero__visual--video {
		order: 2;
		width: 100%;
		max-width: 720px;
	}

	.platform-page__description {
		margin-left: auto;
		margin-right: auto;
	}

	.platform-page__actions {
		justify-content: center;
	}

	.platform-cta__grid {
		grid-template-columns: 1fr;
	}

	.platform-cta__copy {
		text-align: center;
		max-width: 100%;
	}

	.platform-cta__copy p {
		margin-left: auto;
		margin-right: auto;
	}

	.platform-cta__copy .button {
		display: inline-block;
	}

	.platform-cta__visual--video {
		width: 100%;
		max-width: 680px;
		margin: 0 auto;
	}
}


/* ── ≤ 768 px: MOBILE CORE ──────────────────────────────── */
@media (max-width: 768px) {

	/* --- Event tabs: hide scrolling tablist, show select --- */
	.platform-tabset__scroll-wrap {
		display: none;
	}

	.platform-event-select-wrap {
		display: block;
	}

	/* --- Event card: single-column stacked layout ---------- */
	.platform-tab-panel--event {
		grid-template-columns: 1fr;
	}

	.platform-event-card__copy {
		text-align: center;
	}

	.platform-bullet-list {
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	/* --- Event card visual: reduce min-height, centre items  */
	.platform-event-card__visual {
		min-height: 300px;
	}

	/* On mobile the absolute-positioned devices overlap badly.
	   Switch to a simple flex row, side by side, centered.    */
	.platform-event-card__visual {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		gap: 16px;
		padding-bottom: 8px;
	}

	.platform-device--event-tablet,
	.platform-device--event-phone {
		position: static;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
	}

	.platform-device--event-tablet {
		width: min(100%, 170px);
	}

	.platform-device--event-phone {
		width: 110px;
	}

	/* --- Event card padding ---------------------------------  */
	.platform-event-card {
		padding: 28px 18px 22px;
		border-radius: 20px;
	}

	/* --- Feature tabset: single-column panel --------------- */
	.platform-tab-panel--feature {
		grid-template-columns: 1fr;
	}

	.platform-tab-panel__copy {
		text-align: center;
	}

	.platform-check-list {
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	.platform-tab-panel__visual--devices {
		min-height: auto;
		justify-content: center;
		gap: 16px;
	}

	/* --- Video frame on smaller screens -------------------- */
	.platform-video-frame {
		border-radius: 14px;
	}

	.platform-video-frame--cta {
		border-radius: 14px;
	}

	.platform-video-frame__chrome {
		padding: 8px 12px;
	}

	.platform-video-frame__dot {
		width: 8px;
		height: 8px;
	}

	/* --- Hero copy ----------------------------------------- */
	.platform-page__actions {
		flex-direction: column;
		width: 100%;
	}

	.platform-page__actions .button {
		width: 100%;
		min-width: 0;
	}

	/* --- Proof grid: single column ------------------------- */
	.platform-proof__grid {
		grid-template-columns: 1fr;
	}

	.platform-proof-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.platform-proof-card__badge {
		margin: 0 auto;
	}
}


/* ── ≤ 600 px: SMALL PHONES ─────────────────────────────── */
@media (max-width: 600px) {

	.platform-event-types__grid {
		grid-template-columns: 1fr;
	}

	.platform-event-types__intro {
		text-align: center;
		padding-right: 0;
	}

	.platform-event-types__intro p {
		margin-left: auto;
		margin-right: auto;
	}

	/* Small phone: prioritise actual mobile screenshots */
	.platform-device--event-phone {
		display: flex;
		width: min(100%, 156px);
	}

	.platform-device--event-tablet {
		display: none;
	}

	/* Feature device phones — keep the mobile screenshot visible */
	.platform-tab-panel__visual--devices {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 14px;
		margin-top: 18px;
	}

	.platform-tab-panel__visual--devices .platform-device--phone-md {
		display: flex;
		width: min(100%, 156px);
	}

	.platform-tab-panel__visual--devices .platform-device--phone-xl {
		display: none;
	}

	/* Video frame on very small screens */
	.platform-video-frame {
		border-radius: 10px;
	}

	.platform-video-frame__chrome {
		display: none;   /* hide browser chrome on tiny screens */
	}

	/* Tabset list – keep it visible on feature tabs but scroll */
	.platform-tabset__list {
		padding: 8px 12px;
	}

	.platform-tabset__button {
		font-size: 0.9rem;
		padding: 0 12px;
	}

	/* Event select – larger touch target */
	.platform-event-select {
		padding: 16px 48px 16px 20px;
		font-size: 0.95rem;
	}
}


/* ── ≤ 480 px: EXTRA-SMALL ───────────────────────────────── */
@media (max-width: 480px) {

	.platform-hero,
	.platform-suite,
	.platform-event-types,
	.platform-proof,
	.platform-cta {
		padding: 40px 0 52px;
	}

	.platform-page__headline,
	.platform-cta__copy h2,
	.platform-event-types__intro h2,
	.platform-tab-panel__copy h3,
	.platform-event-card__copy h3 {
		font-size: clamp(1.75rem, 8.5vw, 2.4rem);
	}

	.platform-page__description,
	.platform-proof__intro,
	.platform-cta__copy p,
	.platform-event-types__intro p,
	.platform-tab-panel__lead,
	.platform-check-list li,
	.platform-bullet-list li,
	.platform-proof-card p {
		font-size: 0.96rem;
	}

	.platform-event-card {
		padding: 22px 14px 18px;
		border-radius: 16px;
	}
}


/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
	.platform-video-frame__video {
		/* Still show video but disable autoplay effectively via CSS.
		   The 'autoplay muted loop' attrs handle actual behaviour;
		   this just cancels any CSS animations/transitions on the el. */
		animation: none;
		transition: none;
	}
}


/* ============================================================
   JS HOOK: event tabs wired to native <select>
   Add to your existing tabset JS or create a new block.

   JS snippet to paste in your theme's JS file:
   ──────────────────────────────────────────────────────────

   document.querySelectorAll( '.platform-event-select' ).forEach( select => {
     select.addEventListener( 'change', e => {
       const target = e.currentTarget.value;         // e.g. "event-2"
       const group  = select.closest( '[data-tab-group]' );
       if ( ! group ) return;

       // deactivate all panels + buttons
       group.querySelectorAll( '.platform-tabset__button' ).forEach( btn => {
         btn.classList.remove( 'is-active' );
         btn.setAttribute( 'aria-selected', 'false' );
       });
       group.querySelectorAll( '.platform-tab-panel' ).forEach( panel => {
         panel.classList.remove( 'is-active' );
         panel.hidden = true;
       });

       // activate chosen panel
       const btn   = group.querySelector( `[data-tab-button="${target}"]` );
       const panel = group.querySelector( `[data-tab-panel="${target}"]` );
       if ( btn )   { btn.classList.add( 'is-active' ); btn.setAttribute( 'aria-selected', 'true' ); }
       if ( panel ) { panel.classList.add( 'is-active' ); panel.hidden = false; }
     });
   });

   // Keep select in sync when desktop tabs are clicked
   document.querySelectorAll( '[data-tab-group="platform-events"] .platform-tabset__button' ).forEach( btn => {
     btn.addEventListener( 'click', () => {
       const val    = btn.dataset.tabButton;
       const select = btn.closest( '[data-tab-group]' )
                        ?.previousElementSibling
                        ?.querySelector( '.platform-event-select' );
       // fallback: search entire section
       const sel2 = btn.closest( '.platform-tabset--card' )?.querySelector( '.platform-event-select' );
       if ( sel2 ) sel2.value = val;
     });
   });
   ============================================================ */



   /* ============================================================
   SOLUTIONS DROPDOWN
   Rich two-line sub-menu items matching Grupio 2026 theme.
   ============================================================ */

/* Ensure the Solutions item from the WordPress menu
   inherits the same separator as the rest of the menu */
.solutions-nav-item {
	display: inline-flex;
	align-items: center;
	position: relative;
}

/* Override the generic sub-menu with a wider, richer panel */
.solutions-sub-menu,
.solutions-nav-item > .sub-menu {
	min-width: 300px !important;
	padding: 10px 8px !important;
	border-radius: 20px !important;
}

/* Each solution link: icon + two-line text side by side */
.solutions-sub-menu .menu-item a,
.solutions-nav-item > .sub-menu .menu-item a {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	padding: 10px 14px !important;
	border-radius: 12px !important;
	transition: background 0.18s ease !important;
	white-space: normal !important;
}

.solutions-sub-menu .menu-item a:hover,
.solutions-sub-menu .menu-item a:focus-visible,
.solutions-nav-item > .sub-menu .menu-item a:hover,
.solutions-nav-item > .sub-menu .menu-item a:focus-visible {
	background: rgba(36, 159, 249, 0.07) !important;
}

/* Emoji icon badge */
.solutions-sub-menu__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 10px;
	background: rgba(36, 159, 249, 0.09);
	border: 1px solid rgba(36, 159, 249, 0.18);
	font-size: 1.1rem;
}

.solutions-sub-menu__icon img {
	width: 22px;
	height: 22px;
	display: block;
	object-fit: contain;
}

/* Text column */
.solutions-sub-menu__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.solutions-sub-menu__text strong {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-ink);
	line-height: 1.2;
}

.solutions-sub-menu__text em {
	display: block;
	font-style: normal;
	font-size: 0.82rem;
	color: var(--color-muted);
	line-height: 1.3;
}

/* Divider between items — optional thin rule */
.solutions-sub-menu .menu-item + .menu-item,
.solutions-nav-item > .sub-menu .menu-item + .menu-item {
	border-top: 1px solid rgba(64, 140, 195, 0.08);
}

/* Mobile: solutions items stack nicely in the open panel */
@media (max-width: 900px) {
	.solutions-sub-menu,
	.solutions-nav-item > .sub-menu {
		min-width: 0 !important;
		padding: 6px 0 0 !important;
	}

	.solutions-sub-menu .menu-item a,
	.solutions-nav-item > .sub-menu .menu-item a {
		padding: 10px 0 !important;
	}

	.solutions-sub-menu__icon {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}
}
