* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

:root {
	--primary-color: #2563eb;
	--primary-dark: #1d4ed8;
	--secondary-color: #64748b;
	--accent-color: #f59e0b;
	--success-color: #10b981;
	--danger-color: #ef4444;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
	--white: #ffffff;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-500: #64748b;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1e293b;
	--gray-900: #0f172a;
	--font-family: 'Inter', sans-serif;
	--font-size-sm: 0.875rem;
	--font-size-base: 1rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-2xl: 1.5rem;
	--font-size-3xl: 1.875rem;
	--font-size-4xl: 2.25rem;
	--border-radius: 0.5rem;
	--border-radius-lg: 0.75rem;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)
}

body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--gray-700);
	background-color: var(--white)
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem
}

.header {
	background: var(--white);
	box-shadow: var(--shadow-sm);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.header.scrolled {
	opacity: 0.8;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.9);
}

.header.menu-active.scrolled {
	opacity: 1;
	backdrop-filter: none;
	background: var(--white);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0
}

.nav__brand {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: var(--font-size-xl);
	font-weight: 700;
	color: var(--primary-color)
}

.nav__brand i {
	font-size: 1.5rem
}

.nav__menu {
	display: flex;
	list-style: none;
	gap: 2rem
}

.nav__link {
	text-decoration: none;
	color: var(--gray-600);
	font-weight: 500;
	transition: color 0.3s ease, all 0.3s ease;
	position: relative;
}

.nav__link::after
{
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	height: 2.5px;
	width: 0%;
	background-color: var(--primary-color);
	transition: width 0.3s ease-in-out;
}

.nav__link:hover::after
{
	width: 100%;
}

.nav__link:hover {
	color: var(--primary-color);
}

.nav__link.active {
	color: var(--primary-color);
	position: relative;
}

.nav__link.active::after {
	content: "";
	position: absolute;
	bottom: -.5rem;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary-color);
	border-radius: 1px
}

.nav__toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--gray-600);
	padding: 0.5rem;
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
	z-index: 1001;
	position: relative;
}

.nav__toggle:hover {
	background: var(--gray-100);
	color: var(--primary-color);
}

.nav__toggle.active {
	color: var(--primary-color);
}

.hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%)
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center
}

.hero__title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	line-height: 1.2
}

.highlight {
	color: var(--primary-color)
}

.hero__description {
	font-size: var(--font-size-lg);
	color: var(--gray-600);
	margin-bottom: 2rem
}

.hero__buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: var(--font-size-base)
}

.btn--primary {
	background: var(--primary-color);
	color: var(--white)
}

.btn--primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg)
}

.btn--secondary {
	background: var(--white);
	color: var(--gray-700);
	border: 2px solid var(--gray-300)
}

.btn--secondary:hover {
	border-color: var(--primary-color);
	color: var(--primary-color)
}

.hero__features {
	display: flex;
	gap: 2rem
}

.feature {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: var(--gray-600);
	font-size: var(--font-size-sm)
}

.feature i {
	color: var(--success-color)
}

.hero__image {
	text-align: center
}

.hero__img {
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius-lg)
}

.section__header {
	text-align: center;
	margin-bottom: 4rem
}

.section__title {
	font-size: var(--font-size-3xl);
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1rem
}

.section__subtitle {
	font-size: var(--font-size-lg);
	color: var(--gray-600)
}

.products {
	padding: 6rem 0;
	background: var(--white)
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem
}

.product__card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	animation: fadeInUp 0.6s ease forwards;
	margin-top: 4.63vh
}

.product__card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl)
}

.product__card:hover .product__badge {
	transform: translateY(-5px);
	transition: 0.3s ease-in-out
}

.product__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--primary-color);
	color: var(--white);
	padding: .25rem .75rem;
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
	font-weight: 600;
	z-index: 10
}

.product__badge.best-value {
	background: var(--success-color)
}

.product__badge.premium {
	background: var(--accent-color)
}

.product__image {
	position: static;
	width: auto;
	height: 250px;
	max-width: 300px;
	object-fit: contain;
	margin: 0 auto;
	padding: 1rem;
	display: block;
}

.product__content {
	padding: 1.5rem
}

.product__title {
	font-size: var(--font-size-xl);
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 1rem
}

.product__rating {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1rem
}

.stars {
	color: var(--accent-color)
}

.rating__text {
	font-size: var(--font-size-sm);
	color: var(--gray-500)
}

.product__features {
	list-style: none;
	margin-bottom: 1.5rem
}

.product__features li {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: .5rem;
	font-size: var(--font-size-sm)
}

.product__features i {
	color: var(--success-color);
	font-size: .75rem
}

.product__price {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1.5rem
}

.price__current {
	font-size: var(--font-size-xl);
	font-weight: 700;
	color: var(--gray-900)
}

.price__original {
	font-size: var(--font-size-base);
	color: var(--gray-500);
	text-decoration: line-through
}

.price__discount {
	background: var(--danger-color);
	color: var(--white);
	padding: .25rem .5rem;
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
	font-weight: 600
}

.product__btn {
	width: 100%;
	justify-content: center
}

.benefits {
	padding: 6rem 0;
	background: var(--gray-100)
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem
}

.benefit__card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s ease;
	animation: fadeInUp 0.6s ease forwards
}

.benefit__card:hover {
	transform: translateY(-5px)
}

.benefit__icon {
	width: 4rem;
	height: 4rem;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem
}

.benefit__title {
	font-size: var(--font-size-xl);
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 1rem
}

.benefit__description {
	color: var(--gray-600)
}

.comparison {
	padding: 6rem 0;
	background: var(--white)
}

.comparison__table {
	overflow-x: auto;
	box-shadow: var(--shadow);
	border-radius: var(--border-radius-lg)
}

.comparison__table table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white)
}

.comparison__table th,
.comparison__table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--gray-200)
}

.comparison__table th {
	background: var(--gray-100);
	font-weight: 600;
	color: var(--gray-900)
}

.text-green {
	color: var(--success-color)
}

.text-red {
	color: var(--danger-color)
}

.testimonials {
	padding: 6rem 0;
	background: var(--gray-100)
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem
}

.testimonial__card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	animation: fadeInUp 0.6s ease forwards
}

.testimonial__rating {
	color: var(--accent-color);
	margin-bottom: 1rem
}

.testimonial__text {
	font-style: italic;
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.7
}

.testimonial__author {
	display: flex;
	align-items: center;
	gap: 1rem
}

.testimonial__avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover
}

.testimonial__name {
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: .25rem
}

.testimonial__location {
	font-size: var(--font-size-sm);
	color: var(--gray-500)
}

.guide {
	padding: 6rem 0;
	background: var(--white)
}

.guide__content {
	display: grid;
	gap: 2rem
}

.guide__item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start
}

.guide__icon {
	width: 3rem;
	height: 3rem;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.guide__text h3 {
	font-size: var(--font-size-xl);
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: .5rem
}

.guide__text p {
	color: var(--gray-600)
}

.footer {
	background: var(--gray-900);
	color: var(--gray-300);
	padding: 4rem 0 2rem
}

.footer__content {
	display: flex;
	justify-content: space-between;
	gap: 5rem;
	margin-bottom: 2rem
}

.footer__section {
	width: 60vw
}

.footer__brand {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: var(--font-size-xl);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem
}

.footer__brand i {
	font-size: 1.5rem;
	color: var(--primary-color)
}

.footer__description {
	margin-bottom: 1.5rem;
	line-height: 1.7
}

.footer__social {
	display: flex;
	gap: 1rem
}

.social__link {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--gray-800);
	color: var(--gray-300);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease
}

.social__link:hover {
	background: var(--primary-color);
	color: var(--white)
}

.footer__title {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1rem
}

.footer__links {
	list-style: none
}

.footer__links li {
	margin-bottom: .5rem
}

.footer__links a {
	color: var(--gray-300);
	text-decoration: none;
	transition: color 0.3s ease
}

.footer__links a:hover {
	color: var(--primary-color)
}

.newsletter__form {
	display: flex;
	gap: .5rem;
	margin-top: 1rem
}

.newsletter__input {
	flex: 1;
	padding: .75rem;
	border: 1px solid var(--gray-600);
	border-radius: var(--border-radius);
	background: var(--gray-800);
	color: var(--white)
}

.newsletter__input::placeholder {
	color: var(--gray-400)
}

.newsletter__btn {
	padding: .75rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background 0.3s ease
}

.newsletter__btn:hover {
	background: var(--primary-dark)
}

.footer__bottom {
	border-top: 1px solid var(--gray-800);
	padding-top: 2rem;
	text-align: center
}

.affiliate__disclaimer {
	margin-top: 1rem;
	font-size: var(--font-size-sm);
	color: var(--gray-400);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem
}

.hero__stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem
}

.stat {
	text-align: center
}

.stat__number {
	display: block;
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--primary-color)
}

.stat__label {
	font-size: var(--font-size-sm);
	color: var(--gray-500)
}

.hero__images {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-left: 0;
}

.hero__img--traditional {
	transform: rotate(-10deg);
	z-index: 1;
	width: 250px;
	height: 250px;
}

.hero__img--bladeless {
	transform: rotate(10deg);
	z-index: 2;
	width: 280px;
	height: 280px;
}

.category__badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--primary-color);
	color: var(--white);
	padding: .5rem 1rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	margin-bottom: 1rem
}

.category__badge.bladeless {
	background: var(--accent-color)
}

.product__specs {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--gray-100);
	border-radius: var(--border-radius)
}

.spec {
	font-size: var(--font-size-sm);
	color: var(--gray-600)
}

.section__cta {
	text-align: center;
	margin-top: 3rem
}

.traditional-fans {
	background: var(--white)
}

.traditional-fans .product__card {
	border-radius: var(--border-radius);
	border: 2px solid var(--gray-300);
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.6s ease-in-out;
}

.traditional-fans .product__card:hover {
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
	border: 2px solid var(--primary-color);
}

.bladeless-fans {
	background: var(--gray-100)
}

.bladeless-fans .product__card {
	border-radius: var(--border-radius);
	border: 2px solid var(--gray-300);
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.6s ease-in-out;
}

.bladeless-fans .product__card:hover {
	box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
	border: 2px solid var(--accent-color);
}

.vs-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: var(--white);
	text-align: center
}

.vs-section .section__title {
	color: var(--white)
}

.vs-section .section__subtitle {
	color: rgb(255 255 255 / .8)
}

.vs-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: center;
	margin-top: 3rem
}

.vs-item {
	background: rgb(255 255 255 / .1);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	backdrop-filter: blur(10px)
}

.vs-divider {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative
}

.vs-circle {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: var(--shadow-xl);
	z-index: 10
}

.vs-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
	transform: translateX(-50%)
}

.vs-icon {
	width: 4rem;
	height: 4rem;
	background: rgb(255 255 255 / .2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem
}

.vs-pros {
	list-style: none;
	text-align: left;
	margin-bottom: 2rem
}

.vs-pros li {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: .5rem;
	font-size: var(--font-size-sm)
}

.vs-pros i {
	color: var(--success-color);
	font-size: .75rem
}

.vs-price {
	font-size: var(--font-size-xl);
	font-weight: 700;
	color: var(--accent-color)
}

.category-nav {
	position: sticky;
	top: 80px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	padding: 1rem 0;
	z-index: 100;
	margin-bottom: 2rem
}

.category-nav .container {
	display: flex;
	justify-content: center;
	gap: 2rem
}

.category-nav a {
	padding: .5rem 1rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	color: var(--gray-600);
	font-weight: 500;
	transition: all 0.3s ease
}

.category-nav a:hover,
.category-nav a.active {
	background: var(--primary-color);
	color: var(--white)
}

.btn:focus,
.nav__link:focus,
.newsletter__input:focus,
.newsletter__btn:focus {
	font-weight: 300;
	color: var(--primary-color)
}


.feature-item {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: .75rem;
	font-size: var(--font-size-sm);
	color: var(--gray-700)
}

.feature-item i {
	display: flex;
	align-items: center;
	justify-content: center
}

.feature-icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem
}

.feature-icon.positive {
	background: var(--success-color);
	color: var(--white)
}

.product-visual {
	position: relative;
	margin-bottom: 1.5rem
}

.product-visual .comparison-image {
	object-fit: contain
}

.comparison-image {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid var(--white);
	box-shadow: var(--shadow-lg)
}

.detailed-comparison {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%)
}

.main-comparison {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 3rem;
	align-items: stretch;
	margin-bottom: 6rem
}

.comparison-card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	transition: transform 0.3s ease;
	position: relative
}

.comparison-card:hover {
	transform: translateY(-5px)
}

.comparison-card.traditional:hover {
	border: 2px solid var(--primary-color)
}

.comparison-card.bladeless:hover {
	border: 2px solid var(--accent-color)
}

.card-header {
	padding: 2rem;
	text-align: center;
	background: linear-gradient(135deg, rgb(37 99 235 / .05) 0%, rgb(245 158 11 / .05) 100%)
}

.visual-badge {
	position: absolute;
	bottom: 0;
	right: 20px;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: var(--shadow)
}

.bladeless .visual-badge {
	background: var(--accent-color)
}

.card-title {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: .5rem
}

.card-subtitle {
	color: var(--gray-600);
	font-size: var(--font-size-base)
}

.card-content {
	padding: 2rem
}

.price-range {
	text-align: center;
	margin-bottom: 2rem;
	padding: 1rem;
	background: var(--gray-100);
	border-radius: var(--border-radius)
}

.price-from {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--success-color)
}

.price-to {
	font-size: var(--font-size-base);
	color: var(--gray-600);
	margin-left: .5rem
}

.key-features {
	margin-bottom: 2rem
}

.performance-bars {
	display: flex;
	flex-direction: column;
	gap: 1rem
}

.performance-item {
	display: flex;
	align-items: center;
	gap: 1rem
}

.performance-label {
	font-size: var(--font-size-sm);
	font-weight: 500;
	color: var(--gray-700);
	min-width: 80px
}

.performance-bar {
	flex: 1;
	height: 8px;
	background: var(--gray-200);
	border-radius: 4px;
	overflow: hidden
}

.performance-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--success-color) 0%, var(--primary-color) 100%);
	border-radius: 4px;
	transition: width 0.8s ease
}

.performance-score {
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--gray-700);
	min-width: 40px;
	text-align: right
}

.detailed-table-section {
	margin-bottom: 4rem
}

.table-title {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--gray-900);
	text-align: center;
	margin-bottom: 2rem
}

.comparison-table-wrapper {
	overflow-x: auto;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg)
}

.detailed-comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	font-size: var(--font-size-sm)
}

.detailed-comparison-table th {
	background: var(--gray-900);
	color: var(--white);
	padding: 1.5rem 1rem;
	text-align: left;
	font-weight: 600
}

.traditional-col {
	background: var(--primary-color) !important
}

.bladeless-col {
	background: var(--accent-color) !important
}

.detailed-comparison-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--gray-200);
	vertical-align: top
}

.traditional-cell {
	background: rgb(37 99 235 / .05)
}

.bladeless-cell {
	background: rgb(245 158 11 / .05)
}

.rating {
	display: inline-block;
	padding: .25rem .5rem;
	border-radius: var(--border-radius);
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase
}

.rating.excellent {
	background: var(--success-color);
	color: var(--white)
}

.rating.good {
	background: var(--primary-color);
	color: var(--white)
}

.rating.moderate {
	background: var(--accent-color);
	color: var(--white)
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0
}

.feature-list li {
	padding: .25rem 0;
	font-size: .8rem;
	color: var(--gray-600)
}

.feature-list li:before {
	content: "✓";
	color: var(--success-color);
	font-weight: 700;
	margin-right: .5rem
}

.use-cases-section {
	margin-bottom: 4rem
}

.section-subtitle {
	font-size: var(--font-size-xl);
	font-weight: 600;
	color: var(--gray-900);
	text-align: center;
	margin-bottom: 2rem
}

.use-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem
}

.use-case-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s ease
}

.use-case-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-xl)
}

.use-case-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem
}

.use-case-card h4 {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: .5rem
}

.use-case-description {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	font-size: var(--font-size-sm)
}

.recommendation {
	display: flex;
	flex-direction: column;
	gap: .5rem
}

.recommended-type {
	padding: .5rem 1rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	font-size: var(--font-size-sm)
}

.recommended-type.traditional {
	background: var(--primary-color);
	color: var(--white)
}

.recommended-type.bladeless {
	background: var(--accent-color);
	color: var(--white)
}

.reason {
	font-size: .75rem;
	color: var(--gray-500);
	font-style: italic
}

.decision-calculator {
	background: var(--white);
	padding: 3rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg)
}

.calculator-title {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--gray-900);
	text-align: center;
	margin-bottom: .5rem
}

.calculator-subtitle {
	color: var(--gray-600);
	text-align: center;
	margin-bottom: 2rem
}

.question-group {
	margin-bottom: 2rem
}

.question-label {
	display: block;
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: 1rem
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: .75rem
}

.radio-option {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: 1rem;
	border: 2px solid var(--gray-200);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease
}

.radio-option:hover {
	border-color: var(--primary-color);
	background: rgb(37 99 235 / .05)
}

.radio-option input[type="radio"] {
	display: none
}

.radio-custom {
	width: 20px;
	height: 20px;
	border: 2px solid var(--gray-300);
	border-radius: 50%;
	position: relative;
	transition: all 0.3s ease
}

.radio-option input[type="radio"]:checked+.radio-custom {
	border-color: var(--primary-color);
	background: var(--primary-color)
}

.radio-option input[type="radio"]:checked+.radio-custom::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	background: var(--white);
	border-radius: 50%;
	transform: translate(-50%, -50%)
}

.calculate-btn {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-size: var(--font-size-lg);
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem
}

.calculate-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg)
}

.recommendation-result {
	margin-top: 2rem;
	padding: 2rem;
	background: linear-gradient(135deg, var(--success-color) 0%, var(--primary-color) 100%);
	color: var(--white);
	border-radius: var(--border-radius-lg);
	text-align: center
}

.result-icon {
	font-size: 3rem;
	margin-bottom: 1rem
}

.result-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	margin-bottom: 1rem
}

.result-recommendation {
	font-size: var(--font-size-lg);
	margin-bottom: 2rem;
	line-height: 1.6
}

.result-actions {
	display: flex;
	gap: 1rem;
	justify-content: center
}

.result-btn {
	padding: .75rem 1.5rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease
}

.result-btn.traditional {
	background: var(--white);
	color: var(--primary-color)
}

.result-btn.bladeless {
	background: var(--white);
	color: var(--accent-color)
}

.result-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow)
}

/* Enhanced Mobile Breakpoints */
@media (max-width: 480px) {
	.container {
		padding: 0 0.75rem;
	}
	
	.hero {
		padding: 6rem 0 3rem;
	}
	
	.hero__title {
		font-size: 2rem;
		line-height: 1.1;
	}
	
	.hero__description {
		font-size: 1rem;
	}
	
	.btn {
		padding: 0.875rem 1.25rem;
		font-size: 0.9rem;
		min-height: 44px;
	}
	
	.product__image {
		position: static;
		left: auto;
		width: 100%;
		max-width: 180px;
		height: 180px;
		margin: 0 auto;
		display: block;
	}
	
	.hero__images {
		margin-left: 0;
		width: 100%;
		flex-direction: column;
		gap: 1rem;
	}
	
	.hero__img--traditional,
	.hero__img--bladeless {
		width: 150px;
		height: 150px;
		transform: none;
	}
	
	.detailed-comparison {
		padding: 3rem 0;
	}
	
	.decision-calculator {
		padding: 2rem 1rem;
	}
	
	.comparison-card {
		margin: 0 -1rem;
	}
}

@media (max-width: 768px) {
	.nav__menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--white);
		flex-direction: column;
		padding: 6rem 2rem 2rem;
		box-shadow: var(--shadow-xl);
		transform: translateX(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1000;
		justify-content: flex-start;
		align-items: stretch;
		gap: 0;
	}

	.nav__menu.active {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		background: var(--white);
		z-index: 1000;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	}

	.nav__menu li {
		border-bottom: 1px solid var(--gray-200);
	}

	.nav__menu li:last-child {
		border-bottom: none;
	}

	.nav__link {
		display: block;
		padding: 1rem 0;
		font-size: var(--font-size-lg);
		font-weight: 500;
		color: var(--gray-700);
		text-decoration: none;
		transition: all 0.3s ease;
		position: relative;
	}

	.nav__link:hover {
		color: var(--primary-color);
	}

	.nav__toggle {
		display: block;
		position: relative;
		z-index: 1001;
	}

	.hero {
		padding: 6rem 0 4rem;
	}

	.hero__container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero__title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.hero__description {
		font-size: var(--font-size-base);
		margin-bottom: 1.5rem;
	}

	.hero__buttons {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.hero__buttons .btn {
		width: 100%;
		max-width: 280px;
	}

	.hero__stats {
		justify-content: center;
		flex-wrap: wrap;
		gap: 1.5rem;
		margin-top: 2rem;
	}

	.hero__images {
		margin-left: 0;
		width: 100%;
		justify-content: center;
		flex-direction: column;
		gap: .5rem;
	}

	.hero__img--traditional,
	.hero__img--bladeless {
		width: 180px;
		height: 180px;
		transform: none;
	}

	.products__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.benefits__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.comparison__table {
		font-size: var(--font-size-sm);
		overflow-x: auto;
	}

	.comparison__table th,
	.comparison__table td {
		padding: 0.75rem 0.5rem;
		min-width: 120px;
	}

	.testimonials__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.guide__item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.footer__content {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.footer__section {
		width: 100%;
	}

	.newsletter__form {
		flex-direction: column;
		gap: 0.75rem;
	}

	.section__title {
		font-size: 2rem;
	}

	.section__subtitle {
		font-size: var(--font-size-base);
	}
	
	.product__image {
		position: static;
		left: auto;
		width: 100%;
		max-width: 220px;
		height: 220px;
		margin: 1rem auto 0;
		display: block;
	}

	.vs-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.vs-grid .vs-item:first-child {
		order: 1;
	}

	.vs-divider {
		display: none;
	}

	.vs-grid .vs-item:last-child {
		order: 3;
	}

	.vs-circle {
		width: 60px;
		height: 60px;
		font-size: 1.2rem;
	}

	.vs-line {
		display: none;
	}

	.use-cases-grid {
		grid-template-columns: 1fr;
	}

	.radio-group {
		gap: .5rem;
	}

	.radio-option {
		padding: .75rem;
	}

	.result-actions {
		flex-direction: column;
	}

	.detailed-comparison-table {
		font-size: .75rem;
	}

	.detailed-comparison-table th,
	.detailed-comparison-table td {
		padding: .75rem .5rem;
	}
	
	.main-comparison {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
	.hero__container {
		gap: 2rem;
	}
	
	.hero__title {
		font-size: 3rem;
	}
	
	.products__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.product__image {
		position: static;
		left: auto;
		width: 100%;
		max-width: 240px;
		height: 240px;
		margin: 0 auto;
		display: block;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

html {
	scroll-behavior: smooth
}
