/* =========================================================
   IPA MOBILE HERO
   ========================================================= */
.ipmobile-hero {
	--ip-red: #ed1c24;
	--ip-red-dark: #c90008;
	--ip-red-light: #fff0f1;
	--ip-black: #08090b;
	--ip-gray: #667085;
	--ip-light: #f5f5f5;

	position: relative;
	width: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, #fafafa 0%, #f4f4f4 100%);
	border-radius: 0;
	color: var(--ip-black);
	font-family: inherit;
	box-sizing: border-box;
}

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

/* =========================================================
   BACKGROUND
   ========================================================= */
.ipmobile-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.ipmobile-wave {
	position: absolute;
	width: 120%;
	height: 300px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transform: rotate(-8deg);
	opacity: 0.7;
}

.wave-1 {
	right: -20%;
	bottom: -80px;
	box-shadow:
		0 -30px 0 rgba(0, 0, 0, 0.025),
		0 -60px 0 rgba(0, 0, 0, 0.025),
		0 -90px 0 rgba(0, 0, 0, 0.025);
}

.wave-2 {
	left: -25%;
	bottom: -130px;
	transform: rotate(8deg);
	box-shadow:
		0 -35px 0 rgba(0, 0, 0, 0.025),
		0 -70px 0 rgba(0, 0, 0, 0.025),
		0 -105px 0 rgba(0, 0, 0, 0.025);
}

.wave-3 {
	right: -20%;
	top: 25%;
	transform: rotate(-15deg);
	opacity: 0.35;
}

.ipmobile-glow {
	position: absolute;
	width: 500px;
	height: 500px;
	right: 2%;
	top: 10%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(237, 28, 36, 0.18), rgba(237, 28, 36, 0) 70%);
	filter: blur(10px);
}

/* =========================================================
   CONTAINER
   ========================================================= */
.ipmobile-container {
	position: relative;
	z-index: 2;
	max-width: 1350px;
	min-height: 650px;
	margin: auto;
	padding: 70px 60px 20px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
	gap: 30px;
	align-items: center;
}

/* =========================================================
   LOGO
   ========================================================= */
.ipmobile-logo {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
	width: 100%;
	position: relative;
	--ipa-logo-x: 0px;
	--ipa-logo-y: 0px;
	transform: translate(var(--ipa-logo-x), var(--ipa-logo-y));
}

.ipmobile-logo-img {
	display: block;
	max-width: 280px;
	width: 100%;
	height: auto;
}

.ip-logo-symbol {
	position: relative;
	width: 95px;
	height: 75px;
	color: var(--ip-red);
	font-size: 67px;
	line-height: 0.8;
	font-weight: 900;
	letter-spacing: -8px;
}

.ip-logo-symbol span {
	display: block;
	transform: scaleX(0.9);
}

.ip-logo-text {
	margin-left: 8px;
	font-size: 65px;
	line-height: 0.8;
	letter-spacing: -5px;
	font-weight: 800;
	color: #050505;
}

/* =========================================================
   COPY
   ========================================================= */
.ipmobile-kicker {
	margin-bottom: 12px;
	color: var(--ip-red);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ipmobile-copy h1 {
	margin: 0;
	max-width: 900px;
	font-size: clamp(56px, 7vw, 96px);
	line-height: 1;
	letter-spacing: -0.05em;
	font-weight: 900;
	color: #000;
}

.ipmobile-copy h1 .ipmobile-title-main {
	display: inline-block;
	white-space: nowrap;
	color: #000 !important;
	font-weight: 900 !important;
	-webkit-text-stroke: 0.35px #000;
}

.ipmobile-copy h1 .ipmobile-title-accent,
.ipmobile-copy h1 span {
	display: block;
	margin-top: 8px;
	color: var(--ip-red);
	font-size: 0.48em;
	font-weight: 500;
	letter-spacing: -0.02em;
	white-space: normal;
}

.ipmobile-line {
	width: 75px;
	height: 4px;
	margin: 28px 0;
	background: var(--ip-red);
	border-radius: 10px;
	position: relative;
}

.ipmobile-line::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--ip-red);
	animation: ipLinePulse 2.5s infinite;
}

@keyframes ipLinePulse {
	0% {
		transform: scaleX(0);
		transform-origin: left;
		opacity: 0.8;
	}

	50% {
		transform: scaleX(1);
		transform-origin: left;
		opacity: 1;
	}

	100% {
		transform: scaleX(0);
		transform-origin: right;
		opacity: 0.7;
	}
}

.ipmobile-lead {
	max-width: 700px;
	margin: 0 0 22px;
	font-size: 17px;
	line-height: 1.75;
	color: #202124;
}

.ipmobile-text {
	max-width: 700px;
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.7;
	color: #303238;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.ipmobile-actions {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.ipmobile-btn {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 15px 24px;
	border-radius: 8px;
	background: var(--ip-red);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 10px 25px rgba(237, 28, 36, 0.2);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.ipmobile-btn span {
	font-size: 20px;
	transition: transform 0.25s ease;
}

.ipmobile-btn:hover {
	background: var(--ip-red-dark);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(237, 28, 36, 0.3);
	color: #fff !important;
}

.ipmobile-btn:hover span {
	transform: translateX(5px);
}

.ipmobile-link {
	color: #111 !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid #111;
	padding-bottom: 3px;
}

.ipmobile-link:hover {
	color: var(--ip-red) !important;
	border-bottom-color: var(--ip-red);
}

/* =========================================================
   VISUAL
   ========================================================= */
.ipmobile-visual {
	position: relative;
	height: 520px;
	min-width: 450px;
}

.ipmobile-visual--image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ipmobile-visual-img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	max-height: 520px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(18px 24px 28px rgba(0, 0, 0, 0.22));
	animation: ipPhoneFloat 5s ease-in-out infinite;
}

.ipmobile-red-orb {
	position: absolute;
	width: 420px;
	height: 420px;
	right: 0;
	top: 40px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(237, 28, 36, 0.35),
		rgba(237, 28, 36, 0.08) 50%,
		transparent 70%
	);
	animation: ipOrb 5s ease-in-out infinite;
}

@keyframes ipOrb {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.08);
		opacity: 1;
	}
}

/* =========================================================
   PHONE
   ========================================================= */
.ipmobile-phone {
	position: absolute;
	right: 70px;
	top: 25px;
	width: 250px;
	height: 485px;
	transform: rotate(8deg);
	z-index: 3;
	filter: drop-shadow(25px 30px 30px rgba(0, 0, 0, 0.25));
	animation: ipPhoneFloat 5s ease-in-out infinite;
}

@keyframes ipPhoneFloat {
	0%,
	100% {
		transform: rotate(8deg) translateY(0);
	}

	50% {
		transform: rotate(6deg) translateY(-12px);
	}
}

.ipmobile-visual--image .ipmobile-visual-img {
	transform: none;
}

.ipmobile-visual--image .ipmobile-visual-img {
	animation-name: ipImageFloat;
}

@keyframes ipImageFloat {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.phone-frame {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 9px;
	border-radius: 38px;
	background: linear-gradient(145deg, #333, #050505);
}

.phone-screen {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 31px;
	background: linear-gradient(160deg, #550006, #e30613 55%, #400003);
}

.phone-camera {
	position: absolute;
	z-index: 5;
	left: 50%;
	top: 17px;
	width: 95px;
	height: 25px;
	transform: translateX(-50%);
	border-radius: 20px;
	background: #000;
}

.phone-status {
	position: absolute;
	top: 14px;
	left: 20px;
	right: 20px;
	z-index: 6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
}

.phone-signal {
	display: inline-flex;
	align-items: flex-end;
	gap: 1.5px;
	height: 10px;
}

.phone-signal-bar {
	display: block;
	width: 2.5px;
	border-radius: 1px;
	background: #fff;
	opacity: 0.95;
}

.phone-signal-bar:nth-child(1) {
	height: 3px;
}

.phone-signal-bar:nth-child(2) {
	height: 5px;
}

.phone-signal-bar:nth-child(3) {
	height: 7px;
}

.phone-signal-bar:nth-child(4) {
	height: 10px;
}

.phone-world {
	position: absolute;
	width: 360px;
	height: 360px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15), transparent 60%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.08);
}

.world-grid {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: repeating-linear-gradient(0deg, transparent 0 12px, rgba(255, 255, 255, 0.07) 13px);
	opacity: 0.6;
}

.world-dot {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	box-shadow:
		0 0 15px #fff,
		0 0 30px #fff;
	animation: ipDot 2s infinite;
}

.wd-1 {
	left: 38%;
	top: 35%;
}

.wd-2 {
	left: 61%;
	top: 44%;
	animation-delay: 0.5s;
}

.wd-3 {
	left: 46%;
	top: 65%;
	animation-delay: 1s;
}

.wd-4 {
	left: 70%;
	top: 62%;
	animation-delay: 1.5s;
}

@keyframes ipDot {
	0%,
	100% {
		transform: scale(0.7);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.5);
		opacity: 1;
	}
}

.phone-label {
	position: absolute;
	bottom: 35px;
	left: 25px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.phone-label strong {
	font-size: 18px;
	letter-spacing: 0.05em;
}

.phone-label span {
	font-size: 11px;
	opacity: 0.7;
}

/* =========================================================
   SIM CARD
   ========================================================= */
.ipmobile-sim-wrap {
	position: absolute;
	z-index: 5;
	left: 110px;
	bottom: 70px;
	width: 118px;
	height: 160px;
	--sim-scale: 1;
	transform: rotate(-7deg) scale(var(--sim-scale));
	transform-origin: center bottom;
	transition: transform 0.4s ease;
	pointer-events: auto;
	cursor: default;
}

.ipmobile-sim-wrap:hover {
	transform: rotate(-3deg) translateY(-12px) scale(var(--sim-scale));
}

.ipmobile-sim-ground {
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 100px;
	height: 22px;
	transform: translateX(-42%) rotate(7deg);
	border-radius: 50%;
	background: radial-gradient(
		ellipse at center,
		rgba(40, 30, 30, 0.35) 0%,
		rgba(40, 30, 30, 0.14) 45%,
		transparent 72%
	);
	filter: blur(3px);
	z-index: 0;
}

.ipmobile-sim {
	--sim-gold: #ecd57c;
	--sim-a-gold: rgba(249, 242, 215, 0.4);
	--sim-line: #878687;
	--sim-white-line: #ecebea;

	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 14px 12px;
	border-radius: 0;
	background-color: #fff;
	background-image:
		linear-gradient(
			145deg,
			#ffffff 0%,
			#f7f7f7 42%,
			#ebebeb 100%
		),
		radial-gradient(
			circle at 22% 28%,
			rgba(255, 255, 255, 0.9) 0%,
			transparent 55%
		);
	/* Real SIM shape: rounded corners, diagonal cut ONLY on top-right */
	clip-path: path(
		"M 12 0 H 94 L 118 24 V 148 Q 118 160 106 160 H 12 Q 0 160 0 148 V 12 Q 0 0 12 0 Z"
	);
	-webkit-clip-path: path(
		"M 12 0 H 94 L 118 24 V 148 Q 118 160 106 160 H 12 Q 0 160 0 148 V 12 Q 0 0 12 0 Z"
	);
	filter:
		drop-shadow(-3px 4px 3px rgba(64, 53, 53, 0.22))
		drop-shadow(-8px 12px 14px rgba(64, 53, 53, 0.36))
		drop-shadow(-1px 1px 0 rgba(255, 255, 255, 0.65));
}

.ipmobile-sim::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.55) 0%,
		transparent 34%,
		transparent 62%,
		rgba(0, 0, 0, 0.06) 100%
	);
}

.ipmobile-sim::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 10%;
	right: 0;
	left: 0;
	margin: auto;
	width: 70%;
	height: 47%;
	box-sizing: border-box;
	border: 3px solid var(--sim-white-line);
	border-radius: 15px;
	background-color: var(--sim-gold);
	background-image:
		radial-gradient(
			circle at 30% 30%,
			var(--sim-a-gold) 0%,
			transparent 70%,
			transparent 100%
		),
		radial-gradient(
			50% 28.1% at 65% 10%,
			var(--sim-gold) 0%,
			var(--sim-gold) 50%,
			transparent 50%,
			transparent 100%
		),
		linear-gradient(
			90deg,
			transparent 0%,
			transparent 35%,
			var(--sim-line) 35%,
			var(--sim-line) 37%,
			var(--sim-gold) 37%,
			var(--sim-gold) 63%,
			var(--sim-line) 63%,
			var(--sim-line) 65%,
			transparent 65%,
			transparent 100%
		),
		linear-gradient(
			0deg,
			transparent 0%,
			transparent 24%,
			var(--sim-line) 24%,
			var(--sim-line) 26%,
			transparent 26%,
			transparent 49%,
			var(--sim-line) 49%,
			var(--sim-line) 51%,
			transparent 51%,
			transparent 74%,
			var(--sim-line) 74%,
			var(--sim-line) 76%,
			transparent 76%,
			transparent 100%
		);
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	pointer-events: none;
	z-index: 1;
}

.sim-logo {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	line-height: 1;
}

.sim-logo-mark {
	display: block;
	width: 36px;
	height: auto;
	overflow: visible;
}

.sim-logo-mark .logo-path {
	fill: var(--ip-red, #ed1c24);
}

.sim-logo-fallback {
	color: var(--ip-red);
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -3px;
	line-height: 0.8;
}

.sim-logo-word {
	margin-left: 1px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #111;
}

/* =========================================================
   SIGNAL
   ========================================================= */
.ipmobile-signal {
	position: absolute;
	right: -15px;
	top: 120px;
	z-index: 2;
	display: flex;
	gap: 6px;
	align-items: flex-end;
}

.ipmobile-signal span {
	display: block;
	width: 8px;
	border-radius: 4px;
	background: var(--ip-red);
	animation: signal 0.9s infinite alternate;
}

.ipmobile-signal span:nth-child(1) {
	height: 12px;
}

.ipmobile-signal span:nth-child(2) {
	height: 22px;
	animation-delay: 0.2s;
}

.ipmobile-signal span:nth-child(3) {
	height: 32px;
	animation-delay: 0.4s;
}

.ipmobile-signal span:nth-child(4) {
	height: 42px;
	animation-delay: 0.6s;
}

@keyframes signal {
	from {
		opacity: 0.35;
		transform: scaleY(0.7);
	}

	to {
		opacity: 1;
		transform: scaleY(1);
	}
}

/* =========================================================
   NETWORK DOTS
   ========================================================= */
.ipmobile-network {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.network-dot {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ip-red);
	opacity: 0.35;
	animation: networkPulse 3s infinite;
}

.dot-1 {
	right: 10%;
	top: 10%;
}

.dot-2 {
	right: 30%;
	top: 25%;
	animation-delay: 0.5s;
}

.dot-3 {
	right: 5%;
	bottom: 25%;
	animation-delay: 1s;
}

.dot-4 {
	right: 40%;
	bottom: 10%;
	animation-delay: 1.5s;
}

.dot-5 {
	left: 20%;
	top: 30%;
	animation-delay: 2s;
}

.dot-6 {
	left: 5%;
	bottom: 20%;
	animation-delay: 2.5s;
}

@keyframes networkPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.2;
	}

	50% {
		transform: scale(3);
		opacity: 0.8;
	}
}

/* =========================================================
   FEATURES
   ========================================================= */
.ipmobile-features {
	position: relative;
	z-index: 5;
	max-width: 1350px;
	margin: 0 auto;
	padding: 24px 40px 42px;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	align-items: center;
	background: transparent;
}

.ipmobile-feature {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 0;
	padding: 8px 20px;
	margin: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	cursor: default;
	pointer-events: none;
	text-align: left;
	color: #111;
	font-family: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.ipmobile-feature::after {
	content: "";
	position: absolute;
	top: 18%;
	bottom: 18%;
	right: 0;
	width: 1px;
	background: #e5e5e5;
}

.ipmobile-feature:last-child::after {
	display: none;
}

.ipmobile-feature:hover,
.ipmobile-feature:focus,
.ipmobile-feature:active,
.ipmobile-feature.active {
	background: transparent;
	box-shadow: none;
	transform: none;
	outline: none;
}

.feature-icon {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 0;
	background: #efefef;
	color: #ed1c24;
	box-shadow: none;
}

.feature-icon svg {
	width: 36px;
	height: 36px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ipmobile-feature:hover .feature-icon,
.ipmobile-feature.active .feature-icon,
.ipmobile-feature:focus .feature-icon {
	background: #efefef;
	color: #ed1c24;
	border-color: transparent;
	box-shadow: none;
}

.feature-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.feature-content strong {
	font-size: 14px;
	line-height: 1.25;
	font-weight: 700;
	color: #1a1a1a;
}

.feature-content small {
	font-size: 12px;
	line-height: 1.35;
	font-weight: 400;
	color: #8a8a8a;
}

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

/* Large tablet / small desktop */
@media (max-width: 1200px) {
	.ipmobile-container {
		padding: 60px 40px 16px;
		gap: 24px;
		grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
		min-height: 0;
	}

	.ipmobile-visual {
		min-width: 0;
		height: 480px;
	}

	.ipmobile-phone {
		right: 40px;
		width: 220px;
		height: 426px;
	}

	.ipmobile-sim-wrap {
		left: 70px;
		bottom: 55px;
	}

	.ipmobile-features {
		padding: 18px 32px 36px;
	}

	.feature-icon {
		width: 64px;
		height: 64px;
	}

	.feature-icon svg {
		width: 32px;
		height: 32px;
	}
}

/* Tablet */
@media (max-width: 992px) {
	.ipmobile-container {
		grid-template-columns: 1fr;
		padding: 48px 28px 12px;
		gap: 12px;
	}

	.ipmobile-copy {
		text-align: center;
		order: 1;
	}

	.ipmobile-logo {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 100%;
		margin-top: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 28px !important;
		padding: 0;
		transform: none !important;
		position: relative;
		z-index: 2;
	}

	.ip-logo-symbol {
		width: 64px;
		height: 50px;
		font-size: 48px;
		letter-spacing: -5px;
	}

	.ip-logo-text {
		font-size: 46px;
		letter-spacing: -3px;
	}

	.ipmobile-logo-img {
		max-width: 220px;
		margin-left: auto;
		margin-right: auto;
	}

	.ipmobile-copy h1 {
		margin-top: 0 !important;
		margin-left: auto;
		margin-right: auto;
		font-size: clamp(40px, 6.5vw, 58px);
		position: relative;
		z-index: 1;
	}

	.ipmobile-copy h1 .ipmobile-title-main {
		white-space: normal;
	}

	.ipmobile-line {
		margin-left: auto;
		margin-right: auto;
	}

	.ipmobile-lead,
	.ipmobile-text {
		margin-left: auto;
		margin-right: auto;
	}

	.ipmobile-visual {
		order: 2;
		height: 420px;
		max-width: 480px;
		width: 100%;
		min-width: 0;
		margin: 10px auto 0;
	}

	.ipmobile-glow,
	.ipmobile-red-orb {
		width: 340px;
		height: 340px;
		right: 50%;
		transform: translateX(50%);
		top: 20px;
	}

	.ipmobile-phone {
		left: auto;
		right: 50%;
		top: 15px;
		width: 200px;
		height: 388px;
		margin-right: -115px;
	}

	.ipmobile-sim-wrap {
		left: 50%;
		bottom: 52px;
		margin-left: -168px;
		--sim-scale: 0.6;
	}

	.ipmobile-sim {
		padding: 12px 10px;
	}

	.ipmobile-sim::before {
		width: 70%;
		height: 47%;
		border-width: 3px;
		border-radius: 13px;
	}

	.sim-logo-mark {
		width: 30px;
	}

	.sim-logo-word {
		font-size: 8px;
	}

	.ipmobile-signal {
		right: 8%;
		top: 90px;
	}

	.ipmobile-features {
		order: 3;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 20px 24px 36px;
		gap: 0;
	}

	.ipmobile-feature {
		padding: 16px 14px;
		gap: 12px;
		align-items: flex-start;
	}

	.ipmobile-feature::after {
		top: auto;
		bottom: 0;
		right: 10%;
		left: 10%;
		width: auto;
		height: 1px;
	}

	/* Hide bottom divider on last row items; hide right-edge vertical feel */
	.ipmobile-feature:nth-child(even)::after {
		right: 10%;
		left: 10%;
	}

	.ipmobile-feature:nth-last-child(-n + 2)::after {
		display: none;
	}

	.feature-icon {
		width: 56px;
		height: 56px;
	}

	.feature-icon svg {
		width: 28px;
		height: 28px;
	}

	.feature-content {
		text-align: left;
	}

	.feature-content strong {
		font-size: 13px;
	}

	.feature-content small {
		font-size: 11px;
	}
}

/* Mobile */
@media (max-width: 650px) {
	.ipmobile-hero {
		overflow: hidden;
	}

	.ipmobile-container {
		padding: 36px 18px 8px;
		gap: 8px;
	}

	.ipmobile-logo {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		width: 100% !important;
		margin-top: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 22px !important;
		transform: none !important;
		position: relative;
		z-index: 2;
	}

	.ip-logo-symbol {
		width: 52px;
		height: 42px;
		font-size: 38px;
		letter-spacing: -5px;
	}

	.ip-logo-text {
		font-size: 36px;
		letter-spacing: -2.5px;
		margin-left: 4px;
	}

	.ipmobile-logo-img {
		max-width: 180px;
		margin-left: auto;
		margin-right: auto;
	}

	.ipmobile-copy h1 {
		margin-top: 0 !important;
		font-size: clamp(34px, 9vw, 44px);
		max-width: 100%;
		position: relative;
		z-index: 1;
	}

	.ipmobile-copy h1 .ipmobile-title-main {
		white-space: normal;
	}

	.ipmobile-copy h1 .ipmobile-title-accent,
	.ipmobile-copy h1 span {
		font-size: 0.52em;
		margin-top: 6px;
	}

	.ipmobile-line {
		width: 56px;
		height: 3px;
		margin: 18px auto;
	}

	.ipmobile-lead {
		font-size: 15px;
		line-height: 1.65;
		max-width: 100%;
	}

	.ipmobile-text {
		font-size: 14px;
		line-height: 1.6;
		max-width: 100%;
	}

	.ipmobile-visual {
		height: 360px;
		max-width: 340px;
		transform: none;
		margin: 4px auto 8px;
	}

	.ipmobile-glow,
	.ipmobile-red-orb {
		width: 260px;
		height: 260px;
		top: 10px;
	}

	.ipmobile-phone {
		width: 150px;
		height: 291px;
		top: 12px;
		right: 50%;
		margin-right: -78px;
		filter: drop-shadow(14px 18px 18px rgba(0, 0, 0, 0.22));
	}

	.phone-frame {
		padding: 7px;
		border-radius: 28px;
	}

	.phone-screen {
		border-radius: 22px;
	}

	.phone-camera {
		width: 70px;
		height: 18px;
		top: 12px;
	}

	.phone-label strong {
		font-size: 14px;
	}

	.ipmobile-sim-wrap {
		--sim-scale: 0.48;
		left: 50%;
		bottom: 42px;
		margin-left: -125px;
	}

	.ipmobile-sim {
		padding: 10px 8px;
		filter:
			drop-shadow(-2px 3px 2px rgba(64, 53, 53, 0.2))
			drop-shadow(-6px 10px 12px rgba(64, 53, 53, 0.32));
	}

	.ipmobile-sim::before {
		width: 70%;
		height: 47%;
		border-width: 2px;
		border-radius: 10px;
	}

	.ipmobile-sim-ground {
		width: 70px;
		height: 16px;
		bottom: -4px;
	}

	.sim-logo-mark {
		width: 24px;
	}

	.sim-logo-word {
		font-size: 7px;
	}

	.ipmobile-signal {
		display: none;
	}

	.ipmobile-features {
		grid-template-columns: 1fr;
		padding: 12px 16px 28px;
	}

	.ipmobile-feature {
		padding: 14px 4px;
		gap: 14px;
		align-items: center;
	}

	.ipmobile-feature::after {
		top: auto;
		right: 0;
		left: 0;
		bottom: 0;
		width: auto;
		height: 1px;
		display: block;
	}

	.ipmobile-feature:last-child::after {
		display: none;
	}

	.feature-icon {
		width: 52px;
		height: 52px;
	}

	.feature-icon svg {
		width: 26px;
		height: 26px;
	}

	.feature-content strong {
		font-size: 14px;
	}

	.feature-content small {
		font-size: 12px;
	}
}

/* Small phones */
@media (max-width: 380px) {
	.ipmobile-copy h1 {
		font-size: 28px;
	}

	.ip-logo-symbol {
		width: 48px;
		height: 40px;
		font-size: 36px;
	}

	.ip-logo-text {
		font-size: 34px;
	}

	.ipmobile-visual {
		height: 320px;
		max-width: 300px;
	}

	.ipmobile-phone {
		width: 132px;
		height: 256px;
		margin-right: -68px;
	}

	.ipmobile-sim-wrap {
		--sim-scale: 0.42;
		margin-left: -110px;
		bottom: 34px;
	}

	.ipmobile-sim::before {
		border-radius: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ipmobile-line::after,
	.ipmobile-red-orb,
	.ipmobile-phone,
	.ipmobile-visual-img,
	.world-dot,
	.ipmobile-signal span,
	.network-dot {
		animation: none !important;
	}

	.ipmobile-sim-wrap {
		transition: none;
	}
}
