/* Homepage blocks */

.maxtel-front .maxtel-section {
	padding: 3.5rem 0;
}

.maxtel-section--alt {
	background: #fff;
}

.maxtel-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.maxtel-section__title--left {
	text-align: left;
	margin-bottom: 0;
}

.maxtel-btn--block {
	width: 100%;
	justify-content: center;
}

.maxtel-btn--outline-dark {
	background: transparent;
	border: 2px solid var(--maxtel-primary);
	color: var(--maxtel-primary);
}

.maxtel-btn--outline-dark:hover {
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-empty {
	text-align: center;
	color: #64748b;
	padding: 2rem;
}

/* Hero slider */
.maxtel-hero-slider {
	position: relative;
	overflow: hidden;
	background: #082f4c;
}

.maxtel-hero-slider__track {
	position: relative;
	height: clamp(420px, 32vw, 560px);
	min-height: 420px;
}

.maxtel-hero-slide {
	position: absolute;
	inset: 0;
	min-height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s;
}

.maxtel-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
	min-height: 100%;
}

.maxtel-hero-slide__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.maxtel-hero-slide__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.maxtel-hero-slide__bg--default {
	background: #082f4c;
}

.maxtel-hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(2, 16, 29, 0.92) 0%, rgba(3, 28, 48, 0.86) 28%, rgba(4, 45, 74, 0.48) 52%, rgba(4, 45, 74, 0.14) 72%, rgba(4, 45, 74, 0) 100%);
}

.maxtel-hero-slide__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	max-width: var(--maxtel-container);
	padding: clamp(3rem, 6vw, 5.25rem) 0 clamp(3.5rem, 6vw, 5rem) clamp(1rem, 7vw, 8rem);
	color: #fff;
}

.maxtel-hero-slide__title {
	max-width: 650px;
	margin: 0 0 1rem;
	font-size: clamp(44px, 3.75vw, 54px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
	overflow-wrap: break-word;
	text-wrap: balance;
}

.maxtel-hero-slide__subtitle {
	max-width: 620px;
	margin: 0 0 1.35rem;
	font-size: clamp(17px, 1.25vw, 18px);
	line-height: 1.55;
	opacity: 0.95;
}

.maxtel-hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.maxtel-hero-slide__actions .maxtel-btn--cta {
	min-width: 150px;
	min-height: 42px;
	justify-content: center;
	padding: 0.55rem 1.1rem;
	border-color: rgba(255, 255, 255, 0.78);
	border-radius: 6px;
	background: rgba(7, 28, 45, 0.18);
	color: #fff;
	font-size: 14px;
	line-height: 1.35;
	box-shadow: none;
}

.maxtel-hero-slide__actions .maxtel-btn--cta:hover,
.maxtel-hero-slide__actions .maxtel-btn--cta:focus-visible {
	border-color: var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-hero-slider__nav {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 clamp(1rem, 6vw, 8rem);
	pointer-events: none;
	z-index: 6;
}

.maxtel-hero-slider__nav .maxtel-slider__arrow,
.maxtel-hero-slider__nav .maxtel-slider__dots {
	pointer-events: auto;
}

.maxtel-hero-slider__nav .maxtel-slider__arrow {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(4, 30, 50, 0.5);
	color: #fff;
	backdrop-filter: blur(8px);
}

.maxtel-hero-slider__nav .maxtel-slider__arrow:hover,
.maxtel-hero-slider__nav .maxtel-slider__arrow:focus-visible {
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 115, 183, 0.82);
	color: #fff;
}

.maxtel-hero-slider__nav .maxtel-slider__dots {
	position: absolute;
	right: 0;
	bottom: 1.35rem;
	left: 0;
	justify-content: center;
}

/* Slider shared */
.maxtel-slider__arrow {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	background: #fff;
	color: var(--maxtel-secondary);
	font-size: 20px;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s, color 0.2s;
}

.maxtel-slider__arrow:hover {
	background: var(--maxtel-primary);
	border-color: var(--maxtel-primary);
	color: #fff;
}

.maxtel-slider__dots {
	display: flex;
	gap: 0.35rem;
}

.maxtel-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
}

.maxtel-slider__dot.is-active {
	background: #fff;
	width: 28px;
	border-radius: 5px;
}

/* Tabs */
.maxtel-tabs {
	display: flex;
	gap: 0.35rem;
	background: #f1f5f9;
	padding: 0.25rem;
	border-radius: var(--maxtel-radius-pill);
}

.maxtel-tabs__btn {
	border: 0;
	background: transparent;
	padding: 0.5rem 1.25rem;
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	border-radius: var(--maxtel-radius-pill);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.maxtel-tabs__btn.is-active {
	background: #fff;
	color: var(--maxtel-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.maxtel-tabs--news {
	flex-wrap: wrap;
	border-radius: var(--maxtel-radius);
}

.maxtel-tab-panel[hidden] {
	display: none !important;
}

.maxtel-tab-panel.is-active {
	display: block;
}

.maxtel-home-news .maxtel-post-card__meta {
	justify-content: flex-start;
	font-weight: 400;
	text-align: justify;
}

.maxtel-home-news .maxtel-post-card__cat,
.maxtel-home-news .maxtel-post-card .posted-on {
	font-weight: 400;
}

.maxtel-home-news .maxtel-post-card__title,
.maxtel-home-news .maxtel-post-card__title a {
	font-weight: 400;
	text-align: justify;
	text-align-last: left;
}

.maxtel-home-news .maxtel-post-card__body p {
	text-align: justify;
	text-align-last: left;
}

/* Carousel */
.maxtel-carousel {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.maxtel-carousel__viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.maxtel-carousel__track {
	display: flex;
	gap: var(--maxtel-gap);
	transition: transform 0.35s ease;
}

.maxtel-carousel__slide {
	flex: 0 0 calc((100% - var(--maxtel-gap) * 3) / 4);
	min-width: 0;
}

.maxtel-home-products {
	position: relative;
	z-index: 3;
	--maxtel-gap: 1rem;
}

.maxtel-home-products .maxtel-container {
	position: relative;
	z-index: 2;
}

.maxtel-home-products:has(.maxtel-product-card:hover),
.maxtel-home-products:has(.maxtel-product-card:focus-within) {
	z-index: 80;
}

body:has(.maxtel-home-products .maxtel-product-card:hover) .wpcb-floating-container,
body:has(.maxtel-home-products .maxtel-product-card:focus-within) .wpcb-floating-container {
	z-index: 10 !important;
}

.maxtel-home-products .maxtel-carousel {
	position: relative;
	align-items: center;
	padding-inline: 3.35rem;
	overflow: visible;
}

.maxtel-home-products .maxtel-carousel__viewport {
	padding: 2px 2px 8px;
	overflow: visible;
	clip-path: inset(-430px 0 -430px 0);
}

.maxtel-home-products .maxtel-carousel__track,
.maxtel-home-products .maxtel-carousel__slide {
	overflow: visible;
}

.maxtel-home-products .maxtel-carousel__slide {
	position: relative;
	z-index: 1;
}

.maxtel-home-products .maxtel-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 40;
	margin-top: 0;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
	transform: translateY(-50%);
}

.maxtel-home-products .maxtel-slider__prev {
	left: 0;
}

.maxtel-home-products .maxtel-slider__next {
	right: 0;
}

.maxtel-home-products .maxtel-product-card {
	min-height: 0;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.maxtel-home-products .maxtel-product-card__link {
	position: relative;
	z-index: 5;
}

.maxtel-home-products .maxtel-product-card__badge {
	--maxtel-card-badge-bg: var(--maxtel-primary);
	position: absolute;
	top: 0.55rem;
	left: 0.55rem;
	z-index: 6;
	min-height: 24px;
	max-width: calc(100% - 1.1rem);
	padding: 0.3rem 0.66rem;
	border-radius: 999px;
	background: var(--maxtel-card-badge-bg);
	color: #fff;
	box-shadow: 0 7px 14px rgba(0, 115, 183, 0.18);
	font-size: 10px;
	letter-spacing: 0;
}

.maxtel-home-products .maxtel-product-card__badge--latest {
	--maxtel-card-badge-bg: #047857;
	box-shadow: 0 7px 14px rgba(4, 120, 87, 0.18);
}

.maxtel-home-products .maxtel-product-card__image {
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	height: auto;
	padding: 0.85rem;
	background: #f8fafc;
}

.maxtel-home-products .maxtel-product-card__image img {
	width: calc(100% - 1.85rem);
	height: calc(100% - 1.85rem);
	transform: translateY(1.25rem);
}

.maxtel-home-products .maxtel-product-card__code {
	padding: 0.8rem 0.9rem 0.15rem;
	font-size: 16px;
}

.maxtel-home-products .maxtel-product-card__title {
	min-height: 2.65em;
	padding: 0 0.9rem 0.85rem;
	font-size: 14px;
	line-height: 1.35;
}

.maxtel-home-products .maxtel-product-card-hover {
	z-index: 4;
	background: #fff;
}

.maxtel-home-products .maxtel-product-card-hover__panel {
	gap: 0.55rem;
	padding: 0.65rem 0.9rem 0.85rem;
}

.maxtel-home-products .maxtel-product-card-hover__attrs {
	display: grid;
	gap: 0.35rem;
	font-size: 12px;
	line-height: 1.35;
}

.maxtel-home-products .maxtel-product-card-hover__attrs li {
	grid-template-columns: minmax(58px, 0.45fr) minmax(0, 1fr);
}

.maxtel-home-products .maxtel-product-card-hover__thumbs {
	gap: 0.4rem;
}

.maxtel-home-products .maxtel-product-card:hover .maxtel-product-card-hover,
.maxtel-home-products .maxtel-product-card:focus-within .maxtel-product-card-hover {
	max-height: 380px;
}

.maxtel-home-products .maxtel-carousel__slide:has(.maxtel-product-card:hover),
.maxtel-home-products .maxtel-carousel__slide:focus-within {
	z-index: 12;
}

.maxtel-front .maxtel-category-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.96));
	backdrop-filter: blur(2px);
}

/* Why choose */
.maxtel-why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--maxtel-gap);
}

.maxtel-why__card {
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	padding: 1.5rem;
	transition: box-shadow 0.2s, transform 0.2s;
}

.maxtel-why__card:hover {
	box-shadow: var(--maxtel-shadow);
	transform: translateY(-2px);
}

.maxtel-why__num {
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	color: var(--maxtel-primary);
	opacity: 0.25;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.maxtel-why__card h3 {
	margin: 0 0 0.5rem;
	font-size: 17px;
	color: var(--maxtel-secondary);
}

.maxtel-why__card p {
	margin: 0;
	font-size: 14px;
	color: #64748b;
}

/* About brand */
.maxtel-about-brand__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}

.maxtel-about-brand__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.maxtel-about-brand__text {
	max-width: 34rem;
	margin: 0.65rem 0 1.5rem;
	font-size: 16px;
	color: #475569;
	line-height: 1.7;
}

.maxtel-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.maxtel-stats__item {
	text-align: center;
	padding: 1rem;
	background: #f8fafc;
	border-radius: var(--maxtel-radius);
	border: 1px solid #e8eef4;
}

.maxtel-stats__value {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: var(--maxtel-primary);
	line-height: 1.2;
}

.maxtel-stats__item span {
	font-size: 12px;
	color: #64748b;
}

.maxtel-about-brand__media img {
	border-radius: var(--maxtel-radius);
	box-shadow: var(--maxtel-shadow);
}

/* Partners marquee */
.maxtel-partners-slider {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.maxtel-partners-slider__track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	animation: maxtel-partners-scroll 30s linear infinite;
}

.maxtel-partners-slider:hover .maxtel-partners-slider__track {
	animation-play-state: paused;
}

.maxtel-partners-slider__item {
	flex-shrink: 0;
	width: 140px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	padding: 0.75rem;
}

.maxtel-partners-slider__item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

@keyframes maxtel-partners-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Press */
.maxtel-press-slider {
	position: relative;
	margin-top: 2rem;
	overflow: visible;
}

.maxtel-press-slider__viewport {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.maxtel-press-slider__track {
	display: flex;
	gap: 1.25rem;
	transition: transform 0.38s ease;
	will-change: transform;
}

.maxtel-press-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	border-color: #d8e6f3;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 28px rgba(15, 42, 70, 0.14);
	transform: translateY(-50%);
}

.maxtel-press-slider__arrow--prev {
	left: -0.55rem;
}

.maxtel-press-slider__arrow--next {
	right: -0.55rem;
}

.maxtel-press-slider__arrow.is-disabled,
.maxtel-press-slider__arrow:disabled {
	opacity: 0.4;
	cursor: default;
	pointer-events: none;
}

.maxtel-press__card {
	display: flex;
	flex: 0 0 clamp(260px, 27vw, 340px);
	flex-direction: column;
	justify-content: space-between;
	min-height: 230px;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	box-shadow: 0 12px 28px rgba(15, 42, 70, 0.05);
}

.maxtel-press__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
	margin-bottom: 1rem;
	padding: 0.8rem;
	background: #f8fbff;
	border: 1px solid #e1ebf5;
	border-radius: calc(var(--maxtel-radius) - 2px);
}

.maxtel-press__logo img {
	max-width: 85%;
	max-height: 52px;
	object-fit: contain;
}

.maxtel-press__logo-text {
	color: var(--maxtel-primary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.maxtel-press__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.9rem;
}

.maxtel-press__body h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.4;
}

.maxtel-press__body h3 a {
	color: var(--maxtel-secondary);
	text-decoration: none;
}

.maxtel-press__body h3 a:hover,
.maxtel-press__body h3 a:focus-visible {
	color: var(--maxtel-primary);
}

.maxtel-press__link {
	margin-top: auto;
	min-height: 38px;
	padding: 0.52rem 0.9rem;
	font-size: 13px;
}

.maxtel-press__link.is-disabled {
	opacity: 0.55;
	pointer-events: none;
}

/* Reviews */
.maxtel-reviews-slider {
	position: relative;
	margin-top: 2rem;
	overflow: visible;
}

.maxtel-reviews-slider__viewport {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.maxtel-reviews-slider__track {
	display: flex;
	align-items: stretch;
	gap: 1.25rem;
	transition: transform 0.38s ease;
	will-change: transform;
}

.maxtel-reviews-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	border-color: #d8e6f3;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 28px rgba(15, 42, 70, 0.14);
	transform: translateY(-50%);
}

.maxtel-reviews-slider__arrow--prev {
	left: -0.55rem;
}

.maxtel-reviews-slider__arrow--next {
	right: -0.55rem;
}

.maxtel-reviews-slider__arrow.is-disabled,
.maxtel-reviews-slider__arrow:disabled {
	opacity: 0.4;
	cursor: default;
	pointer-events: none;
}

.maxtel-reviews-slider__item {
	display: flex;
	flex: 0 0 clamp(280px, 28vw, 360px);
}

.maxtel-review-card {
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	padding: 1.5rem;
	margin: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.maxtel-review-card__stars {
	color: #fbbf24;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.maxtel-review-card__stars span:not(.is-on) {
	color: #e2e8f0;
}

.maxtel-review-card p {
	flex: 1;
	margin: 0 0 1rem;
	font-size: 15px;
	color: #475569;
	font-style: italic;
}

.maxtel-review-card footer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.maxtel-review-card__avatar {
	border-radius: 50%;
	object-fit: cover;
}

.maxtel-review-card cite {
	font-style: normal;
}

.maxtel-review-card cite strong {
	display: block;
	font-size: 15px;
	color: var(--maxtel-secondary);
}

.maxtel-review-card cite span {
	font-size: 13px;
	color: #64748b;
}

/* Contact form */
.maxtel-contact-form {
	background: linear-gradient(180deg, #f0f7fc 0%, #f7f9fc 100%);
}

.maxtel-contact-cta__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
	gap: 2rem;
	align-items: center;
	overflow: hidden;
	padding: clamp(1.6rem, 3vw, 2.5rem);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.98)),
		linear-gradient(135deg, rgba(0, 115, 183, 0.08), rgba(232, 93, 4, 0.08));
	border: 1px solid #dce8f3;
	border-radius: var(--maxtel-radius);
	box-shadow: 0 18px 44px rgba(15, 42, 70, 0.07);
	color: inherit;
	text-decoration: none;
}

.maxtel-contact-cta__panel::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--maxtel-primary), var(--maxtel-accent));
	content: "";
}

.maxtel-contact-cta__content p {
	max-width: 46rem;
	margin: 0;
	color: #475569;
	font-size: 16px;
	line-height: 1.7;
	text-align: justify;
	text-align-last: left;
}

.maxtel-contact-cta__eyebrow {
	display: inline-flex;
	margin-bottom: 0.65rem;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.maxtel-contact-cta__content .maxtel-section__title {
	margin-bottom: 0.65rem;
}

.maxtel-contact-cta__action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 0.75rem;
	padding-left: 2rem;
	border-left: 1px solid #dce8f3;
}

.maxtel-contact-cta__button {
	justify-content: center;
	width: 100%;
	min-height: 46px;
	padding-inline: 1.2rem;
	white-space: normal;
}

.maxtel-contact-cta__phone {
	display: inline-flex;
	justify-content: center;
	color: #475569;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: color 0.2s ease;
}

.maxtel-contact-cta__phone:hover,
.maxtel-contact-cta__phone:focus-visible {
	color: var(--maxtel-primary);
}

.maxtel-contact-cta .maxtel-contact-form__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1rem;
	margin: 1.25rem 0 0;
}

.maxtel-contact-form__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2.5rem;
	align-items: start;
}

.maxtel-contact-form__highlights {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.maxtel-contact-form__highlights li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0;
	color: #475569;
	font-size: 15px;
}

.maxtel-contact-form__highlights svg {
	color: var(--maxtel-primary);
}

.maxtel-contact-form__box {
	background: #fff;
	border-radius: var(--maxtel-radius);
	padding: 1.75rem;
	box-shadow: var(--maxtel-shadow);
}

.maxtel-form__row {
	margin-bottom: 1rem;
}

.maxtel-form__row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.maxtel-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--maxtel-secondary);
}

.maxtel-form label span {
	color: #dc2626;
}

.maxtel-form input,
.maxtel-form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid #d1dbe8;
	border-radius: var(--maxtel-radius);
	font: inherit;
}

.maxtel-form input:focus,
.maxtel-form textarea:focus {
	outline: 2px solid var(--maxtel-primary);
	outline-offset: 1px;
	border-color: var(--maxtel-primary);
}

.maxtel-notice {
	padding: 0.75rem 1rem;
	border-radius: var(--maxtel-radius);
	margin-bottom: 1rem;
	font-size: 14px;
}

.maxtel-notice--success {
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.maxtel-notice--error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 992px) {
	.maxtel-carousel__slide {
		flex: 0 0 calc((100% - var(--maxtel-gap)) / 2);
	}

	.maxtel-hero-slide__content {
		padding-left: clamp(1rem, 5vw, 3rem);
		padding-right: 4.25rem;
	}

	.maxtel-hero-slide__title {
		max-width: 520px;
		font-size: 42px;
	}

	.maxtel-hero-slide__subtitle {
		max-width: 520px;
		font-size: 17px;
	}

	.maxtel-hero-slider__nav {
		padding: 0 1rem;
	}

	.maxtel-about-brand__inner,
	.maxtel-contact-form__inner {
		grid-template-columns: 1fr;
	}

	.maxtel-about-brand__inner {
		gap: 1.5rem;
	}

	.maxtel-contact-cta__panel {
		grid-template-columns: 1fr;
		align-items: flex-start;
	}

	.maxtel-contact-cta__action {
		width: 100%;
		padding-top: 1.25rem;
		padding-left: 0;
		border-top: 1px solid #dce8f3;
		border-left: 0;
	}
}

@media (max-width: 640px) {
	.maxtel-front .maxtel-section {
		padding: 2.5rem 0;
	}

	.maxtel-front .maxtel-about-brand {
		padding: 2rem 0;
	}

	.maxtel-about-brand__inner {
		gap: 1rem;
	}

	.maxtel-about-brand .maxtel-section__title {
		font-size: 24px;
		line-height: 1.2;
	}

	.maxtel-about-brand__text {
		display: -webkit-box;
		overflow: hidden;
		margin: 0.45rem 0 0;
		font-size: 14px;
		line-height: 1.55;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.maxtel-carousel__slide {
		flex: 0 0 85%;
	}

	.maxtel-reviews-slider__item {
		flex-basis: 82vw;
	}

	.maxtel-hero-slider__track,
	.maxtel-hero-slide {
		height: clamp(360px, 88vw, 390px);
		min-height: 360px;
	}

	.maxtel-hero-slide__image {
		object-position: 62% center;
	}

	.maxtel-hero-slide__overlay {
		background:
			linear-gradient(90deg, rgba(3, 24, 41, 0.94) 0%, rgba(4, 45, 74, 0.82) 52%, rgba(4, 50, 76, 0.5) 100%),
			linear-gradient(0deg, rgba(2, 16, 27, 0.5), rgba(2, 16, 27, 0.08) 44%);
	}

	.maxtel-hero-slide__content {
		justify-content: center;
		padding: 2.25rem 2.35rem 4.2rem 1rem;
		text-shadow: 0 2px 16px rgba(2, 16, 27, 0.32);
	}

	.maxtel-hero-slide__title {
		max-width: min(21rem, 100%);
		margin-bottom: 0.7rem;
		font-size: clamp(24px, 6.8vw, 29px);
		line-height: 1.14;
	}

	.maxtel-hero-slide__subtitle {
		display: -webkit-box;
		overflow: hidden;
		max-width: min(21.5rem, 100%);
		margin-bottom: 0.9rem;
		font-size: 14px;
		line-height: 1.5;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}

	.maxtel-hero-slide__actions .maxtel-btn--cta {
		min-width: 126px;
		min-height: 38px;
		padding: 0.48rem 0.85rem;
		font-size: 13px;
	}

	.maxtel-home-products .maxtel-product-card-hover {
		display: none;
	}

	.maxtel-home-products {
		--maxtel-gap: 0.75rem;
	}

	.maxtel-home-products .maxtel-carousel {
		gap: 0;
		padding-inline: 0;
	}

	.maxtel-home-products .maxtel-carousel__viewport {
		overflow: hidden;
		clip-path: none;
		touch-action: pan-y;
	}

	.maxtel-home-products .maxtel-carousel__slide {
		flex: 0 0 calc((100% - var(--maxtel-gap)) / 2);
	}

	.maxtel-home-products .maxtel-slider__arrow {
		width: 36px;
		height: 36px;
		background: rgba(255, 255, 255, 0.92);
		transform: translateY(-50%);
	}

	.maxtel-home-products .maxtel-slider__prev {
		left: 0.35rem;
	}

	.maxtel-home-products .maxtel-slider__next {
		right: 0.35rem;
	}

	.maxtel-home-news .maxtel-section-head {
		gap: 0.8rem;
		margin-bottom: 1rem;
	}

	.maxtel-home-news .maxtel-section__title {
		font-size: 28px;
		line-height: 1.15;
	}

	.maxtel-home-news .maxtel-tabs--news {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		overflow: visible;
		padding: 0.2rem;
		border-radius: 18px;
	}

	.maxtel-home-news .maxtel-tabs__btn {
		min-width: 0;
		min-height: 36px;
		padding: 0.36rem 0.3rem;
		font-size: 12px;
		line-height: 1.2;
		text-align: center;
	}

	.maxtel-home-news .maxtel-post-grid {
		gap: 0.75rem;
	}

	.maxtel-home-news .maxtel-post-card {
		display: grid;
		grid-template-columns: clamp(122px, 34vw, 136px) minmax(0, 1fr);
		height: auto;
		min-height: clamp(88px, 24vw, 96px);
		border-radius: 12px;
	}

	.maxtel-home-news .maxtel-post-card:hover {
		transform: none;
	}

	.maxtel-home-news .maxtel-post-card__thumb,
	.maxtel-home-news .maxtel-post-card__placeholder {
		height: auto;
		aspect-ratio: 1240 / 775;
		min-height: 0;
		background: #f8fafc;
	}

	.maxtel-home-news .maxtel-post-card__thumb img,
	.maxtel-home-news .maxtel-post-card__placeholder {
		display: block;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		object-fit: contain;
		object-position: center;
	}

	.maxtel-home-news .maxtel-post-card__placeholder {
		display: grid;
		place-items: center;
	}

	.maxtel-home-news .maxtel-post-card__body {
		justify-content: center;
		min-width: 0;
		padding: 0.7rem 0.75rem;
	}

	.maxtel-home-news .maxtel-post-card__meta {
		flex-wrap: nowrap;
		gap: 0.45rem;
		margin-bottom: 0.28rem;
		text-align: left;
	}

	.maxtel-home-news .maxtel-post-card__cat {
		min-width: 0;
		overflow: hidden;
		font-size: 10px;
		line-height: 1.25;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.maxtel-home-news .maxtel-post-card .posted-on {
		flex: 0 0 auto;
		font-size: 11px;
		line-height: 1.25;
	}

	.maxtel-home-news .maxtel-post-card__title {
		display: -webkit-box;
		overflow: hidden;
		margin: 0.18rem 0;
		font-size: 14px;
		line-height: 1.32;
		text-align: left;
		text-align-last: auto;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.maxtel-home-news .maxtel-post-card__title a {
		text-align: left;
		text-align-last: auto;
	}

	.maxtel-home-news .maxtel-post-card__body p {
		display: none;
	}

	.maxtel-home-news .maxtel-section__footer {
		margin-top: 1rem;
	}

	.maxtel-about-brand .maxtel-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.5rem;
		margin: 0.95rem 0 0.85rem;
	}

	.maxtel-about-brand .maxtel-stats__item {
		min-width: 0;
		padding: 0.65rem 0.35rem;
	}

	.maxtel-about-brand .maxtel-stats__value {
		font-size: clamp(20px, 6vw, 24px);
	}

	.maxtel-about-brand .maxtel-stats__item span {
		display: block;
		font-size: 10px;
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	.maxtel-about-brand .maxtel-btn {
		min-height: 38px;
		padding: 0.52rem 0.9rem;
		font-size: 13px;
	}

	.maxtel-about-brand__media img {
		width: 100%;
		height: 170px;
		object-fit: cover;
	}

	.maxtel-contact-cta__panel {
		padding: 1.5rem;
	}

	.maxtel-contact-cta .maxtel-contact-form__highlights {
		display: grid;
		gap: 0.55rem;
	}

	.maxtel-contact-cta__button {
		width: 100%;
	}

	.maxtel-form__row--half {
		grid-template-columns: 1fr;
	}

	.maxtel-hero-slider__nav {
		align-items: flex-end;
		padding: 0 0.8rem 0.72rem;
	}

	.maxtel-hero-slider__nav .maxtel-slider__arrow {
		width: 32px;
		height: 32px;
		background: rgba(4, 30, 50, 0.42);
		font-size: 17px;
	}

	.maxtel-hero-slider__nav .maxtel-slider__dots {
		bottom: 0.82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.maxtel-partners-slider__track,
	.maxtel-press-slider__track,
	.maxtel-reviews-slider__track,
	.maxtel-carousel__track {
		animation: none !important;
		transition: none !important;
	}
}

