/* ===== Reset & Base ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #0d0d0d;
	color: #ededed;
	line-height: 1.5;
	scroll-behavior: smooth;
	transition: background 0.3s, color 0.3s;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

/* ===== Buttons ===== */
.btn {
	display: inline-block;
	font-weight: 600;
	border-radius: 40px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
}

.btn-primary {
	background: #2d7eff;
	color: #fff;
	box-shadow: 0 4px 14px rgba(45, 126, 255, 0.4);
}
.btn-primary:hover {
	background: #1b6ae0;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 126, 255, 0.5);
}

.btn-outline {
	background: transparent;
	color: #ededed;
	border: 1.5px solid #555;
}
.btn-outline:hover {
	border-color: #2d7eff;
	color: #2d7eff;
}

.btn-sm {
	padding: 8px 20px;
	font-size: 0.9rem;
}

.btn-lg {
	padding: 14px 40px;
	font-size: 1.1rem;
}

.btn-whatsapp {
	background: #25D366;
	color: #fff;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.btn-whatsapp:hover {
	background: #1da851;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== Theme Toggle ===== */
.theme-toggle {
	background: none;
	border: 1px solid #555;
	border-radius: 40px;
	padding: 6px 12px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.2s;
	color: #ededed;
	background: #1a1a1a;
}
.theme-toggle:hover {
	border-color: #2d7eff;
	transform: scale(1.05);
}

/* ===== Navbar ===== */
.navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(13, 13, 13, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #2a2a2a;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand {
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #2d7eff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ===== Hero ===== */
.hero {
	padding: 60px 0 80px;
	background: radial-gradient(ellipse at 30% 40%, #1a1a2e, #0d0d0d 70%);
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.badge {
	background: #2d2d2d;
	color: #2d7eff;
	padding: 6px 16px;
	border-radius: 40px;
	font-size: 0.85rem;
	font-weight: 600;
	display: inline-block;
	width: fit-content;
	border: 1px solid #2d7eff44;
}

.hero h1 {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -1px;
}

.hero-sub {
	font-size: 1.2rem;
	color: #aaa;
	max-width: 520px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 8px;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.9rem;
	color: #888;
	margin-top: 8px;
}

.hero-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.screenshot-placeholder {
	width: 100%;
	max-width: 500px;
	background: #1e1e2a;
	border-radius: 24px;
	padding: 24px 20px 20px;
	border: 1px solid #333;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	animation: float 4s ease-in-out infinite;
}

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

.screenshot-img {
	max-width: 100%;
	border-radius: 16px;
	display: block;
	margin: 0 auto;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.4s ease,
		opacity 0.3s ease;
	cursor: pointer;
}

.screenshot-img:hover {
	transform: scale(1.04);
	box-shadow: 0 12px 40px rgba(45, 126, 255, 0.3);
}

body.light-theme .screenshot-img:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===== YouTube Video Section ===== */
.video-section {
	padding: 0 0 60px;
	background: #0d0d0d;
}

.video-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
	border: 1px solid #2a2a2a;
}

.video-wrapper iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
}

/* ===== Sections ===== */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.section-header p {
	color: #aaa;
	font-size: 1.1rem;
	margin-top: 8px;
}

/* ===== Features ===== */
.features {
	background: #111;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

/* --- FIX: center all content inside feature cards on ALL screen sizes --- */
.feature-card {
	background: #1a1a1a;
	padding: 30px 24px;
	border-radius: 20px;
	border: 1px solid #2a2a2a;
	transition: transform 0.2s ease, border-color 0.2s;
	text-align: center;
	/* <-- this is the fix */
}

.feature-card:hover {
	transform: translateY(-6px);
	border-color: #2d7eff66;
}

.feature-icon {
	font-size: 2.4rem;
	margin-bottom: 12px;
	display: block;
	/* ensures the icon sits on its own line, centered by text-align:center on parent */
}

.feature-card h3 {
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.feature-card p {
	color: #aaa;
	font-size: 0.95rem;
}

/* ===== Tech Stack ===== */
.tech-stack {
	background: #0d0d0d;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.tech-item {
	background: #1a1a1a;
	padding: 30px 24px;
	border-radius: 20px;
	border: 1px solid #2a2a2a;
	text-align: center;
	transition: transform 0.2s ease, border-color 0.2s;
}

.tech-item:hover {
	transform: translateY(-4px);
	border-color: #2d7eff66;
}

.tech-emoji {
	font-size: 2.8rem;
	display: block;
	margin-bottom: 12px;
}

.tech-item h4 {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.tech-item p {
	color: #aaa;
	font-size: 0.95rem;
}

/* ===== How It Works ===== */
.how-it-works {
	background: #111;
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.step {
	background: #1a1a1a;
	padding: 30px 20px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #2a2a2a;
	position: relative;
}

.step-number {
	display: inline-block;
	background: #2d7eff;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	line-height: 44px;
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 12px;
}

.step h4 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.step p {
	color: #aaa;
	font-size: 0.95rem;
}

/* ===== How To Works (Voice Model Guide) ===== */
.how-to-works {
	background: #0d0d0d;
}

.htw-intro {
	max-width: 860px;
	margin: -20px auto 40px;
	text-align: center;
}

.htw-intro p {
	color: #aaa;
	font-size: 1.02rem;
	line-height: 1.7;
}

.htw-intro strong {
	color: #ededed;
}

.htw-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: stretch;
}

.htw-card {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 20px;
	padding: 30px 26px;
	transition: transform 0.2s ease, border-color 0.2s;
	display: flex;
	flex-direction: column;
}

.htw-card:hover {
	transform: translateY(-4px);
	border-color: #2d7eff66;
}

.htw-card-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.htw-emoji {
	font-size: 2.2rem;
	line-height: 1;
}

.htw-card-head h3 {
	font-size: 1.25rem;
	margin-bottom: 4px;
}

.htw-card-head p {
	color: #aaa;
	font-size: 0.92rem;
}

.htw-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.htw-list li {
	color: #bbb;
	font-size: 0.92rem;
	line-height: 1.5;
	padding: 7px 10px;
	background: #141414;
	border: 1px solid #242424;
	border-radius: 10px;
}

.htw-model {
	display: inline-block;
	background: #2d7eff22;
	color: #6ea8ff;
	font-weight: 600;
	font-size: 0.82rem;
	padding: 2px 10px;
	border-radius: 40px;
	margin-right: 8px;
	white-space: nowrap;
}

.htw-mini-tips {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #2a2a2a;
}

.htw-mini-tips h4 {
	font-size: 1rem;
	margin-bottom: 10px;
}

.htw-mini-tips ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.htw-mini-tips li {
	color: #aaa;
	font-size: 0.92rem;
	line-height: 1.55;
}

.htw-mini-tips strong {
	color: #ededed;
}

.htw-auto-tip {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 16px;
	background: linear-gradient(145deg, #16203a, #131320);
	border: 1px solid #2d7eff55;
	border-radius: 20px;
	padding: 22px 26px;
}

.htw-auto-icon {
	font-size: 2rem;
	line-height: 1;
}

.htw-auto-tip h4 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.htw-auto-tip p {
	color: #aaa;
	font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing {
	background: #0d0d0d;
}

.pricing-header-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.pricing-header-flex>div {
	text-align: left;
}

.pricing-header-flex>div h2 {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.pricing-header-flex>div p {
	color: #aaa;
	font-size: 1.1rem;
	margin-top: 4px;
}

/* Currency Toggle */
.currency-toggle-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #1a1a1a;
	padding: 10px 18px;
	border-radius: 40px;
	border: 1px solid #2a2a2a;
	flex-shrink: 0;
}

.currency-label {
	font-weight: 600;
	font-size: 0.9rem;
	color: #aaa;
	transition: color 0.3s;
}

.currency-label.active {
	color: #fff;
}

body.light-theme .currency-label.active {
	color: #111;
}

.rate-hint {
	font-size: 0.7rem;
	color: #666;
	margin-left: 2px;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	flex-shrink: 0;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #2d7eff;
	transition: .3s;
	border-radius: 24px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .3s;
	border-radius: 50%;
}

.switch input:checked+.slider {
	background-color: #2d7eff;
}

.switch input:checked+.slider:before {
	transform: translateX(20px);
}

.switch input:focus+.slider {
	box-shadow: 0 0 1px #2d7eff;
}

body.light-theme .currency-toggle-wrapper {
	background: #fff;
	border-color: #ddd;
}

body.light-theme .currency-label {
	color: #888;
}

body.light-theme .currency-label.active {
	color: #111;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	align-items: stretch;
}

.pricing-card {
	background: #1a1a1a;
	border-radius: 24px;
	padding: 40px 30px 35px;
	border: 1px solid #2a2a2a;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.pricing-card:hover {
	transform: translateY(-8px);
	border-color: #2d7eff66;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
	border-color: #2d7eff;
	box-shadow: 0 0 30px rgba(45, 126, 255, 0.15);
}

.pricing-card.popular:hover {
	box-shadow: 0 20px 60px rgba(45, 126, 255, 0.25);
}

.pricing-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #2d7eff;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 40px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-card .package-icon {
	font-size: 2.8rem;
	margin-bottom: 8px;
}

.pricing-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.pricing-card .package-sub {
	color: #888;
	font-size: 0.9rem;
	margin-bottom: 16px;
}

.pricing-card .price {
	font-size: 2.8rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 4px;
	letter-spacing: -1px;
}

.pricing-card .price .price-currency {
	font-size: 1rem;
	font-weight: 400;
	color: #888;
}

.pricing-card .price-note {
	color: #888;
	font-size: 0.85rem;
	margin-bottom: 20px;
}

.pricing-card .divider {
	height: 1px;
	background: #2a2a2a;
	margin: 16px 0 20px;
}

.pricing-card .features-list {
	list-style: none;
	text-align: left;
	margin-bottom: 28px;
	flex: 1;
}

.pricing-card .features-list li {
	padding: 6px 0;
	color: #ccc;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-card .features-list li .check {
	color: #25D366;
	font-weight: 700;
	font-size: 1.1rem;
}

.pricing-card .btn-whatsapp {
	width: 100%;
	justify-content: center;
	padding: 14px 20px;
	font-size: 1rem;
	margin-top: auto;
}

/* ===== Download ===== */
.download {
	background: #0d0d0d;
	padding: 80px 0 100px;
}

.download-box {
	background: linear-gradient(145deg, #1a1a2a, #111);
	padding: 60px 40px;
	border-radius: 32px;
	text-align: center;
	border: 1px solid #2a2a2a;
	max-width: 720px;
	margin: 0 auto;
}

.download-box h2 {
	font-size: 2.2rem;
	margin-bottom: 12px;
}

.download-box p {
	color: #aaa;
	font-size: 1.05rem;
}

.download-buttons {
	margin: 30px 0 16px;
}

.download-version {
	display: block;
	margin-top: 12px;
	font-size: 0.85rem;
	color: #666;
}

.download-note {
	font-size: 0.9rem;
	color: #777;
	margin-top: 12px;
}

/* ===== Footer ===== */
.footer {
	background: #0a0a0a;
	border-top: 1px solid #1e1e1e;
	padding: 40px 0 0;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 30px;
	text-align: center;
	justify-items: center;
	padding-bottom: 40px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-col h4,
.footer-col h5 {
	font-weight: 600;
	margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
	color: #aaa;
	font-size: 0.95rem;
	display: block;
	margin-bottom: 6px;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: #2d7eff;
}

.social-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.footer-bottom {
	border-top: 1px solid #1a1a1a;
	padding: 20px 0;
	text-align: center;
	color: #666;
	font-size: 0.9rem;
}

/* ============================================================ */
/* ===== LIGHT THEME OVERRIDES ===== */
/* ============================================================ */

body.light-theme {
	background: #f5f5f5;
	color: #111;
}
body.light-theme .navbar {
	background: rgba(245, 245, 245, 0.9);
	border-bottom: 1px solid #ddd;
}
body.light-theme .brand {
	background: linear-gradient(135deg, #1a73e8, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
body.light-theme .btn-outline {
	color: #111;
	border-color: #aaa;
}
body.light-theme .btn-outline:hover {
	border-color: #2d7eff;
	color: #2d7eff;
}
body.light-theme .hero {
	background: radial-gradient(ellipse at 30% 40%, #e8e8f0, #f5f5f5 70%);
}
body.light-theme .badge {
	background: #e0e0e0;
	color: #1a73e8;
	border-color: #1a73e844;
}
body.light-theme .hero-sub,
body.light-theme .section-header p,
body.light-theme .feature-card p,
body.light-theme .step p,
body.light-theme .download-box p,
body.light-theme .footer-col p,
body.light-theme .footer-col a,
body.light-theme .tech-item p {
	color: #333;
}
body.light-theme .feature-card,
body.light-theme .step,
body.light-theme .download-box,
body.light-theme .tech-item,
body.light-theme .pricing-card {
	background: #fff;
	border-color: #ddd;
}
body.light-theme .pricing-card .divider {
	background: #ddd;
}
body.light-theme .pricing-card .features-list li {
	color: #333;
}
body.light-theme .pricing-card .price {
	color: #111;
}
body.light-theme .pricing-card .price .price-currency {
	color: #666;
}
body.light-theme .pricing-card .package-sub {
	color: #666;
}
body.light-theme .features,
body.light-theme .how-it-works {
	background: #f0f0f0;
}
body.light-theme .tech-stack {
	background: #f5f5f5;
}
body.light-theme .pricing {
	background: #f5f5f5;
}
body.light-theme .footer {
	background: #eaeaea;
	border-top: 1px solid #ccc;
}
body.light-theme .footer-bottom {
	border-top: 1px solid #ccc;
	color: #555;
}
body.light-theme .theme-toggle {
	background: #eee;
	border-color: #aaa;
	color: #111;
}
body.light-theme .screenshot-placeholder {
	background: #e8e8f0;
	border-color: #ccc;
}
body.light-theme .download-box {
	background: linear-gradient(145deg, #f0f0f8, #fff);
}
body.light-theme .video-wrapper {
	border-color: #ccc;
}
body.light-theme .video-section {
	background: #f5f5f5;
}
body.light-theme .download {
	background: #f5f5f5;
}
body.light-theme .pricing-card.popular {
	border-color: #1a73e8;
	box-shadow: 0 0 30px rgba(26, 115, 232, 0.15);
}
body.light-theme .pricing-card.popular:hover {
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.25);
}
body.light-theme .pricing-badge {
	background: #1a73e8;
}
body.light-theme .pricing-header-flex>div p {
	color: #333;
}
body.light-theme .how-to-works {
	background: #f5f5f5;
}
body.light-theme .htw-card {
	background: #fff;
	border-color: #ddd;
}
body.light-theme .htw-intro p,
body.light-theme .htw-card-head p,
body.light-theme .htw-mini-tips li,
body.light-theme .htw-auto-tip p {
	color: #333;
}
body.light-theme .htw-intro strong,
body.light-theme .htw-mini-tips strong {
	color: #111;
}
body.light-theme .htw-list li {
	background: #f7f7f7;
	border-color: #e2e2e2;
	color: #444;
}
body.light-theme .htw-model {
	background: #1a73e818;
	color: #1a73e8;
}
body.light-theme .htw-mini-tips {
	border-top-color: #ddd;
}
body.light-theme .htw-auto-tip {
	background: linear-gradient(145deg, #eef3ff, #fff);
	border-color: #1a73e855;
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */
@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		align-items: center;
	}
	.hero h1 {
		font-size: 2.6rem;
	}
	.hero-sub {
		max-width: 100%;
	}
	.hero-meta {
		justify-content: center;
	}
	.hero-buttons {
		justify-content: center;
	}
	.screenshot-placeholder {
		max-width: 100%;
	}
	.pricing-grid {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}
	.htw-grid {
		grid-template-columns: 1fr;
	}
	.pricing-header-flex {
		flex-direction: column;
		text-align: center;
	}
	.pricing-header-flex>div {
		text-align: center;
	}
	.currency-toggle-wrapper {
		margin-top: 4px;
	}
}

@media (max-width: 600px) {
	.hero h1 {
		font-size: 2rem;
	}
	.btn-lg {
		padding: 12px 28px;
		font-size: 1rem;
	}
	/* Stack the two hero buttons vertically, full width & centered */
	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
	.hero-buttons .btn {
		width: 100%;
	}
	/* Center feature cards' icons & text on small screens */
	.feature-card {
		text-align: center;
	}
	.feature-icon {
		text-align: center;
	}
	.download-box {
		padding: 40px 20px;
	}
	.features-grid,
	.tech-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.feature-card,
	.tech-item,
	.pricing-card {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	.steps {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.step {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}
	.footer-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.pricing-card .price {
		font-size: 2.2rem;
	}
	.currency-toggle-wrapper {
		padding: 8px 14px;
		gap: 6px;
	}
	.switch {
		width: 38px;
		height: 20px;
	}
	.slider:before {
		height: 14px;
		width: 14px;
		left: 3px;
		bottom: 3px;
	}
	.switch input:checked+.slider:before {
		transform: translateX(18px);
	}
	.rate-hint {
		display: none;
	}
	.htw-auto-tip {
		flex-direction: column;
		text-align: center;
		padding: 22px 18px;
	}
	.htw-card {
		padding: 24px 18px;
	}
	.htw-list li {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.steps {
		grid-template-columns: 1fr;
	}
	.pricing-card {
		padding: 30px 20px 25px;
	}
}