/* ===================================================
   Home CSS - Section-specific styles
   =================================================== */

/* ===================================================
   HERO SECTION
   =================================================== */

.acc-hero {
	padding: 0;
}

.acc-hero__layout {
	display: grid;
	grid-template-columns: 1fr 100px;
	background: var(--acc-navy);
}

.acc-hero__slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	background: var(--acc-navy);
}

.acc-hero__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-hero__slide {
	min-width: 100%;
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}

.acc-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

button.acc-hero__prev,
button.acc-hero__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--acc-gold);
	z-index: 10;
	transition: all var(--acc-transition);
	cursor: pointer;
}

button.acc-hero__prev:hover,
button.acc-hero__next:hover {
	background: transparent;
	color: var(--acc-gold);
	opacity: 0.8;
}

button.acc-hero__prev {
	left: 24px;
}

button.acc-hero__next {
	right: 24px;
}

.acc-hero__dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.acc-hero__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
	transition: all var(--acc-transition);
	padding: 0;
	cursor: pointer;
}

.acc-hero__dot.active {
	background: var(--acc-white);
	border-color: var(--acc-white);
	transform: scale(1.2);
}

.acc-hero__thumbs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px 8px;
	justify-content: center;
}

.acc-hero__thumb {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: var(--acc-radius-sm);
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.25);
	opacity: 0.6;
	cursor: pointer;
	padding: 0;
}

.acc-hero__thumb.active {
	border-color: var(--acc-gold);
	opacity: 1;
}

.acc-hero__thumb:hover {
	opacity: 0.9;
}

.acc-hero__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===================================================
   MODELS SECTION
   =================================================== */

.acc-models {
	padding: 64px 0 80px;
	background: var(--acc-white);
}

.acc-models__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.acc-models__card {
	background: var(--acc-white);
	border-radius: var(--acc-radius-lg);
	box-shadow: var(--acc-shadow);
	overflow: hidden;
	transition: all var(--acc-transition);
}

.acc-models__card:hover {
	box-shadow: var(--acc-shadow-lg);
	transform: translateY(-2px);
}

.acc-models__card-inner {
	display: flex;
	align-items: center;
	padding: 40px;
	gap: 32px;
}

.acc-models__text {
	flex: 1;
}

.acc-models__name {
	font-size: 32px;
	font-weight: 800;
	color: var(--acc-navy);
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.acc-models__desc {
	font-size: 16px;
	color: var(--acc-gray-600);
	line-height: 1.6;
	margin-bottom: 24px;
}

.acc-models__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.acc-models__image {
	flex-shrink: 0;
	width: 280px;
}

.acc-models__image img {
	width: 100%;
	height: auto;
}

/* ===================================================
   WHY SECTION
   =================================================== */

.acc-why {
	padding: 80px 0;
	background: var(--acc-gray-50);
}
button {box-shadow: unset;}
.acc-models__image img {border-radius: 15px; }
.acc-why__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.acc-why__item {
	text-align: center;
	padding: 32px 20px 24px;
	background: var(--acc-white);
	border-radius: var(--acc-radius-lg);
	box-shadow: var(--acc-shadow-sm);
	transition: all var(--acc-transition);
}

.acc-why__item:hover {
	box-shadow: var(--acc-shadow);
	transform: translateY(-2px);
}

.acc-why__icon-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--acc-blue-light);
	color: var(--acc-hyundai-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.acc-why__text {
	font-size: 14px;
	font-weight: 600;
	color: var(--acc-gray-800);
	line-height: 1.4;
}

/* ===================================================
   EXTERIOR SECTION
   =================================================== */

.acc-exterior {
	padding: 84px 0;
	background: var(--acc-white);
}

.acc-exterior .acc-section__actions {
	margin-top: 24px;
}

.acc-exterior__layout {
	display: grid;
	grid-template-columns: 280px 1fr 80px;
	gap: 32px;
	align-items: center;
}

.acc-exterior__info {
	min-width: 0;
}

.acc-exterior__slider {
	position: relative;
	border-radius: var(--acc-radius-lg);
	overflow: hidden;
	background: var(--acc-gray-100);
}

.acc-exterior__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-exterior__slide {
	min-width: 100%;
}

.acc-exterior__slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.acc-exterior__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.acc-exterior__thumb {
	width: 80px;
	height: 56px;
	border-radius: var(--acc-radius-sm);
	overflow: hidden;
	border: 2px solid transparent;
	transition: all var(--acc-transition);
	padding: 0;
	opacity: 0.6;
	cursor: pointer;
}

.acc-exterior__thumb.active {
	border-color: var(--acc-hyundai-blue);
	opacity: 1;
}

.acc-exterior__thumb:hover {
	opacity: 0.9;
}

.acc-exterior__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc-exterior__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
}

button.acc-exterior__prev,
button.acc-exterior__next {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--acc-gold);
	transition: all var(--acc-transition);
	cursor: pointer;
}

button.acc-exterior__prev:hover,
button.acc-exterior__next:hover {
	background: transparent;
	color: var(--acc-gold);
	opacity: 0.8;
}

.acc-exterior__dots {
	display: flex;
	gap: 8px;
}

.acc-exterior__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--acc-gray-300);
	padding: 0;
	transition: all var(--acc-transition);
	cursor: pointer;
}

.acc-exterior__dot.active {
	background: var(--acc-hyundai-blue);
	transform: scale(1.3);
}

/* ===================================================
   INTERIOR SECTION
   =================================================== */

.acc-interior {
	padding: 84px 0;
	background: var(--acc-navy);
	position: relative;
	overflow: hidden;
}

.acc-interior .acc-section__actions {
	margin-top: 24px;
}

.acc-interior__layout {
	display: grid;
	grid-template-columns: 280px 1fr 80px;
	gap: 32px;
	align-items: center;
}

.acc-interior__info {
	min-width: 0;
}

.acc-interior__slider {
	position: relative;
	border-radius: var(--acc-radius-lg);
	overflow: hidden;
	background: var(--acc-navy-light);
}

.acc-interior__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-interior__slide {
	min-width: 100%;
}

.acc-interior__slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.acc-interior__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.acc-interior__thumb {
	width: 80px;
	height: 56px;
	border-radius: var(--acc-radius-sm);
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: all var(--acc-transition);
	padding: 0;
	opacity: 0.5;
	cursor: pointer;
}

.acc-interior__thumb.active {
	border-color: var(--acc-gold);
	opacity: 1;
}

.acc-interior__thumb:hover {
	opacity: 0.9;
}

.acc-interior__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc-interior__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
}

button.acc-interior__prev,
button.acc-interior__next {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--acc-gold);
	transition: all var(--acc-transition);
	cursor: pointer;
}

button.acc-interior__prev:hover,
button.acc-interior__next:hover {
	background: transparent;
	color: var(--acc-gold);
	opacity: 0.8;
}

.acc-interior__dots {
	display: flex;
	gap: 8px;
}

.acc-interior__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	padding: 0;
	transition: all var(--acc-transition);
	cursor: pointer;
}

.acc-interior__dot.active {
	background: var(--acc-gold);
	transform: scale(1.3);
}

/* ===================================================
   TECHNOLOGY SECTION
   =================================================== */

.acc-technology {
	padding: 84px 0;
	background: var(--acc-white);
}

.acc-technology .acc-section__actions {
	margin-top: 24px;
}

.acc-technology__layout {
	display: grid;
	grid-template-columns: 320px 1fr 80px;
	gap: 32px;
	align-items: center;
}

.acc-technology__info {
	min-width: 0;
}

.acc-technology__slider {
	position: relative;
	border-radius: var(--acc-radius-lg);
	overflow: hidden;
	background: var(--acc-gray-100);
}

.acc-technology__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-technology__slide {
	min-width: 100%;
}

.acc-technology__slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.acc-technology__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.acc-technology__thumb {
	width: 80px;
	height: 56px;
	border-radius: var(--acc-radius-sm);
	overflow: hidden;
	border: 2px solid transparent;
	transition: all var(--acc-transition);
	padding: 0;
	opacity: 0.6;
	cursor: pointer;
}

.acc-technology__thumb.active {
	border-color: var(--acc-hyundai-blue);
	opacity: 1;
}

.acc-technology__thumb:hover {
	opacity: 0.9;
}

.acc-technology__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc-technology__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
}

button.acc-technology__prev,
button.acc-technology__next {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--acc-gold);
	transition: all var(--acc-transition);
	cursor: pointer;
}

button.acc-technology__prev:hover,
button.acc-technology__next:hover {
	background: transparent;
	color: var(--acc-gold);
	opacity: 0.8;
}

.acc-technology__dots {
	display: flex;
	gap: 8px;
}

.acc-technology__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--acc-gray-300);
	padding: 0;
	transition: all var(--acc-transition);
	cursor: pointer;
}

.acc-technology__dot.active {
	background: var(--acc-hyundai-blue);
	transform: scale(1.3);
}

.acc-technology__features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.acc-technology__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--acc-gray-700);
}

.acc-technology__features li svg {
	color: var(--acc-blue);
	flex-shrink: 0;
}

/* ===================================================
   SAFETY SECTION
   =================================================== */

.acc-safety {
	padding: 84px 0;
	background: var(--acc-gray-50);
}

.acc-safety .acc-section__actions {
	margin-top: 24px;
}

.acc-safety__layout {
	display: grid;
	grid-template-columns: 320px 1fr 80px;
	gap: 32px;
	align-items: center;
}

.acc-safety__info {
	min-width: 0;
}

.acc-safety__slider {
	position: relative;
	border-radius: var(--acc-radius-lg);
	overflow: hidden;
	background: var(--acc-white);
}

.acc-safety__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-safety__slide {
	min-width: 100%;
}

.acc-safety__slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.acc-safety__thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.acc-safety__thumb {
	width: 80px;
	height: 56px;
	border-radius: var(--acc-radius-sm);
	overflow: hidden;
	border: 2px solid transparent;
	transition: all var(--acc-transition);
	padding: 0;
	opacity: 0.6;
	cursor: pointer;
}

.acc-safety__thumb.active {
	border-color: var(--acc-hyundai-blue);
	opacity: 1;
}

.acc-safety__thumb:hover {
	opacity: 0.9;
}

.acc-safety__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc-safety__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
}

button.acc-safety__prev,
button.acc-safety__next {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--acc-gold);
	transition: all var(--acc-transition);
	cursor: pointer;
}

button.acc-safety__prev:hover,
button.acc-safety__next:hover {
	background: transparent;
	color: var(--acc-gold);
	opacity: 0.8;
}

.acc-safety__dots {
	display: flex;
	gap: 8px;
}

.acc-safety__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--acc-gray-300);
	padding: 0;
	transition: all var(--acc-transition);
	cursor: pointer;
}

.acc-safety__dot.active {
	background: var(--acc-hyundai-blue);
	transform: scale(1.3);
}

.acc-safety__features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.acc-safety__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--acc-gray-700);
}

.acc-safety__features li svg {
	color: var(--acc-green);
	flex-shrink: 0;
}

/* ===================================================
   PRICING SECTION
   =================================================== */

.acc-pricing {
	padding: 84px 0;
	background: var(--acc-white);
}

.acc-pricing__subtitle {
	font-size: 22px;
	font-weight: 700;
	color: var(--acc-navy);
	margin-bottom: 24px;
}

.acc-pricing__subtitle:not(:first-of-type) {
	margin-top: 48px;
}

/* Pricing Grid - Desktop: 3-column grid */

.acc-pricing__slider {
	position: relative;
	padding: 0 52px;
}

.acc-pricing__track {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
}

.acc-pricing__slide {
	flex-shrink: 0;
	width: calc((100% - 48px) / 3);
}

.acc-pricing__card {
	background: var(--acc-white);
	border-radius: var(--acc-radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all var(--acc-transition);
	height: 100%;
}

.acc-pricing__card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	transform: translateY(-4px);
}

.acc-pricing__card-img {
	width: 100%;
	height: 200px;
}

.acc-pricing__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc-pricing__card-body {
	padding: 24px;
}

.acc-pricing__card-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--acc-navy);
	margin-bottom: 8px;
	line-height: 1.3;
}

.acc-pricing__card-price {
	font-size: 14px;
	color: var(--acc-gray-600);
	margin-bottom: 16px;
}

.acc-pricing__card-price strong {
	color: var(--acc-hyundai-blue);
}

.acc-pricing__card-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.acc-pricing__card-features li {
	font-size: 13px;
	color: var(--acc-gray-600);
	position: relative;
	padding-left: 16px;
}

.acc-pricing__card-features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--acc-hyundai-blue);
}

.acc-pricing__btn {
	width: 100%;
}

/* ===================================================
   PROMO SECTION
   =================================================== */

.acc-promo {
	padding: 0;
}

.acc-promo__banner {
	background: linear-gradient(135deg, var(--acc-navy) 0%, #0d2a6b 50%, #0a3d8a 100%);
	border-radius: var(--acc-radius-xl);
	padding: 64px 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.acc-promo__banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.acc-promo__banner::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 102, 179, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.acc-promo__content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.acc-promo__small {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--acc-gold);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.acc-promo__heading {
	font-size: 48px;
	font-weight: 900;
	color: var(--acc-white);
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: -0.03em;
}

.acc-promo__desc {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ===================================================
   DELIVERY SECTION
   =================================================== */

.acc-delivery {
	padding: 84px 0;
	background: var(--acc-gray-50);
}

.acc-delivery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.acc-delivery__card {
	background: var(--acc-white);
	border-radius: var(--acc-radius-lg);
	box-shadow: var(--acc-shadow);
	overflow: hidden;
	transition: all var(--acc-transition);
}

.acc-delivery__card:hover {
	box-shadow: var(--acc-shadow-lg);
	transform: translateY(-2px);
}

.acc-delivery__photo {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.acc-delivery__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acc-delivery__text {
	padding: 20px 24px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.acc-delivery__text svg {
	flex-shrink: 0;
	color: var(--acc-gold);
	margin-top: 2px;
}

.acc-delivery__text p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--acc-gray-700);
	font-style: italic;
}

/* ===================================================
   DEALER SECTION
   =================================================== */

.acc-dealer {
	padding: 84px 0;
	background: var(--acc-white);
}

.acc-dealer__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	background: var(--acc-white);
	border-radius: var(--acc-radius-xl);
	box-shadow: var(--acc-shadow-lg);
	overflow: hidden;
	padding: 48px;
}

.acc-dealer__name {
	font-size: 28px;
	font-weight: 800;
	color: var(--acc-navy);
	margin-bottom: 4px;
}

.acc-dealer__badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--acc-hyundai-blue);
	background: var(--acc-blue-light);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.acc-dealer__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 32px;
}

.acc-dealer__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--acc-gray-700);
	line-height: 1.5;
}

.acc-dealer__list li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--acc-hyundai-blue);
}

.acc-dealer__list li a {
	color: var(--acc-hyundai-blue);
	font-weight: 600;
}

.acc-dealer__list li a:hover {
	text-decoration: underline;
}

.acc-dealer__map {
	border-radius: var(--acc-radius-lg);
	overflow: hidden;
	height: 100%;
	min-height: 320px;
}

.acc-dealer__map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===================================================
   FINAL CTA SECTION
   =================================================== */

.acc-final-cta {
	padding: 84px 0;
	background: var(--acc-gray-50);
}

.acc-final-cta__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.acc-final-cta__image {
	border-radius: var(--acc-radius-xl);
	overflow: hidden;
	box-shadow: var(--acc-shadow-lg);
}

.acc-final-cta__image img {
	width: 100%;
	height: auto;
}

.acc-final-cta__form-wrap {
	background: var(--acc-white);
	padding: 40px;
	border-radius: var(--acc-radius-xl);
	box-shadow: var(--acc-shadow);
}

.acc-final-cta__title {
	font-size: 28px;
	font-weight: 800;
	color: var(--acc-navy);
	margin-bottom: 8px;
	line-height: 1.3;
}

.acc-final-cta__desc {
	font-size: 14px;
	color: var(--acc-gray-600);
	margin-bottom: 28px;
	line-height: 1.6;
}

/* ===================================================
   PAGE TEMPLATE
   =================================================== */

.acc-page {
	padding: 100px 0 80px;
}

.acc-page__title {
	font-size: 36px;
	font-weight: 800;
	color: var(--acc-navy);
	margin-bottom: 24px;
}

.acc-page__content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--acc-gray-700);
}

/* ===================================================
   PULSE ANIMATION
   =================================================== */

.acc-btn--pulse {
	animation: acc-pulse 2s ease-in-out infinite;
}

@keyframes acc-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(0, 44, 95, 0.4); }
	50% { box-shadow: 0 0 0 8px rgba(0, 44, 95, 0); }
}

/* ===================================================
   FLOATING CONTACT
   =================================================== */

.acc-contact {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.acc-contact__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	color: var(--acc-white);
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	white-space: nowrap;
	width: fit-content;
}

.acc-contact__btn:hover {
	color: var(--acc-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.acc-contact__zalo {
	background: #0068ff;
	animation: acc-contact-pulse 2s ease-in-out infinite 0.5s;
}

.acc-contact__phone {
	background: #28a745;
	animation: acc-contact-pulse 2s ease-in-out infinite;
}

@keyframes acc-contact-pulse {
	0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }
	50% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.15); }
}

.acc-contact__btn svg {
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.acc-contact {
		bottom: 16px;
		left: 16px;
		right: auto;
		gap: 10px;
	}

	.acc-contact__btn {
		padding: 10px 16px;
		font-size: 13px;
	}

	.acc-contact__btn span {
		display: none;
	}

	.acc-contact__btn {
		width: 44px;
		height: 44px;
		padding: 0;
		justify-content: center;
		border-radius: 50%;
	}
}
