:root {
	--white: #ffffff;
	--paper: #f6f9fc;
	--ink: #101828;
	--muted: #5c697a;
	--line: #dce6f2;
	--blue: #007bff;
	--blue-deep: #075fc1;
	--blue-soft: #eaf4ff;
	--green: #25d366;
	--green-deep: #119c47;
	--chrome: #eef3f8;
	--shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
	--radius: 8px;
	font-synthesis: none;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background:
		linear-gradient(90deg, rgba(0, 123, 255, 0.04) 1px, transparent 1px) 0 0 /
			48px 48px,
		linear-gradient(180deg, #fff 0%, #f8fbff 46%, #fff 100%);
	font-family: 'Source Sans 3', sans-serif;
	font-size: 17px;
	line-height: 1.55;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: '';
	background-image: radial-gradient(
		rgba(16, 24, 40, 0.08) 0.7px,
		transparent 0.7px
	);
	background-size: 12px 12px;
	opacity: 0.2;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px clamp(16px, 4vw, 56px);
	background: rgba(255, 255, 255, 0.86);
	border-bottom: 1px solid rgba(220, 230, 242, 0.8);
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	gap: 10px;
}

.brand-mark {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--white);
	background: linear-gradient(145deg, var(--blue), #1ec8ff);
	border-radius: var(--radius);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 800;
	box-shadow: 0 10px 22px rgba(0, 123, 255, 0.24);
}

.brand strong,
h1,
h2,
h3 {
	font-family: 'Bricolage Grotesque', sans-serif;
	letter-spacing: 0;
}

.brand strong {
	display: block;
	font-size: 1rem;
	line-height: 1;
}

.brand small {
	display: block;
	max-width: 130px;
	overflow: hidden;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav-links {
	display: none;
	align-items: center;
	gap: 28px;
	color: var(--muted);
	font-size: 0.96rem;
	font-weight: 700;
}

.nav-links a {
	padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
	color: var(--blue-deep);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	color: var(--white);
	background: var(--green);
	border-radius: var(--radius);
	font-size: 0.95rem;
	font-weight: 800;
	box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
}

.hero {
	display: grid;
	gap: 30px;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 42px 0 54px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--blue-deep);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 780px;
	margin-bottom: 18px;
	font-size: clamp(3rem, 8vw, 5.9rem);
	line-height: 0.92;
}

h2 {
	margin-bottom: 16px;
	font-size: clamp(2rem, 8vw, 4.4rem);
	line-height: 0.98;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.28rem;
	line-height: 1.05;
}

.hero-text {
	max-width: 620px;
	color: var(--muted);
	font-size: clamp(1.06rem, 3.2vw, 1.32rem);
}

.hero-actions,
.visit-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

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

.button-whatsapp {
	color: var(--white);
	background: linear-gradient(135deg, var(--green), var(--green-deep));
	box-shadow: 0 18px 36px rgba(37, 211, 102, 0.25);
}

.button-whatsapp span {
	display: grid;
	width: 22px;
	height: 22px;
	margin-right: 10px;
	place-items: center;
	color: var(--green-deep);
	background: var(--white);
	border-radius: 999px;
	font-weight: 900;
}

.button-secondary {
	color: var(--ink);
	background: var(--white);
	border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	border-color: var(--blue);
	box-shadow: 0 18px 36px rgba(0, 123, 255, 0.12);
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	max-width: 660px;
	margin: 34px 0 0;
	overflow: hidden;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.trust-strip div {
	padding: 14px 12px;
	background: rgba(255, 255, 255, 0.82);
}

.trust-strip dt {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 1.12rem;
	font-weight: 800;
}

.trust-strip dd {
	margin: 2px 0 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.hero-visual {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	background: var(--chrome);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-visual::after {
	position: absolute;
	inset: 0;
	content: '';
	background:
		linear-gradient(180deg, transparent 46%, rgba(255, 255, 255, 0.82)),
		linear-gradient(90deg, rgba(0, 123, 255, 0.28), transparent 45%);
}

.hero-visual img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	filter: saturate(0.95) contrast(1.06);
}

.glass-ticket {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	width: min(220px, calc(100% - 32px));
	padding: 18px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--radius);
	box-shadow: 0 18px 48px rgba(16, 24, 40, 0.18);
	backdrop-filter: blur(20px);
}

.glass-ticket span,
.glass-ticket small {
	display: block;
	color: var(--muted);
	font-weight: 700;
}

.glass-ticket strong {
	display: block;
	margin: 2px 0;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 3rem;
	line-height: 0.92;
}

.service-band {
	position: relative;
	overflow: hidden;
	padding: 58px 16px;
	background:
		linear-gradient(115deg, rgba(0, 123, 255, 0.1), transparent 42%),
		linear-gradient(180deg, #f3f8ff, #fff);
	border-block: 1px solid var(--line);
}

.service-band::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: '';
	background:
		linear-gradient(90deg, rgba(0, 123, 255, 0.08) 1px, transparent 1px) 0 0 /
			56px 56px,
		linear-gradient(rgba(0, 123, 255, 0.06) 1px, transparent 1px) 0 0 / 56px
			56px;
	mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.services-shell {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 30px;
	width: min(1120px, 100%);
	margin: 0 auto;
}

.brand-carousel {
	position: relative;
	display: none;
	min-height: 430px;
	overflow: hidden;
	background:
		linear-gradient(
			160deg,
			rgba(255, 255, 255, 0.92),
			rgba(234, 244, 255, 0.8)
		),
		var(--white);
	border: 1px solid rgba(0, 123, 255, 0.16);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.brand-carousel::before,
.brand-carousel::after {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 4;
	width: 32%;
	pointer-events: none;
	content: '';
}

.brand-carousel::before {
	left: 0;
	background: linear-gradient(
		90deg,
		rgba(246, 250, 255, 0.98),
		rgba(246, 250, 255, 0)
	);
}

.brand-carousel::after {
	right: 0;
	background: linear-gradient(
		270deg,
		rgba(246, 250, 255, 0.98),
		rgba(246, 250, 255, 0)
	);
}

.carousel-kicker {
	position: absolute;
	top: 22px;
	left: 24px;
	z-index: 5;
	margin: 0;
	color: var(--blue-deep);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.logo-stage {
	position: absolute;
	inset: 0;
}

.logo-stage::before {
	position: absolute;
	inset: 54px 42px;
	content: '';
	border: 1px solid rgba(0, 123, 255, 0.12);
	border-radius: var(--radius);
	background:
		linear-gradient(
			90deg,
			transparent 49%,
			rgba(0, 123, 255, 0.1) 50%,
			transparent 51%
		),
		linear-gradient(
			180deg,
			transparent 49%,
			rgba(0, 123, 255, 0.08) 50%,
			transparent 51%
		);
}

.logo-stage img {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: min(58%, 330px);
	aspect-ratio: 16 / 9;
	object-fit: contain;
	padding: 34px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(220, 230, 242, 0.9);
	border-radius: var(--radius);
	box-shadow: 0 20px 55px rgba(16, 24, 40, 0.13);
	filter: grayscale(1) saturate(0.35) contrast(1.02);
	opacity: 0;
	transform: translate(90%, -50%);
	animation: logo-pass 33s cubic-bezier(0.65, 0, 0.35, 1) infinite;
	animation-delay: calc(var(--logo-index) * 3s);
}

.carousel-note {
	position: absolute;
	right: 24px;
	bottom: 24px;
	z-index: 5;
	width: 128px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: var(--radius);
	box-shadow: 0 18px 42px rgba(16, 24, 40, 0.14);
	backdrop-filter: blur(18px);
}

.carousel-note span {
	display: block;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 800;
}

.carousel-note strong {
	display: block;
	color: var(--blue-deep);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 3.2rem;
	line-height: 0.9;
}

.services-copy {
	padding: 26px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 42px rgba(16, 24, 40, 0.08);
}

.services-copy h2 {
	max-width: 560px;
}

.services-intro {
	max-width: 620px;
	color: var(--muted);
	font-size: 1.12rem;
}

.service-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.service-list li {
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: center;
	min-height: 58px;
	padding: 9px 12px 9px 9px;
	background: #fbfdff;
	border: 1px solid rgba(220, 230, 242, 0.86);
	border-radius: var(--radius);
	color: var(--ink);
	font-weight: 800;
}

.service-dot {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	color: var(--blue-deep);
	background: var(--blue-soft);
	border-radius: 7px;
}

.service-dot svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.device-upgrade {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 24px;
	width: min(1120px, 100%);
	margin: 34px auto 0;
	padding: 28px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(16, 24, 40, 0.94), rgba(0, 85, 170, 0.92)),
		var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.device-upgrade::before {
	position: absolute;
	inset: -1px;
	pointer-events: none;
	content: '';
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 /
			46px 46px,
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 46px
			46px;
	mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
}

.upgrade-copy {
	position: relative;
	z-index: 2;
}

.upgrade-copy .eyebrow {
	color: #bfe0ff;
}

.upgrade-copy h2 {
	max-width: 720px;
	color: var(--white);
}

.upgrade-copy p:not(.eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.1rem;
}

.trade-note {
	padding: 16px 18px;
	margin: 24px 0 0;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
}

.trade-note strong {
	color: var(--white);
}

.upgrade-stack {
	position: relative;
	z-index: 2;
	display: none;
	min-height: 280px;
}

.device-card {
	position: absolute;
	display: block;
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.9),
			rgba(198, 224, 255, 0.55)
		),
		#fff;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: var(--radius);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.device-card::before {
	position: absolute;
	inset: 12px;
	content: '';
	border: 1px solid rgba(0, 123, 255, 0.18);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(0, 123, 255, 0.18), transparent 48%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 244, 255, 0.5));
}

.device-card-phone {
	right: 28px;
	bottom: 8px;
	width: 112px;
	height: 218px;
	transform: rotate(9deg);
}

.device-card-tablet {
	right: 118px;
	bottom: 34px;
	width: 190px;
	height: 238px;
	transform: rotate(-5deg);
}

.device-card-laptop {
	right: 24px;
	bottom: 0;
	width: 310px;
	height: 76px;
	transform: rotate(1deg);
}

@keyframes logo-pass {
	0% {
		opacity: 0;
		transform: translate(90%, -50%) scale(0.96);
	}

	3%,
	8% {
		opacity: 0.82;
		transform: translate(-50%, -50%) scale(1);
	}

	11%,
	100% {
		opacity: 0;
		transform: translate(-190%, -50%) scale(0.96);
	}
}

@media (prefers-reduced-motion: reduce) {
	.logo-stage img {
		animation: none;
	}

	.logo-stage img:first-child {
		opacity: 0.82;
		transform: translate(-50%, -50%) scale(1);
	}
}

.faq-section {
	width: min(1060px, calc(100% - 32px));
	margin: 0 auto;
	padding: 64px 0;
}

.faq-heading {
	max-width: 760px;
	margin-bottom: 28px;
}

.faq-heading p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.12rem;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 36px rgba(16, 24, 40, 0.06);
}

.faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 72px;
	padding: 18px 56px 18px 20px;
	cursor: pointer;
	color: var(--ink);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 1.08rem;
	font-weight: 800;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	position: absolute;
	right: 18px;
	top: 50%;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: var(--blue-deep);
	background: var(--blue-soft);
	border-radius: 7px;
	content: '+';
	font-family: 'Source Sans 3', sans-serif;
	font-size: 1.35rem;
	line-height: 1;
	transform: translateY(-50%);
}

.faq-item[open] {
	border-color: rgba(0, 123, 255, 0.24);
	box-shadow: 0 18px 46px rgba(0, 123, 255, 0.1);
}

.faq-item[open] summary::after {
	content: '-';
}

.faq-item p {
	padding: 0 20px 20px;
	margin: -4px 0 0;
	color: var(--muted);
}

.visit {
	display: grid;
	gap: 14px;
	width: min(1060px, calc(100% - 32px));
	margin: 0 auto;
	padding: 0 0 58px;
}

.visit-card {
	padding: 26px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.visit-card p:not(.eyebrow) {
	color: var(--muted);
}

.hours {
	display: grid;
	gap: 1px;
	margin-top: 26px;
	overflow: hidden;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.hours div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 14px;
	background: #fbfdff;
}

.hours span {
	color: var(--muted);
	font-weight: 700;
}

.hours strong {
	text-align: right;
}

.map-frame {
	position: relative;
	display: block;
	min-height: 360px;
	overflow: hidden;
	background: var(--chrome);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.map-frame iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	filter: saturate(0.8) contrast(1.05);
}

.site-footer {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 26px 16px 34px;
	color: var(--muted);
	background: #f8fbff;
	border-top: 1px solid var(--line);
	text-align: center;
}

.site-footer p {
	margin: 0;
	color: var(--ink);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 800;
}

.site-footer span {
	font-size: 0.95rem;
}

:focus-visible {
	outline: 3px solid rgba(0, 123, 255, 0.35);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
	.hero-copy,
	.hero-visual,
	.brand-carousel,
	.services-copy,
	.device-upgrade,
	.faq-heading,
	.faq-item,
	.visit-card,
	.map-frame {
		animation: rise 680ms ease both;
	}

	.hero-visual {
		animation-delay: 120ms;
	}

	.brand-carousel,
	.device-upgrade,
	.faq-item,
	.map-frame {
		animation-delay: 90ms;
	}

	.services-copy,
	.faq-list {
		animation-delay: 140ms;
	}

	@keyframes rise {
		from {
			opacity: 0;
			transform: translateY(18px);
		}

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

@media (min-width: 720px) {
	.nav-links {
		display: flex;
	}

	.brand small {
		max-width: none;
	}

	.hero {
		padding-top: 72px;
	}

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

	.visit {
		grid-template-columns: 0.9fr 1.1fr;
		align-items: stretch;
	}

	.faq-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}
}

@media (min-width: 1040px) {
	.hero {
		grid-template-columns: 1.02fr 0.98fr;
		align-items: center;
		min-height: calc(100vh - 65px);
	}

	.hero-visual,
	.hero-visual img {
		min-height: 620px;
	}

	.services-shell {
		grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
		align-items: center;
	}

	.brand-carousel {
		display: block;
	}

	.device-upgrade {
		grid-template-columns: minmax(0, 1fr) 360px;
		align-items: center;
		min-height: 360px;
		padding: 42px;
	}

	.upgrade-stack {
		display: block;
	}
}

@media (max-width: 430px) {
	.site-header {
		padding-inline: 12px;
	}

	.header-cta {
		min-height: 38px;
		padding-inline: 11px;
	}

	.trust-strip {
		grid-template-columns: 1fr;
	}

	.hours div {
		flex-direction: column;
		gap: 2px;
	}

	.hours strong {
		text-align: left;
	}
}
