﻿:root {
				--bg-0: #0b0f16;
				--bg-1: #0f1523;
				--bg-2: #141b2b;
				--accent-red: #e74c3c;
				--accent-blue: #3498db;
				--accent-gold: #ffd24d;
				--text: #e8edf7;
				--muted: #9aa6c5;
				--panel: #0f1726;
				--panel-border: rgba(255, 255, 255, 0.08);
			}

			* {
				box-sizing: border-box;
				margin: 0;
				padding: 0;
			}

			body {
				font-family: "Rajdhani", sans-serif;
				color: var(--text);
				background:
					radial-gradient(
						circle at 20% 10%,
						rgba(255, 255, 255, 0.06),
						transparent 45%
					),
					radial-gradient(
						circle at 85% 30%,
						rgba(52, 152, 219, 0.12),
						transparent 45%
					),
					linear-gradient(
						180deg,
						var(--bg-0),
						var(--bg-1) 55%,
						var(--bg-2)
					);
				min-height: 100vh;
				overflow-x: hidden;
			}

			.navbar {
				position: fixed;
				top: 0;
				width: 100%;
				background: rgba(11, 15, 22, 0.95);
				border-bottom: 1px solid rgba(255, 255, 255, 0.1);
				backdrop-filter: blur(10px);
				z-index: 1000;
				padding: 16px 24px;
				display: flex;
				justify-content: space-between;
				align-items: center;
			}

			.navbar-brand {
				font-family: "Oswald", sans-serif;
				font-size: 20px;
				font-weight: 700;
				letter-spacing: 0.08em;
				color: var(--accent-gold);
				text-transform: uppercase;
			}

			.navbar-menu {
				display: flex;
				gap: 30px;
				list-style: none;
			}

			.menu-toggle {
				display: none;
				flex-direction: column;
				justify-content: space-between;
				width: 25px;
				height: 20px;
				background: transparent;
				border: none;
				cursor: pointer;
				padding: 0;
			}

			.menu-toggle span {
				display: block;
				height: 3px;
				background: var(--text);
				border-radius: 3px;
			}

			.navbar-menu a {
				color: var(--text);
				text-decoration: none;
				font-size: 14px;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				position: relative;
				transition: color 0.3s ease;
			}

			.navbar-menu a:hover {
				color: var(--accent-blue);
			}

			.navbar-menu a::after {
				content: "";
				position: absolute;
				bottom: -5px;
				left: 0;
				width: 0;
				height: 2px;
				background: linear-gradient(
					90deg,
					var(--accent-blue),
					var(--accent-gold)
				);
				transition: width 0.3s ease;
			}

			.navbar-menu a:hover::after {
				width: 100%;
			}

			.container {
				max-width: 1200px;
				margin: 0 auto;
				padding: 100px 24px 40px;
			}

			/* Hero Section */
			.hero {
				text-align: center;
				padding: 60px 0;
				margin-bottom: 80px;
				position: relative;
				overflow: hidden;
			}

			.hero::before {
				content: "";
				position: absolute;
				top: -50%;
				left: 50%;
				transform: translateX(-50%);
				width: 600px;
				height: 600px;
				background: radial-gradient(
					circle,
					rgba(52, 152, 219, 0.15),
					transparent 70%
				);
				pointer-events: none;
				animation: float 6s ease-in-out infinite;
			}

			@keyframes float {
				0%,
				100% {
					transform: translateX(-50%) translateY(0);
				}
				50% {
					transform: translateX(-50%) translateY(20px);
				}
			}

			.hero-content {
				position: relative;
				z-index: 1;
			}

			.hero h1 {
				font-family: "Oswald", sans-serif;
				font-size: 56px;
				font-weight: 700;
				letter-spacing: 0.08em;
				text-transform: uppercase;
				margin-bottom: 16px;
				background: linear-gradient(
					135deg,
					var(--accent-gold),
					var(--accent-blue)
				);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				background-clip: text;
				animation: slideInDown 0.8s ease;
			}

			@keyframes slideInDown {
				from {
					opacity: 0;
					transform: translateY(-30px);
				}
				to {
					opacity: 1;
					transform: translateY(0);
				}
			}

			.hero p {
				font-size: 18px;
				color: var(--muted);
				letter-spacing: 0.03em;
				margin-bottom: 24px;
				animation: slideInUp 0.8s ease 0.2s backwards;
			}

			@keyframes slideInUp {
				from {
					opacity: 0;
					transform: translateY(30px);
				}
				to {
					opacity: 1;
					transform: translateY(0);
				}
			}

			.hero-buttons {
				display: flex;
				gap: 16px;
				justify-content: center;
				flex-wrap: wrap;
				animation: slideInUp 0.8s ease 0.4s backwards;
			}

			.btn {
				padding: 14px 32px;
				border-radius: 8px;
				border: none;
				font-family: "Oswald", sans-serif;
				text-transform: uppercase;
				letter-spacing: 0.08em;
				font-size: 14px;
				cursor: pointer;
				transition: all 0.3s ease;
				text-decoration: none;
				display: inline-block;
			}

			.btn-primary {
				background: linear-gradient(
					135deg,
					var(--accent-blue),
					#2980b9
				);
				color: white;
				border: 1px solid var(--accent-blue);
				box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
			}

			.btn-primary:hover {
				transform: translateY(-2px);
				box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
			}

			.btn-secondary {
				background: transparent;
				color: var(--accent-gold);
				border: 2px solid var(--accent-gold);
			}

			.btn-secondary:hover {
				background: var(--accent-gold);
				color: var(--bg-0);
				transform: translateY(-2px);
			}

			/* Section Styles */
			.section {
				margin-bottom: 80px;
			}

			.section-title {
				font-family: "Oswald", sans-serif;
				font-size: 36px;
				font-weight: 700;
				letter-spacing: 0.08em;
				text-transform: uppercase;
				margin-bottom: 40px;
				position: relative;
				display: inline-block;
			}

			.section-title::after {
				content: "";
				position: absolute;
				bottom: -12px;
				left: 0;
				width: 60%;
				height: 3px;
				background: linear-gradient(
					90deg,
					var(--accent-red),
					transparent
				);
				border-radius: 2px;
			}

			/* About Me Section */
			.about-content {
				display: grid;
				grid-template-columns: 140px 1fr;
				gap: 32px;
				align-items: start;
			}

			.about-text h3 {
				font-family: "Oswald", sans-serif;
				font-size: 24px;
				margin-bottom: 16px;
				color: var(--accent-gold);
			}

			.about-text p {
				color: var(--muted);
				line-height: 1.8;
				margin-bottom: 16px;
				font-size: 15px;
			}

			.about-header-row {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 24px;
				align-items: end;
			}

			.about-heading {
				margin-bottom: 8px;
			}

			.about-split {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 24px;
				margin-top: 6px;
			}

			.skills {
				display: flex;
				flex-wrap: wrap;
				gap: 12px;
				margin-top: 24px;
			}

			.about-split .skills {
				margin-top: 0;
			}

			.skill-tag {
				padding: 8px 16px;
				background: rgba(52, 152, 219, 0.2);
				border: 1px solid var(--accent-blue);
				border-radius: 20px;
				color: var(--accent-blue);
				font-size: 13px;
				letter-spacing: 0.05em;
				transition: all 0.3s ease;
			}

			.skill-tag:hover {
				background: var(--accent-blue);
				color: white;
				transform: translateY(-3px);
				box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
			}

			.about-image {
				display: flex;
				align-items: flex-start;
				justify-content: center;
			}

			.about-image img {
				width: 120px;
				height: 120px;
				object-fit: cover;
				border-radius: 999px;
				border: 2px solid var(--panel-border);
				box-shadow:
					0 12px 28px rgba(0, 0, 0, 0.35),
					0 0 0 4px rgba(52, 152, 219, 0.14);
			}

			/* Portfolio Section */
			.portfolio-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
				gap: 24px;
				margin-top: 40px;
			}

			.portfolio-card {
				background: var(--panel);
				border: 1px solid var(--panel-border);
				border-radius: 8px;
				overflow: hidden;
				transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
				cursor: pointer;
				position: relative;
				height: 350px;
				display: flex;
				flex-direction: column;
			}

			.portfolio-card:hover {
				transform: translateY(-10px);
				border-color: var(--accent-blue);
				box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
			}

			.portfolio-image {
				width: 100%;
				height: 200px;
				background: linear-gradient(
					135deg,
					rgba(52, 152, 219, 0.2),
					rgba(231, 76, 60, 0.2)
				);
				position: relative;
				overflow: hidden;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 48px;
				background-size: cover;
				background-position: center;
				background-repeat: no-repeat;
			}

			.portfolio-image--photo {
				font-size: 0;
			}

			.portfolio-image--photo::before {
				content: none;
			}

			.portfolio-image::before {
				content: "";
				position: absolute;
				inset: 0;
				background: linear-gradient(
					45deg,
					transparent 30%,
					rgba(255, 255, 255, 0.1) 50%,
					transparent 70%
				);
				transform: translateX(-100%);
				animation: shimmer 2s infinite;
			}

			@keyframes shimmer {
				0% {
					transform: translateX(-100%);
				}
				100% {
					transform: translateX(100%);
				}
			}

			.portfolio-content {
				padding: 20px;
				flex: 1;
				display: flex;
				flex-direction: column;
			}

			.portfolio-content h3 {
				font-family: "Oswald", sans-serif;
				font-size: 18px;
				margin-bottom: 8px;
				color: var(--accent-gold);
			}

			.store-price {
				font-family: "Oswald", sans-serif;
				letter-spacing: 0.06em;
				color: var(--accent-gold);
				font-size: 14px;
				margin: -6px 0 10px;
			}

			.portfolio-content p {
				color: var(--muted);
				font-size: 14px;
				line-height: 1.6;
				flex: 1;
				margin-bottom: 12px;
			}

			.portfolio-tags {
				display: flex;
				flex-wrap: wrap;
				gap: 8px;
			}

			.portfolio-tag {
				padding: 4px 10px;
				background: rgba(255, 255, 255, 0.08);
				border: 1px solid rgba(255, 255, 255, 0.12);
				border-radius: 4px;
				font-size: 12px;
				color: var(--muted);
			}

			/* Portfolio Modal */
			.portfolio-modal {
				width: min(920px, calc(100vw - 32px));
				position: fixed;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				max-height: calc(100vh - 32px);
				overflow: auto;
				border: 1px solid var(--panel-border);
				border-radius: 14px;
				background: rgba(15, 23, 38, 0.98);
				color: var(--text);
				padding: 18px;
				box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
			}

			.portfolio-modal::backdrop {
				background: rgba(0, 0, 0, 0.6);
				backdrop-filter: blur(8px);
			}

			.portfolio-modal__header {
				display: flex;
				align-items: flex-start;
				justify-content: space-between;
				gap: 14px;
				margin-bottom: 10px;
			}

			.portfolio-modal__title {
				font-family: "Oswald", sans-serif;
				letter-spacing: 0.06em;
				color: var(--accent-gold);
				font-size: 22px;
				line-height: 1.2;
				margin: 0;
			}

			.portfolio-modal__close {
				width: 38px;
				height: 38px;
				border-radius: 10px;
				border: 1px solid var(--panel-border);
				background: rgba(255, 255, 255, 0.06);
				color: var(--text);
				cursor: pointer;
				font-size: 20px;
				display: grid;
				place-items: center;
			}

			.portfolio-modal__close:hover {
				border-color: rgba(52, 152, 219, 0.55);
				background: rgba(52, 152, 219, 0.12);
			}

			.portfolio-modal__desc {
				color: var(--muted);
				margin: 6px 0 14px;
				line-height: 1.6;
				font-size: 14px;
			}

			.portfolio-modal__slider {
				display: grid;
				grid-template-columns: 44px 1fr 44px;
				gap: 12px;
				align-items: center;
			}

			.portfolio-modal__slider.is-single {
				grid-template-columns: 1fr;
			}

			.portfolio-modal__tools {
				display: flex;
				gap: 12px;
				flex-wrap: wrap;
				margin-right: auto;
			}

			.portfolio-modal__nav {
				width: 44px;
				height: 44px;
				border-radius: 12px;
				border: 1px solid var(--panel-border);
				background: rgba(255, 255, 255, 0.06);
				color: var(--text);
				cursor: pointer;
				font-size: 22px;
				display: grid;
				place-items: center;
				user-select: none;
			}

			.portfolio-modal__nav:hover {
				border-color: rgba(52, 152, 219, 0.55);
				background: rgba(52, 152, 219, 0.12);
			}

			.portfolio-modal__frame {
				border-radius: 14px;
				overflow: auto;
				border: 1px solid var(--panel-border);
				background: rgba(0, 0, 0, 0.25);
				aspect-ratio: 16 / 9;
				display: grid;
				place-items: center;
				position: relative;
			}

			.portfolio-modal__img {
				width: 100%;
				height: 100%;
				object-fit: contain;
				display: none;
				background: rgba(0, 0, 0, 0.22);
			}

			.portfolio-modal__empty {
				color: var(--muted);
				font-size: 14px;
				padding: 16px;
				text-align: center;
			}

			.portfolio-modal__dots {
				display: flex;
				gap: 8px;
				justify-content: center;
				align-items: center;
				margin-top: 12px;
			}

			.portfolio-modal__dot {
				width: 10px;
				height: 10px;
				border-radius: 999px;
				border: 1px solid rgba(255, 255, 255, 0.22);
				background: rgba(255, 255, 255, 0.08);
				cursor: pointer;
				padding: 0;
			}

			.portfolio-modal__dot[aria-current="true"] {
				background: var(--accent-blue);
				border-color: rgba(52, 152, 219, 0.85);
			}

			.portfolio-modal__footer {
				display: flex;
				gap: 12px;
				justify-content: flex-end;
				flex-wrap: wrap;
				margin-top: 16px;
			}

			@media (max-width: 640px) {
				.portfolio-modal {
					padding: 14px;
				}
				.portfolio-modal__slider {
					grid-template-columns: 1fr;
				}
				.portfolio-modal__nav {
					width: 100%;
					height: 42px;
				}
			}

			/* Store Modal */
			.store-modal {
				width: min(920px, calc(100vw - 32px));
				position: fixed;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				max-height: calc(100vh - 32px);
				overflow: auto;
				border: 1px solid var(--panel-border);
				border-radius: 14px;
				background: rgba(15, 23, 38, 0.98);
				color: var(--text);
				padding: 18px;
				box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
			}

			.store-modal::backdrop {
				background: rgba(0, 0, 0, 0.6);
				backdrop-filter: blur(8px);
			}

			.store-modal__header {
				display: flex;
				align-items: flex-start;
				justify-content: space-between;
				gap: 14px;
				margin-bottom: 6px;
			}

			.store-modal__title {
				font-family: "Oswald", sans-serif;
				letter-spacing: 0.06em;
				color: var(--accent-gold);
				font-size: 22px;
				line-height: 1.2;
				margin: 0;
			}

			.store-modal__close {
				width: 38px;
				height: 38px;
				border-radius: 10px;
				border: 1px solid var(--panel-border);
				background: rgba(255, 255, 255, 0.06);
				color: var(--text);
				cursor: pointer;
				font-size: 20px;
				display: grid;
				place-items: center;
			}

			.store-modal__close:hover {
				border-color: rgba(52, 152, 219, 0.55);
				background: rgba(52, 152, 219, 0.12);
			}

			.store-modal__desc {
				color: var(--muted);
				margin: 6px 0 8px;
				line-height: 1.6;
				font-size: 14px;
			}

			.store-modal__price {
				font-family: "Oswald", sans-serif;
				letter-spacing: 0.06em;
				color: var(--accent-gold);
				margin: 0 0 14px;
			}

			.store-modal__slider {
				display: grid;
				grid-template-columns: 44px 1fr 44px;
				gap: 12px;
				align-items: center;
			}

			.store-modal__slider.is-single {
				grid-template-columns: 1fr;
			}

			.store-modal__tools {
				display: flex;
				gap: 12px;
				flex-wrap: wrap;
				margin-right: auto;
			}

			.store-modal__nav {
				width: 44px;
				height: 44px;
				border-radius: 12px;
				border: 1px solid var(--panel-border);
				background: rgba(255, 255, 255, 0.06);
				color: var(--text);
				cursor: pointer;
				font-size: 22px;
				display: grid;
				place-items: center;
				user-select: none;
			}

			.store-modal__nav:hover {
				border-color: rgba(52, 152, 219, 0.55);
				background: rgba(52, 152, 219, 0.12);
			}

			.store-modal__frame {
				border-radius: 14px;
				overflow: auto;
				border: 1px solid var(--panel-border);
				background: rgba(0, 0, 0, 0.25);
				aspect-ratio: 16 / 9;
				display: grid;
				place-items: center;
				position: relative;
			}

			.store-modal__img {
				width: 100%;
				height: 100%;
				object-fit: contain;
				display: none;
				background: rgba(0, 0, 0, 0.22);
			}

			.store-modal__empty {
				color: var(--muted);
				font-size: 14px;
				padding: 16px;
				text-align: center;
			}

			.store-modal__dots {
				display: flex;
				gap: 8px;
				justify-content: center;
				align-items: center;
				margin-top: 12px;
			}

			.store-modal__dot {
				width: 10px;
				height: 10px;
				border-radius: 999px;
				border: 1px solid rgba(255, 255, 255, 0.22);
				background: rgba(255, 255, 255, 0.08);
				cursor: pointer;
				padding: 0;
			}

			.store-modal__dot[aria-current="true"] {
				background: var(--accent-blue);
				border-color: rgba(52, 152, 219, 0.85);
			}

			.store-modal__footer {
				display: flex;
				gap: 12px;
				justify-content: flex-end;
				flex-wrap: wrap;
				margin-top: 16px;
			}

			@media (max-width: 640px) {
				.store-modal {
					padding: 14px;
				}
				.store-modal__slider {
					grid-template-columns: 1fr;
				}
				.store-modal__nav {
					width: 100%;
					height: 42px;
				}
			}

			/* CV Section */
			.cv-container {
				display: grid;
				grid-template-columns: 1fr 2fr;
				gap: 32px;
			}

			.cv-sidebar {
				display: flex;
				flex-direction: column;
				gap: 24px;
			}

			.cv-section {
				background: var(--panel);
				border: 1px solid var(--panel-border);
				border-radius: 8px;
				padding: 20px;
				transition: all 0.3s ease;
			}

			.cv-section:hover {
				border-color: var(--accent-blue);
				transform: translateX(4px);
			}

			.cv-section h4 {
				font-family: "Oswald", sans-serif;
				font-size: 14px;
				text-transform: uppercase;
				letter-spacing: 0.08em;
				margin-bottom: 12px;
				color: var(--accent-blue);
			}

			.cv-item {
				margin-bottom: 12px;
				padding-bottom: 12px;
				border-bottom: 1px solid rgba(255, 255, 255, 0.05);
			}

			.cv-item:last-child {
				margin-bottom: 0;
				padding-bottom: 0;
				border-bottom: none;
			}

			.cv-item-title {
				color: var(--text);
				font-weight: 600;
				font-size: 14px;
				margin-bottom: 4px;
			}

			.cv-item-subtitle {
				color: var(--muted);
				font-size: 13px;
			}

			.cv-main {
				display: flex;
				flex-direction: column;
				gap: 24px;
			}

			.experience-card {
				background: var(--panel);
				border: 1px solid var(--panel-border);
				border-radius: 8px;
				padding: 24px;
				position: relative;
				overflow: hidden;
				transition: all 0.3s ease;
			}

			.experience-card::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 4px;
				height: 100%;
				background: linear-gradient(
					180deg,
					var(--accent-blue),
					var(--accent-gold)
				);
				transform: scaleY(0);
				transform-origin: top;
				transition: transform 0.3s ease;
			}

			.experience-card:hover {
				border-color: var(--accent-blue);
				transform: translateX(8px);
			}

			.experience-card:hover::before {
				transform: scaleY(1);
			}

			.experience-header {
				display: flex;
				justify-content: space-between;
				align-items: start;
				margin-bottom: 12px;
			}

			.experience-title {
				font-family: "Oswald", sans-serif;
				font-size: 18px;
				font-weight: 600;
				color: var(--accent-gold);
			}

			.experience-date {
				color: var(--muted);
				font-size: 13px;
				letter-spacing: 0.05em;
			}

			.experience-company {
				color: var(--accent-blue);
				font-size: 14px;
				margin-bottom: 12px;
				font-weight: 600;
			}

			.experience-description {
				color: var(--muted);
				font-size: 14px;
				line-height: 1.6;
				margin-bottom: 12px;
			}

			.experience-methods {
				display: flex;
				flex-wrap: wrap;
				gap: 8px;
			}

			.method-tag {
				padding: 4px 10px;
				background: rgba(231, 76, 60, 0.15);
				border: 1px solid rgba(231, 76, 60, 0.3);
				border-radius: 4px;
				font-size: 12px;
				color: var(--accent-red);
			}

			/* Responsive */
			@media (max-width: 768px) {
				.menu-toggle {
					display: flex;
				}

				.navbar {
					padding: 14px 16px;
				}

				.navbar-menu {
					position: absolute;
					top: 60px;
					left: 0;
					width: 100%;
					flex-direction: column;
					align-items: center;
					gap: 12px;
					background: rgba(11, 15, 22, 0.96);
					padding: 12px 0;
					border-bottom: 1px solid rgba(255, 255, 255, 0.08);
					border-top: 1px solid rgba(255, 255, 255, 0.08);
					backdrop-filter: blur(5px);
					transform: translateY(-10px);
					opacity: 0;
					pointer-events: none;
					transition:
						opacity 0.3s ease,
						transform 0.3s ease;
				}

				.navbar-menu.open {
					transform: translateY(0);
					opacity: 1;
					pointer-events: auto;
				}

				.navbar-menu li {
					width: 100%;
					text-align: center;
				}

				.navbar-menu a {
					width: 100%;
					display: inline-block;
					padding: 10px 0;
				}

				.hero h1 {
					font-size: 36px;
				}

				.about-content,
				.cv-container {
					grid-template-columns: 1fr;
				}

				.about-split {
					grid-template-columns: 1fr;
				}

				.about-header-row {
					grid-template-columns: 1fr;
				}

				.about-image {
					justify-content: center;
				}

				.portfolio-grid {
					grid-template-columns: 1fr;
				}

				.section-title {
					font-size: 28px;
				}
			}

			.section-title-wrapper {
				margin-bottom: 40px;
			}

			/* Testimonials */
			.testimonial-toast {
				position: fixed;
				left: 18px;
				bottom: 18px;
				width: min(340px, calc(100vw - 32px));
				background: rgba(15, 23, 38, 0.92);
				border: 1px solid var(--panel-border);
				border-radius: 14px;
				box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
				padding: 14px 14px 12px;
				backdrop-filter: blur(10px);
				opacity: 0;
				transform: translateY(10px);
				pointer-events: none;
				transition:
					opacity 0.35s ease,
					transform 0.35s ease;
				z-index: 1500;
			}

			.testimonial-toast.is-show {
				opacity: 1;
				transform: translateY(0);
				pointer-events: auto;
			}

			.testimonial-toast__head {
				display: flex;
				gap: 10px;
				align-items: center;
				margin-bottom: 8px;
			}

			.testimonial-toast__avatar {
				width: 38px;
				height: 38px;
				border-radius: 12px;
				display: grid;
				place-items: center;
				font-family: "Oswald", sans-serif;
				letter-spacing: 0.06em;
				background: rgba(255, 255, 255, 0.06);
				border: 1px solid rgba(255, 255, 255, 0.12);
				color: var(--accent-gold);
				flex: 0 0 auto;
			}

			.testimonial-toast__meta {
				min-width: 0;
			}

			.testimonial-toast__name {
				font-weight: 700;
				color: var(--text);
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
			}

			.testimonial-toast__label {
				color: var(--muted);
				font-size: 12px;
				letter-spacing: 0.04em;
				margin-top: 1px;
			}

			.testimonial-toast__stars {
				font-size: 12px;
				letter-spacing: 0.12em;
				color: var(--accent-gold);
				margin-top: 2px;
			}

			.testimonial-toast__message {
				color: var(--muted);
				font-size: 14px;
				line-height: 1.6;
			}

			@media (max-width: 640px) {
				.testimonial-toast {
					left: 14px;
					bottom: 14px;
				}
			}

			/* WhatsApp Floating Button */
			.wa-float {
				position: fixed;
				right: 18px;
				bottom: 18px;
				width: 56px;
				height: 56px;
				border-radius: 999px;
				background: #25d366;
				color: #ffffff;
				display: grid;
				place-items: center;
				text-decoration: none;
				font-family: "Oswald", sans-serif;
				font-weight: 700;
				letter-spacing: 0.06em;
				border: 1px solid rgba(255, 255, 255, 0.18);
				box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
				z-index: 1500;
				transition:
					transform 0.2s ease,
					filter 0.2s ease;
			}

			.wa-float:hover {
				transform: translateY(-2px);
				filter: brightness(0.98);
			}

			.wa-float:active {
				transform: translateY(0) scale(0.98);
			}

			.wa-float:focus-visible {
				outline: 3px solid var(--accent-gold, #ffd24d);
				outline-offset: 4px;
			}

			.wa-float svg {
				width: 26px;
				height: 26px;
				display: block;
			}

			@media (max-width: 640px) {
				.wa-float {
					right: 14px;
					bottom: 14px;
					width: 52px;
					height: 52px;
				}
			}
