/* ==========================================================================
   Shayan Mobile Pro — Base: tokens, reset, typography, header, hero, footer
   Glassmorphism • Teal • RTL • Dark mode
   ========================================================================== */

/* ------------------------------ Fonts ----------------------------------- */
@font-face {
	font-family: 'Vazirmatn';
	src: url('../fonts/Vazirmatn[wght].woff2') format('woff2 supports variations'),
		url('../fonts/Vazirmatn[wght].woff2') format('woff2-variations');
	font-weight: 100 900;
	font-display: swap;
	font-style: normal;
}

/* ------------------------------ Tokens ---------------------------------- */
:root {
	--smp-primary: #0d9488;
	--smp-primary-600: #0d9488;
	--smp-primary-700: #0f766e;
	--smp-primary-500: #14b8a6;
	--smp-cyan: #06b6d4;
	--smp-gradient: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);

	--smp-bg: #f1f6f8;
	--smp-surface: rgba(255, 255, 255, 0.62);
	--smp-surface-strong: rgba(255, 255, 255, 0.85);
	--smp-border: rgba(13, 148, 136, 0.14);
	--smp-border-strong: rgba(255, 255, 255, 0.65);

	--smp-text: #0f172a;
	--smp-text-2: #334155;
	--smp-muted: #64748b;

	--smp-primary-soft: rgba(13, 148, 136, 0.10);
	--smp-danger: #e11d48;
	--smp-danger-soft: rgba(225, 29, 72, 0.12);
	--smp-success: #059669;
	--smp-star: #f59e0b;

	--smp-radius-lg: 24px;
	--smp-radius: 18px;
	--smp-radius-sm: 12px;
	--smp-shadow: 0 10px 40px -12px rgba(2, 6, 23, 0.14);
	--smp-shadow-sm: 0 4px 16px -6px rgba(2, 6, 23, 0.10);
	--smp-blur: saturate(160%) blur(18px);

	--smp-container: 1240px;
	--smp-font: 'Vazirmatn', 'Tahoma', sans-serif;
}

html[data-theme='dark'] {
	--smp-bg: #0a1120;
	--smp-surface: rgba(17, 27, 45, 0.60);
	--smp-surface-strong: rgba(17, 27, 45, 0.92);
	--smp-border: rgba(45, 212, 191, 0.14);
	--smp-border-strong: rgba(148, 163, 184, 0.16);

	--smp-text: #e6edf6;
	--smp-text-2: #b9c5d6;
	--smp-muted: #7c8aa0;

	--smp-primary-soft: rgba(45, 212, 191, 0.12);
	--smp-shadow: 0 14px 44px -12px rgba(0, 0, 0, 0.55);
	--smp-shadow-sm: 0 6px 20px -8px rgba(0, 0, 0, 0.45);
}

/* ------------------------------ Reset ----------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--smp-font);
	background: var(--smp-bg);
	color: var(--smp-text);
	line-height: 1.85;
	font-size: 15.5px;
	min-height: 100vh;
	overflow-x: hidden;
	transition: background-color 0.35s ease, color 0.35s ease;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
	background: none;
	border: 0;
}

a {
	color: var(--smp-primary-600);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--smp-primary-500);
}

h1, h2, h3, h4 {
	line-height: 1.45;
	font-weight: 800;
	color: var(--smp-text);
}

ul, ol {
	list-style: none;
	padding: 0;
}

:focus-visible {
	outline: 2px solid var(--smp-primary-500);
	outline-offset: 2px;
	border-radius: 6px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	right: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 18px;
	background: var(--smp-primary-600);
	color: #fff;
	border-radius: 12px;
}

.smp-container {
	max-width: var(--smp-container);
	margin-inline: auto;
	padding-inline: 20px;
}

.smp-main {
	min-height: 40vh;
	position: relative;
	z-index: 1;
}

/* --------------------- Decorative background ---------------------------- */
.smp-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.smp-bg__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
	animation: smp-drift 18s ease-in-out infinite alternate;
}

.smp-bg__blob--1 {
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.45), transparent 65%);
	top: -140px;
	right: -120px;
}

.smp-bg__blob--2 {
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 65%);
	top: 30%;
	left: -160px;
	animation-delay: -6s;
}

.smp-bg__blob--3 {
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.30), transparent 65%);
	bottom: -120px;
	right: 22%;
	animation-delay: -12s;
}

@keyframes smp-drift {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to   { transform: translate3d(30px, 40px, 0) scale(1.08); }
}

.smp-bg__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(13, 148, 136, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(13, 148, 136, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 30%, transparent 75%);
}

html[data-theme='dark'] .smp-bg__grid {
	background-image:
		linear-gradient(rgba(45, 212, 191, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
}

/* ---------------------------- Glass card -------------------------------- */
.smp-glass {
	background: var(--smp-surface);
	border: 1px solid var(--smp-border-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	border-radius: var(--smp-radius-lg);
	box-shadow: var(--smp-shadow-sm);
}

/* ------------------------- Announcement bar ----------------------------- */
.smp-notice {
	position: relative;
	z-index: 60;
	background: var(--smp-gradient);
	color: #fff;
	font-size: 13.5px;
	font-weight: 500;
}

.smp-notice__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding-block: 8px;
	min-height: 38px;
}

.smp-notice__text {
	text-align: center;
	flex: 1;
}

.smp-notice__close {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	color: #fff;
	opacity: 0.85;
	flex: 0 0 auto;
}

.smp-notice__close:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.15);
}

.smp-notice__close .smp-icon {
	width: 15px;
	height: 15px;
}

/* ------------------------------ Header ---------------------------------- */
.smp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--smp-surface-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	border-bottom: 1px solid var(--smp-border);
	transition: box-shadow 0.3s ease, background-color 0.35s ease;
}

.smp-header.is-scrolled {
	box-shadow: var(--smp-shadow-sm);
}

.smp-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 68px;
	position: relative;
}

.smp-header__brand .custom-logo {
	max-height: 46px;
	width: auto;
}

.smp-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.smp-logo__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: var(--smp-gradient);
	color: #fff;
	box-shadow: 0 6px 18px -6px rgba(13, 148, 136, 0.55);
}

.smp-logo__mark .smp-icon {
	width: 22px;
	height: 22px;
}

.smp-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.smp-logo__title {
	font-weight: 800;
	font-size: 18px;
	color: var(--smp-text);
	letter-spacing: 0.2px;
}

.smp-logo__subtitle {
	font-size: 11px;
	color: var(--smp-muted);
	font-weight: 500;
}

.smp-header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.smp-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.smp-menu li {
	position: relative;
}

.smp-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	border-radius: 12px;
	color: var(--smp-text-2);
	font-weight: 600;
	font-size: 14.5px;
	transition: all 0.2s ease;
}

.smp-menu > li > a:hover,
.smp-menu > li > a.current {
	color: var(--smp-primary-600);
	background: var(--smp-primary-soft);
}

/* Sub menus */
.smp-menu ul {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 200px;
	background: var(--smp-surface-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	border: 1px solid var(--smp-border);
	border-radius: var(--smp-radius);
	box-shadow: var(--smp-shadow);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.22s ease;
	z-index: 20;
}

.smp-menu li:hover > ul,
.smp-menu li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.smp-menu ul a {
	display: block;
	padding: 8px 12px;
	border-radius: 10px;
	color: var(--smp-text-2);
	font-size: 14px;
	font-weight: 500;
}

.smp-menu ul a:hover {
	background: var(--smp-primary-soft);
	color: var(--smp-primary-600);
}

.smp-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.smp-icon-btn {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	color: var(--smp-text-2);
	border: 1px solid transparent;
	transition: all 0.2s ease;
}

.smp-icon-btn:hover {
	color: var(--smp-primary-600);
	background: var(--smp-primary-soft);
}

.smp-icon-btn .smp-icon {
	width: 20px;
	height: 20px;
}

/* Dark-mode toggle */
.smp-theme-toggle .smp-theme-toggle__moon { display: none; }
.smp-theme-toggle .smp-theme-toggle__sun { display: block; }

html[data-theme='dark'] .smp-theme-toggle .smp-theme-toggle__moon { display: block; }
html[data-theme='dark'] .smp-theme-toggle .smp-theme-toggle__sun { display: none; }

/* Cart button */
.smp-cart-btn {
	position: relative;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	color: var(--smp-text-2);
	transition: all 0.2s ease;
}

.smp-cart-btn:hover {
	color: var(--smp-primary-600);
	background: var(--smp-primary-soft);
}

.smp-cart-btn .smp-icon {
	width: 20px;
	height: 20px;
}

.smp-cart-count {
	position: absolute;
	top: -4px;
	left: -6px;
	min-width: 19px;
	height: 19px;
	display: grid;
	place-items: center;
	padding-inline: 5px;
	border-radius: 999px;
	background: var(--smp-danger);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 3px 8px -2px rgba(225, 29, 72, 0.5);
}

/* Menu toggle (mobile) */
.smp-menu-toggle {
	display: none;
}

/* Search panel (desktop dropdown) */
.smp-search-panel {
	position: absolute;
	inset-inline: 0;
	top: 100%;
	background: var(--smp-surface-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	border-bottom: 1px solid var(--smp-border);
	box-shadow: var(--smp-shadow);
	padding-block: 16px;
}

/* ------------------------------ Drawer ---------------------------------- */
.smp-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(2, 6, 23, 0.45);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.smp-drawer-overlay.is-open {
	opacity: 1;
}

.smp-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	width: min(330px, 88vw);
	background: var(--smp-surface-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	border-left: 1px solid var(--smp-border);
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.smp-drawer.is-open {
	transform: translateX(0);
	box-shadow: -20px 0 60px rgba(2, 6, 23, 0.25);
}

.smp-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--smp-border);
}

.smp-drawer__search {
	padding: 16px 20px 4px;
}

.smp-drawer__nav {
	padding: 12px 20px;
}

.smp-menu--drawer {
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
}

.smp-menu--drawer > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 15px;
}

.smp-menu--drawer ul {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: 0;
	background: transparent;
	padding: 0 12px 6px;
	display: none;
}

.smp-menu--drawer li:hover > ul,
.smp-menu--drawer li:focus-within > ul {
	display: block;
}

.smp-drawer__contact {
	margin-top: auto;
	padding: 16px 20px 24px;
	border-top: 1px solid var(--smp-border);
	display: flex;
	align-items: center;
	gap: 10px;
}

.smp-drawer__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--smp-text);
	font-size: 14px;
}

.smp-drawer__phone .smp-icon {
	width: 18px;
	height: 18px;
	color: var(--smp-primary-600);
}

/* ------------------------------ Hero ------------------------------------ */
.smp-hero {
	position: relative;
	z-index: 1;
	padding-block: 56px 40px;
}

.smp-hero__inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 40px;
}

.smp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 999px;
	background: var(--smp-surface);
	border: 1px solid var(--smp-border-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	color: var(--smp-primary-600);
	font-size: 13px;
	font-weight: 700;
	box-shadow: var(--smp-shadow-sm);
}

.smp-hero__badge .smp-icon {
	width: 16px;
	height: 16px;
}

.smp-hero__title {
	font-size: clamp(30px, 4.6vw, 52px);
	font-weight: 900;
	line-height: 1.5;
	margin-top: 18px;
	background: linear-gradient(120deg, var(--smp-text) 55%, var(--smp-primary-600));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.smp-hero__subtitle {
	margin-top: 14px;
	font-size: clamp(15px, 1.6vw, 17.5px);
	color: var(--smp-muted);
	max-width: 46ch;
	font-weight: 500;
}

.smp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.smp-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px dashed var(--smp-border);
}

.smp-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.smp-hero__stat strong {
	font-size: 21px;
	font-weight: 900;
	color: var(--smp-primary-600);
}

.smp-hero__stat span {
	font-size: 12.5px;
	color: var(--smp-muted);
	font-weight: 500;
}

/* Hero visual — CSS phone mock */
.smp-hero__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 380px;
}

.smp-hero__orb {
	position: absolute;
	width: 115%;
	height: 115%;
	background: radial-gradient(circle at 40% 35%, rgba(13, 148, 136, 0.35), rgba(6, 182, 212, 0.12) 55%, transparent 70%);
	filter: blur(18px);
	border-radius: 50%;
}

.smp-hero__phone {
	position: relative;
	width: 218px;
	height: 430px;
	border-radius: 38px;
	background: linear-gradient(160deg, #123a3a, #0c1f2e 60%);
	border: 3px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 34px 70px -20px rgba(2, 6, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	transform: rotate(-8deg);
	animation: smp-float 7s ease-in-out infinite;
}

.smp-hero__phone-notch {
	position: absolute;
	top: 12px;
	right: 50%;
	transform: translateX(50%);
	width: 86px;
	height: 22px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.75);
}

.smp-hero__phone-screen {
	position: absolute;
	inset: 44px 14px 14px;
	border-radius: 26px;
	background: linear-gradient(155deg, rgba(13, 148, 136, 0.85), rgba(6, 182, 212, 0.75));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	text-align: center;
	padding: 14px;
	overflow: hidden;
}

.smp-hero__phone-brand {
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.4px;
}

.smp-hero__phone-model {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	opacity: 0.9;
	background: rgba(255, 255, 255, 0.16);
	padding: 6px 12px;
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

.smp-hero__phone-model .smp-icon {
	width: 14px;
	height: 14px;
}

.smp-hero__phone-shadow {
	position: absolute;
	bottom: -34px;
	right: 50%;
	transform: translateX(50%);
	width: 68%;
	height: 26px;
	border-radius: 50%;
	background: rgba(2, 6, 23, 0.28);
	filter: blur(10px);
}

@keyframes smp-float {
	0%, 100% { transform: rotate(-8deg) translateY(0); }
	50% { transform: rotate(-8deg) translateY(-14px); }
}

.smp-float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 16px;
	z-index: 2;
	animation: smp-float 6s ease-in-out infinite;
}

.smp-float--1 {
	top: 14%;
	right: 4%;
	animation-delay: -2s;
}

.smp-float--2 {
	bottom: 12%;
	left: 2%;
	animation-delay: -4s;
}

.smp-float .smp-icon {
	width: 26px;
	height: 26px;
	color: var(--smp-primary-600);
	flex: 0 0 auto;
}

.smp-float strong {
	display: block;
	font-size: 13.5px;
	color: var(--smp-text);
}

.smp-float span {
	display: block;
	font-size: 11.5px;
	color: var(--smp-muted);
}

/* Hero search */
.smp-hero-search {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 38px;
	padding: 8px 8px 8px 8px;
	padding-inline-start: 20px;
	border-radius: 999px;
	position: relative;
	z-index: 2;
}

.smp-hero-search__icon {
	width: 20px;
	height: 20px;
	color: var(--smp-muted);
	flex: 0 0 auto;
}

.smp-hero-search__input {
	flex: 1;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 15px;
	min-width: 0;
}

.smp-hero-search__input::placeholder {
	color: var(--smp-muted);
}

/* ------------------------------ Sections -------------------------------- */
.smp-section {
	position: relative;
	z-index: 1;
	padding-block: 34px;
}

.smp-section--last {
	padding-bottom: 56px;
}

.smp-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.smp-section__title {
	font-size: clamp(20px, 2.6vw, 27px);
	font-weight: 800;
	position: relative;
	padding-inline-start: 18px;
}

.smp-section__title::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 8px;
	bottom: 8px;
	width: 5px;
	border-radius: 999px;
	background: var(--smp-gradient);
}

.smp-section__desc {
	color: var(--smp-muted);
	font-size: 14px;
	margin-top: 4px;
	font-weight: 500;
}

/* ----------------------------- Features --------------------------------- */
.smp-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.smp-feature {
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.smp-feature:hover {
	transform: translateY(-5px);
	box-shadow: var(--smp-shadow);
}

.smp-feature__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	color: #fff;
	box-shadow: 0 8px 20px -8px rgba(13, 148, 136, 0.55);
}

.smp-feature__icon .smp-icon {
	width: 25px;
	height: 25px;
}

.smp-feature__icon--1 { background: linear-gradient(135deg, #0d9488, #0f766e); }
.smp-feature__icon--2 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.smp-feature__icon--3 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.smp-feature__icon--4 { background: linear-gradient(135deg, #0891b2, #0e7490); }

.smp-feature__title {
	font-size: 16.5px;
	font-weight: 800;
}

.smp-feature__text {
	font-size: 13.5px;
	color: var(--smp-muted);
	line-height: 1.9;
}

/* ----------------------------- Banner ----------------------------------- */
.smp-banner {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
	gap: 28px;
	padding: 44px 42px;
	border-radius: 28px;
	background:
		radial-gradient(ellipse 60% 120% at 85% 20%, rgba(255, 255, 255, 0.14), transparent),
		linear-gradient(120deg, #0f766e 0%, #0d9488 45%, #06b6d4 100%);
	box-shadow: 0 24px 60px -20px rgba(13, 148, 136, 0.55);
	overflow: hidden;
	color: #fff;
}

.smp-banner::after {
	content: '';
	position: absolute;
	inset-inline-end: -60px;
	top: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.10);
}

.smp-banner__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	font-size: 13px;
	font-weight: 700;
}

.smp-banner__tag .smp-icon {
	width: 15px;
	height: 15px;
}

.smp-banner__title {
	color: #fff;
	font-size: clamp(21px, 3vw, 30px);
	margin-top: 14px;
}

.smp-banner__subtitle {
	color: rgba(255, 255, 255, 0.88);
	font-size: 14.5px;
	margin-top: 8px;
	max-width: 52ch;
}

.smp-banner .smp-btn--light {
	margin-top: 22px;
}

.smp-countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	position: relative;
	z-index: 1;
}

.smp-countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 14px 8px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.smp-countdown__unit strong {
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.smp-countdown__unit span {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.8);
}

/* ------------------------------ Brands ---------------------------------- */
.smp-brands {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.smp-brand {
	padding: 12px 30px;
	border-radius: 16px;
	font-weight: 800;
	font-size: 15.5px;
	color: var(--smp-muted);
	letter-spacing: 0.6px;
	transition: all 0.25s ease;
}

.smp-brand:hover {
	color: var(--smp-primary-600);
	transform: translateY(-3px);
	box-shadow: var(--smp-shadow-sm);
}

/* ------------------------------ Footer ---------------------------------- */
.smp-footer {
	position: relative;
	z-index: 1;
	margin-top: 30px;
	background: var(--smp-surface-strong);
	backdrop-filter: var(--smp-blur);
	-webkit-backdrop-filter: var(--smp-blur);
	border-top: 1px solid var(--smp-border);
	overflow: hidden;
}

.smp-footer__glow {
	position: absolute;
	top: -120px;
	right: 20%;
	width: 420px;
	height: 240px;
	background: radial-gradient(ellipse, rgba(13, 148, 136, 0.16), transparent 70%);
	filter: blur(30px);
	pointer-events: none;
}

.smp-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
	gap: 34px;
	padding-block: 44px 34px;
	position: relative;
}

.smp-footer__about .smp-logo__title {
	font-size: 19px;
}

.smp-footer__desc {
	margin-top: 14px;
	font-size: 13.5px;
	color: var(--smp-muted);
	max-width: 38ch;
}

.smp-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.smp-social {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--smp-surface);
	border: 1px solid var(--smp-border-strong);
	color: var(--smp-text-2);
	transition: all 0.25s ease;
}

.smp-social:hover {
	background: var(--smp-gradient);
	color: #fff;
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: 0 8px 18px -6px rgba(13, 148, 136, 0.5);
}

.smp-social .smp-icon {
	width: 19px;
	height: 19px;
}

.smp-footer__title {
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 16px;
	position: relative;
	padding-inline-start: 14px;
}

.smp-footer__title::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 16px;
	border-radius: 999px;
	background: var(--smp-gradient);
}

.smp-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.smp-footer__links a,
.smp-footer__links li {
	font-size: 13.5px;
	color: var(--smp-muted);
	font-weight: 500;
	transition: color 0.2s ease;
}

.smp-footer__links a:hover {
	color: var(--smp-primary-600);
	padding-inline-end: 4px;
}

.smp-footer__contact-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.smp-footer__contact-list .smp-icon {
	width: 17px;
	height: 17px;
	color: var(--smp-primary-600);
	flex: 0 0 auto;
}

.smp-footer__bottom {
	border-top: 1px solid var(--smp-border);
	padding-block: 16px;
}

.smp-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	color: var(--smp-muted);
}

.smp-back-top {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--smp-gradient);
	color: #fff;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px -6px rgba(13, 148, 136, 0.55);
}

.smp-back-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.smp-back-top .smp-icon {
	width: 19px;
	height: 19px;
}

/* --------------------------- Reveal on scroll --------------------------- */
.smp-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.smp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.smp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.smp-bg__blob,
	.smp-hero__phone,
	.smp-float {
		animation: none;
	}
	html {
		scroll-behavior: auto;
	}
}
