:root {
	--black: #000000;
	--ink: #1d1d1f;
	--ink-2: #424245;
	--ink-3: #6e6e73;
	--line: #d2d2d7;
	--light: #f5f5f7;
	--white: #ffffff;
	--blue: #0071e3;
	--blue-hover: #0077ed;
	--green: #34c759;
}

body.wlan-landing {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
	background: var(--white);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

.wlan-landing * { box-sizing: border-box; }

.wlan-nav {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100; height: 60px;
	background: rgba(0,0,0,0.8);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
}
.wlan-nav-inner {
	max-width: 1024px; margin: 0 auto;
	padding: 0 22px; height: 100%;
	display: flex; align-items: center; justify-content: space-between;
}
.wlan-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	padding: 5px 12px;
	border-radius: 8px;
	height: auto;
	transition: background 0.2s ease;
}
.wlan-logo .dot { color: var(--blue); font-weight: 700; }
.wlan-nav-links {
	display: flex; gap: 0; list-style: none; align-items: center;
	margin: 0; padding: 0;
}
.wlan-nav-links li { padding: 0; }
.wlan-nav-links a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	font-size: 12px;
	font-weight: 400;
	padding: 0 12px;
	letter-spacing: -0.01em;
	transition: color 0.3s;
}
.wlan-nav-links a:hover { color: var(--white); }
.wlan-nav-portal { font-weight: 500 !important; }

.wlan-hero {
	background: var(--black);
	color: var(--white);
	padding: 100px 20px 60px;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.wlan-hero-glow {
	position: absolute;
	top: -200px; left: 50%;
	transform: translateX(-50%);
	width: 1200px; height: 800px;
	background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.25) 0%, transparent 60%);
	pointer-events: none;
}
.wlan-hero-content { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; }
.wlan-hero h1 {
	font-size: clamp(48px, 9vw, 96px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.04em;
	margin: 0 0 12px;
	color: var(--white);
}
.wlan-hero h2 {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 400;
	color: rgba(255,255,255,0.85);
	margin: 0 0 24px;
	letter-spacing: -0.01em;
}
.wlan-hero-tagline {
	font-size: clamp(16px, 2vw, 21px);
	color: rgba(255,255,255,0.7);
	max-width: 600px;
	margin: 0 auto 32px;
	font-weight: 400;
}
.wlan-hero-links {
	display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
	font-size: 19px;
	margin-bottom: 60px;
}
.wlan-hero-links a {
	color: var(--blue);
	text-decoration: none;
	font-weight: 400;
}
.wlan-hero-links a:hover { text-decoration: underline; }
.wlan-hero-links a::after {
	content: ' ›';
	display: inline-block;
	transition: transform 0.2s;
}
.wlan-hero-links a:hover::after { transform: translateX(3px); }

.wlan-hero-visual { max-width: 900px; margin: 0 auto; position: relative; }
.wlan-signal-display {
	background: linear-gradient(180deg, #1c1c1e 0%, #000 100%);
	border: 1px solid #2c2c2e;
	border-radius: 24px;
	padding: 60px 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.wlan-signal-stat { text-align: center; }
.wlan-signal-stat .num {
	font-size: clamp(48px, 7vw, 80px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	background: linear-gradient(180deg, #fff 0%, #999 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.wlan-signal-stat .unit {
	font-size: 24px;
	font-weight: 600;
	color: var(--ink-3);
	margin-left: 4px;
	-webkit-text-fill-color: var(--ink-3);
}
.wlan-signal-stat .label {
	font-size: 14px;
	color: var(--ink-3);
	margin-top: 8px;
	font-weight: 400;
}

.wlan-section {
	padding: 100px 22px;
	text-align: center;
}
.wlan-section-light { background: var(--light); }
.wlan-section-dark { background: var(--black); color: var(--white); }
.wlan-section-white { background: var(--white); }

.wlan-eyebrow {
	font-size: 21px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.wlan-section-dark .wlan-eyebrow { color: #2997ff; }

.wlan-section-title {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.04em;
	margin: 0 auto 16px;
	max-width: 900px;
	color: inherit;
}
.wlan-section-title .grad {
	background: linear-gradient(90deg, var(--blue) 0%, #4abdfe 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.wlan-section-sub {
	font-size: clamp(19px, 2.5vw, 28px);
	font-weight: 400;
	color: var(--ink-2);
	max-width: 720px;
	margin: 0 auto 60px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.wlan-section-dark .wlan-section-sub { color: rgba(255,255,255,0.7); }

.wlan-btn {
	display: inline-flex; align-items: center;
	padding: 12px 24px;
	border-radius: 980px;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer; border: none;
	font-family: inherit;
	min-height: 44px;
}
.wlan-btn-primary { background: var(--blue); color: var(--white); }
.wlan-btn-primary:hover { background: var(--blue-hover); color: var(--white); }
.wlan-btn-secondary {
	background: var(--white);
	color: var(--ink);
	border: 1px solid var(--line);
}
.wlan-section-dark .wlan-btn-secondary {
	background: transparent;
	color: var(--white);
	border-color: rgba(255,255,255,0.3);
}
.wlan-btn-secondary:hover { background: var(--light); }
.wlan-section-dark .wlan-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.wlan-btn-link {
	background: transparent;
	color: var(--blue);
	padding: 0;
	font-size: 17px;
	text-decoration: none;
}
.wlan-btn-link:hover { text-decoration: underline; }
.wlan-btn-link::after {
	content: ' ›';
	display: inline-block;
	transition: transform 0.2s;
}
.wlan-btn-link:hover::after { transform: translateX(3px); }

.wlan-btn-row {
	display: flex; justify-content: center;
	gap: 16px; flex-wrap: wrap;
	margin-top: 8px;
}

.wlan-packages-grid {
	max-width: 1200px; margin: 60px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: left;
}
.wlan-packages-grid-4 { max-width: 1400px; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1080px) {
	.wlan-packages-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 700px; }
}
.wlan-package {
	background: var(--white);
	border-radius: 22px;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	border: 1px solid transparent;
}
.wlan-package:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.wlan-package.featured {
	background: linear-gradient(180deg, #1d1d1f 0%, #000 100%);
	color: var(--white);
}
.wlan-package-tag {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.wlan-package.featured .wlan-package-tag {
	background: linear-gradient(90deg, #2997ff, #4abdfe);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.wlan-package-name {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 4px;
	line-height: 1.1;
}
.wlan-package-tagline {
	font-size: 17px;
	color: var(--ink-3);
	font-weight: 400;
	margin-bottom: 32px;
}
.wlan-package.featured .wlan-package-tagline { color: rgba(255,255,255,0.6); }
.wlan-package-speed {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 24px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-bottom: 24px;
}
.wlan-package.featured .wlan-package-speed { border-color: rgba(255,255,255,0.15); }
.wlan-package-speed .big {
	font-size: 56px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
}
.wlan-package-speed .lbl {
	font-size: 17px;
	color: var(--ink-3);
}
.wlan-package.featured .wlan-package-speed .lbl { color: rgba(255,255,255,0.6); }
.wlan-package-features {
	list-style: none;
	flex: 1;
	margin: 0 0 32px;
	padding: 0;
}
.wlan-package-features li {
	padding: 8px 0;
	font-size: 15px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--ink-2);
}
.wlan-package.featured .wlan-package-features li { color: rgba(255,255,255,0.85); }
.wlan-package-features li::before {
	content: '✓';
	color: var(--blue);
	font-weight: 700;
	flex-shrink: 0;
	width: 14px;
}
.wlan-package.featured .wlan-package-features li::before { color: #2997ff; }

.wlan-package-price-row { margin-bottom: 24px; }
.wlan-package-price {
	display: flex; align-items: baseline; gap: 4px;
	margin-bottom: 4px;
}
.wlan-package-price .from {
	font-size: 15px;
	color: var(--ink-3);
	margin-right: 4px;
}
.wlan-package.featured .wlan-package-price .from { color: rgba(255,255,255,0.6); }
.wlan-package-price .amt {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.wlan-package-price .per {
	font-size: 17px;
	color: var(--ink-3);
}
.wlan-package.featured .wlan-package-price .per { color: rgba(255,255,255,0.6); }
.wlan-package-equip {
	font-size: 13px;
	color: var(--ink-3);
}
.wlan-package.featured .wlan-package-equip { color: rgba(255,255,255,0.5); }
.wlan-package .wlan-btn {
	width: 100%;
	justify-content: center;
}

.wlan-map-wrap {
	max-width: 1200px;
	margin: 60px auto 0;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,0.12);
	position: relative;
}
.wlan-map-wrap iframe {
	width: 100%;
	height: 600px;
	border: 0;
	display: block;
}
.wlan-map-cta {
	max-width: 1100px;
	margin: 20px auto 0;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.wlan-map-cta-text {
	font-size: 16px;
	font-weight: 600;
	color: #143852;
	letter-spacing: -0.01em;
}
.wlan-map-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: #0071e3;
	color: #fff;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	box-shadow: 0 6px 20px rgba(0,113,227,0.25);
}
.wlan-map-cta-btn:hover {
	background: #0077ed;
	transform: translateY(-1px);
	color: #fff;
}
.wlan-map-cta-btn svg {
	flex-shrink: 0;
}
@media (max-width: 600px) {
	.wlan-map-cta {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.wlan-map-cta-btn {
		justify-content: center;
	}
}
.wlan-map-badge {
	position: absolute;
	top: 20px; left: 20px;
	background: rgba(0,0,0,0.85);
	backdrop-filter: blur(20px);
	color: var(--white);
	padding: 10px 18px;
	border-radius: 980px;
	font-size: 13px;
	font-weight: 500;
	display: flex; align-items: center; gap: 8px;
}
.wlan-map-badge::before {
	content: '';
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--green);
	animation: wlan-pulse 2s ease-in-out infinite;
}
@keyframes wlan-pulse {
	0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7); }
	50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
}

.wlan-feature-row {
	max-width: 1200px; margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	text-align: left;
	align-items: center;
}
.wlan-feature-row.reverse { direction: rtl; }
.wlan-feature-row.reverse > * { direction: ltr; }
.wlan-feature-text h3 {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0 0 20px;
}
.wlan-feature-text p {
	font-size: 21px;
	color: var(--ink-2);
	line-height: 1.4;
	font-weight: 400;
	margin: 0 0 24px;
}
.wlan-section-dark .wlan-feature-text p { color: rgba(255,255,255,0.75); }
.wlan-feature-visual {
	aspect-ratio: 1;
	border-radius: 22px;
	background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.wlan-feature-visual.dark {
	background: linear-gradient(135deg, #1c1c1e 0%, #000 100%);
}
.wlan-feature-visual svg { width: 60%; height: 60%; }

.wlan-steps-grid {
	max-width: 1200px; margin: 60px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: left;
}
.wlan-step {
	background: var(--white);
	border-radius: 22px;
	padding: 40px 32px;
	position: relative;
}
.wlan-step-num {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.wlan-step h3 {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 8px;
}
.wlan-step p {
	font-size: 17px;
	color: var(--ink-2);
	line-height: 1.4;
	margin: 0;
}
.wlan-step-icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue), #4abdfe);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 24px;
	color: var(--white);
}

.wlan-footer {
	background: var(--light);
	padding: 20px 22px 40px;
	font-size: 12px;
	color: var(--ink-3);
}
.wlan-footer-inner { max-width: 1024px; margin: 0 auto; }
.wlan-footer-top {
	padding: 32px 0;
	border-bottom: 1px solid var(--line);
	font-size: 12px;
	line-height: 1.6;
}
.wlan-footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding: 32px 0;
}
.wlan-footer-col h3 {
	font-size: 12px;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 12px;
}
.wlan-footer-col ul { list-style: none; margin: 0; padding: 0; }
.wlan-footer-col li { padding: 4px 0; }
.wlan-footer-col a {
	color: var(--ink-3);
	text-decoration: none;
	font-size: 12px;
}
.wlan-footer-col a:hover { text-decoration: underline; }
.wlan-footer-bottom {
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

@media (max-width: 900px) {
	.wlan-nav-inner { padding: 0 16px; }
	.wlan-nav-links a { padding: 0 8px; font-size: 11px; }

	.wlan-hero { padding: 80px 16px 40px; }
	.wlan-signal-display { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }

	.wlan-section { padding: 70px 16px; }

	.wlan-packages-grid { grid-template-columns: 1fr; gap: 16px; }

	.wlan-feature-row { grid-template-columns: 1fr; gap: 32px; }
	.wlan-feature-row.reverse { direction: ltr; }
	.wlan-feature-text { order: 2; }
	.wlan-feature-visual { order: 1; max-width: 400px; margin: 0 auto; width: 100%; }

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

	.wlan-map-wrap iframe { height: 400px; }

	.wlan-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
	.wlan-footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
	.wlan-nav-links li:not(:last-child) { display: none; }
}

/* === Hero video/poster/overlay (added 2026-05-12) === */
.wlan-hero {
	position: relative;
	min-height: 92vh;
	overflow: hidden;
}
.wlan-hero.has-video,
.wlan-hero.has-poster {
	background: #000;
}
.wlan-hero-video,
.wlan-hero-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.wlan-hero-video {
	opacity: 0.85;
}
.wlan-hero-poster {
	opacity: 0.7;
}
.wlan-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%),
		radial-gradient(ellipse at 30% 30%, rgba(0,113,227,0.18) 0%, transparent 60%);
	z-index: 1;
	pointer-events: none;
}
.wlan-hero-content {
	position: relative;
	z-index: 2;
}

/* New hero CTA buttons */
.wlan-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 60px;
}
.wlan-btn-primary,
.wlan-btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	border-radius: 980px;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: -0.01em;
	text-decoration: none;
	transition: all 0.2s ease;
	min-height: 48px;
}
.wlan-btn-primary {
	background: var(--blue);
	color: var(--white);
}
.wlan-btn-primary:hover {
	background: var(--blue-hover);
	color: var(--white);
}
.wlan-btn-secondary {
	background: rgba(255,255,255,0.08);
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.wlan-btn-secondary:hover {
	background: rgba(255,255,255,0.15);
	border-color: var(--white);
	color: var(--white);
}

@media (max-width: 600px) {
	.wlan-hero-buttons { flex-direction: column; align-items: stretch; padding: 0 20px; }
	.wlan-btn-primary, .wlan-btn-secondary { justify-content: center; }
}

/* === Contact form styling (dark section, 2026-05-13) === */
.wlan-contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.wlan-contact-form .field { margin-bottom: 14px; }
.wlan-contact-form .field label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.wlan-contact-form input[type="text"],
.wlan-contact-form input[type="tel"],
.wlan-contact-form input[type="email"],
.wlan-contact-form select,
.wlan-contact-form textarea {
	width: 100%;
	padding: 10px 14px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	color: var(--white);
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	transition: all 0.2s ease;
}
.wlan-contact-form input:focus,
.wlan-contact-form select:focus,
.wlan-contact-form textarea:focus {
	outline: none;
	border-color: var(--blue);
	background: rgba(255,255,255,0.12);
}
.wlan-contact-form input::placeholder,
.wlan-contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.wlan-contact-form select option { background: #1c1c1e; color: var(--white); }
.wlan-contact-form textarea { min-height: 100px; resize: vertical; }
.wlan-contact-form .wpcf7-spinner { background-color: rgba(255,255,255,0.5); }
.wlan-contact-form .wpcf7-response-output { border-color: var(--blue); color: var(--white); padding: 12px; border-radius: 8px; margin-top: 16px; }
.wlan-contact-form input[type="submit"] {
	width: 100%;
	padding: 14px 28px;
	margin-top: 8px;
	background: var(--blue);
	color: var(--white);
	border: none;
	border-radius: 980px;
	font-size: 17px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
}
.wlan-contact-form input[type="submit"]:hover { background: var(--blue-hover); }
@media (max-width: 600px) {
	.wlan-contact-form { padding: 20px; }
	.wlan-contact-form .row2 { grid-template-columns: 1fr; }
}

/* === Contact Page (2026-05-13) === */
.wlan-page-header {
	background: var(--black);
	color: var(--white);
	padding: 130px 22px 70px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.wlan-page-header-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.wlan-page-header h1 {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0 0 18px;
	color: var(--white);
}
.wlan-page-header p {
	font-size: clamp(17px, 2vw, 21px);
	color: rgba(255,255,255,0.75);
	line-height: 1.5;
	max-width: 600px;
	margin: 0 auto;
}

.wlan-contact-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 60px;
	align-items: start;
	text-align: left;
}
.wlan-contact-info { display: flex; flex-direction: column; gap: 14px; }
.wlan-info-card {
	display: flex;
	gap: 16px;
	padding: 20px 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
	align-items: center;
}
.wlan-info-card:hover:not(.wlan-info-card-static) {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border-color: var(--blue);
}
.wlan-info-icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--blue), #4abdfe);
	color: var(--white);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.wlan-info-label { font-size: 12px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.wlan-info-value { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.wlan-info-sub { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

.wlan-contact-form-wrap h2 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 8px;
}
.wlan-form-intro {
	font-size: 16px;
	color: var(--ink-2);
	margin: 0 0 24px;
}

/* Light theme override for contact form (when on white page) */
.wlan-contact-form-light input[type="text"],
.wlan-contact-form-light input[type="tel"],
.wlan-contact-form-light input[type="email"],
.wlan-contact-form-light select,
.wlan-contact-form-light textarea {
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--ink);
}
.wlan-contact-form-light input:focus,
.wlan-contact-form-light select:focus,
.wlan-contact-form-light textarea:focus {
	outline: none;
	border-color: var(--blue);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(0,113,227,0.1);
}
.wlan-contact-form-light input::placeholder,
.wlan-contact-form-light textarea::placeholder { color: var(--ink-3); }
.wlan-contact-form-light .field label { color: var(--ink-2); }
.wlan-contact-form-light select option { background: var(--white); color: var(--ink); }

@media (max-width: 900px) {
	.wlan-contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.wlan-page-header { padding: 100px 16px 50px; }
}

/* === Logo image sizing (2026-05-13) === */
.wlan-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	padding: 5px 12px;
	border-radius: 8px;
	height: auto;
	transition: background 0.2s ease;
}
.wlan-logo-img {
	height: 32px;
	width: auto;
	display: block;
	transition: opacity 0.2s ease;
}
.wlan-logo:hover .wlan-logo-img {
	opacity: 0.85;
}
@media (max-width: 600px) {
	.wlan-logo-img { height: 28px; }
}


/* === Language switcher in nav menu (2026-05-13) === */
.wlan-nav-lang {
	display: flex;
	align-items: center;
	padding: 0 8px;
}
.wlan-nav-lang .trp-language-switcher {
	margin: 0;
	background: transparent !important;
}
.wlan-nav-lang .trp-language-switcher-container {
	display: flex;
	gap: 6px;
}
.wlan-nav-lang .trp-flag-image {
	width: 22px !important;
	height: auto !important;
	border-radius: 2px;
}
.wlan-nav-lang .trp-language-switcher-text {
	color: rgba(255,255,255,0.85) !important;
	font-size: 12px !important;
}

/* Hide the floating TP switcher (we use the nav menu one) */
.trp-floating-switcher,
.trp-floater {
	display: none !important;
}

/* Hide language names in switcher — show only flags */
.wlan-nav-lang .trp-language-item-name {
	display: none !important;
}

/* CF7 response messages — pretty colored boxes */
.wpcf7 form.sent .wpcf7-response-output {
	background: rgba(52,199,89,0.12);
	border: 1px solid #34c759;
	color: #1d2327;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	margin-top: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	background: rgba(255,159,10,0.12);
	border: 1px solid #ff9f0a;
	color: #1d2327;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	margin-top: 16px;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	background: rgba(255,59,48,0.12);
	border: 1px solid #ff3b30;
	color: #1d2327;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	margin-top: 16px;
}
/* Dark form variant — adjust text color */
.wlan-section-dark .wpcf7-response-output,
section[class*="wlan-section-dark"] .wpcf7-response-output {
	color: var(--white);
}

/* GDPR-blocked reCAPTCHA notice — show only when recaptcha script hasn't loaded */
.wlan-recaptcha-notice {display:block;padding:10px 14px;background:#fff3cd;border-left:3px solid #ffc107;border-radius:4px}
/* Hide notice when consent given (Complianz adds .cmplz-accepted class to body) */
body.cmplz-functional .wlan-recaptcha-notice, body.cmplz-accepted .wlan-recaptcha-notice {display:none}

/* Comparison table */
.wlan-compare-wrap {
	max-width: 1100px; margin: 50px auto 0;
	background: var(--white);
	border-radius: 22px;
	overflow-x: auto;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.wlan-compare {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	min-width: 700px;
}
.wlan-compare thead th {
	padding: 24px 16px;
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	background: var(--light);
	text-align: center;
	border-bottom: 2px solid var(--line);
}
.wlan-compare thead th:first-child { text-align: left; padding-left: 28px; }
.wlan-compare tbody td {
	padding: 16px;
	text-align: center;
	border-bottom: 1px solid var(--line);
	color: var(--ink-2);
}
.wlan-compare tbody td:first-child {
	text-align: left;
	padding-left: 28px;
	color: var(--ink-3);
	font-weight: 500;
}
.wlan-compare tbody tr:last-child td { border-bottom: none; }
.wlan-compare tbody tr:hover { background: rgba(0,113,227,0.03); }
.wlan-compare strong { color: var(--blue); font-size: 16px; }
.wlan-compare-note {
	max-width: 800px; margin: 24px auto 0;
	font-size: 13px; color: var(--ink-3); text-align: center;
}

/* FAQ */
.wlan-faq {
	max-width: 800px; margin: 50px auto 0;
	text-align: left;
}
.wlan-faq details {
	background: var(--white);
	border-radius: 14px;
	margin-bottom: 12px;
	padding: 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.03);
	border: 1px solid var(--line);
	transition: box-shadow 0.2s;
}
.wlan-faq details[open] { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.wlan-faq summary {
	padding: 22px 28px;
	font-size: 18px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 60px;
	letter-spacing: -0.01em;
}
.wlan-faq summary::-webkit-details-marker { display: none; }
.wlan-faq summary::after {
	content: '+';
	position: absolute;
	right: 28px; top: 50%;
	transform: translateY(-50%);
	font-size: 28px; font-weight: 300;
	color: var(--blue);
	transition: transform 0.2s;
}
.wlan-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.wlan-faq p {
	margin: 0; padding: 0 28px 22px;
	font-size: 16px; color: var(--ink-2); line-height: 1.6;
}
.wlan-faq a { color: var(--blue); }

/* EETT regulatory badge (light footer) */
.wlan-footer-eett {
	max-width: 1200px;
	margin: 30px auto 20px;
	padding: 24px 22px 0;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: center;
	text-align: center;
}
.wlan-footer-eett-link {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	padding: 16px 26px;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s, transform 0.15s;
}
.wlan-footer-eett-link:hover {
	background: rgba(0,0,0,0.03);
	color: inherit;
	transform: translateY(-1px);
}
.wlan-footer-eett-logo {
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	display: block;
}
.wlan-footer-eett-text {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	line-height: 1.3;
	text-align: left;
}
.wlan-footer-eett-text strong {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.wlan-footer-eett-text strong::after {
	content: "·";
	margin-left: 14px;
	color: var(--ink-3);
	font-weight: 400;
}
.wlan-footer-eett-text small {
	font-size: 15px;
	color: var(--ink-3);
}
.wlan-footer-eett-text small b {
	color: var(--blue);
	font-weight: 700;
	font-size: 16px;
}
@media (max-width: 600px) {
	.wlan-footer-eett-link { padding: 14px 20px; gap: 16px; }
	.wlan-footer-eett-logo { width: 56px; height: 56px; }
	.wlan-footer-eett-text { flex-direction: column; gap: 4px; }
	.wlan-footer-eett-text strong::after { content: ""; margin: 0; }
	.wlan-footer-eett-text strong { font-size: 15px; }
	.wlan-footer-eett-text small { font-size: 13px; }
}
@media (max-width: 600px) {
	.wlan-footer-eett-link { padding: 16px 22px; gap: 16px; }
	.wlan-footer-eett-logo { width: 56px; height: 56px; }
	.wlan-footer-eett-text strong { font-size: 16px; }
	.wlan-footer-eett-text small { font-size: 13px; }
}
