@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1a1a1a;
	line-height: 1.6;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	transition: box-shadow .3s;
}

nav.scrolled {
	box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: -1.5px;
	color: #111;
}

.nav-logo img {
	height: 40px;
	width: auto;
	border-radius: 8px;
}

.nav-logo em {
	font-style: normal;
	color: #10b981;
}

.nav-logo small {
	font-size: 11px;
	font-weight: 500;
	color: #999;
	margin-left: 2px;
	letter-spacing: 0.5px;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-right a {
	font-size: 14px;
	font-weight: 500;
	color: #555;
	text-decoration: none;
	transition: color .2s;
}

.nav-right a:hover {
	color: #111;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 28px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all .25s;
	cursor: pointer;
	border: none;
	letter-spacing: -0.2px;
}

.btn-dark {
	background: black;
	color: white;
}

.btn-dark:hover {
	background: #333;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-green {
	background: #10b981;
	color: #fff;
}

.btn-green:hover {
	background: #059669;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-ghost {
	background: none;
	color: #666;
	padding: 11px 16px;
}

.btn-ghost:hover {
	color: #111;
}

.btn-white {
	background: #fff;
	color: #111;
}

.btn-white:hover {
	background: #f5f5f5;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-lg {
	padding: 16px 36px;
	font-size: 16px;
	border-radius: 10px;
}

.btn-outline {
	background: none;
	border: 1.5px solid #d1d5db;
	color: #111;
	border-radius: 50px;
}

.btn-outline:hover {
	border-color: #111;
}

/* ─── HERO ─── */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 60px 80px;
	position: relative;
	overflow: hidden;
	background: #fafafa;
}

.hero::after {
	content: '';
	position: absolute;
	top: 60px;
	right: -100px;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 60px;
	max-width: 1400px;
	margin: 0 auto;
	align-items: center;
	position: relative;
	z-index: 1;
	width: 100%;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #10b981;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero-label .pulse {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.hero h1 {
	font-size: 54px;
	font-weight: 800;
	letter-spacing: -2.5px;
	line-height: 1.08;
	color: #111;
	margin-bottom: 20px;
}

.hero p {
	font-size: 19px;
	color: #666;
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 500px;
}

.hero-ctas {
	display: flex;
	gap: 12px;
	align-items: center;
}

.hero-note {
	font-size: 13px;
	color: #999;
	margin-top: 14px;
}

/* Hero visual — Layered dashboard + ChatGPT mockup */
.hero-visual {
	position: relative;
	height: 560px;
}

.hv-dashboard {
	position: absolute;
	top: 0;
	left: 0;
	width: 520px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	z-index: 2;
}

.hv-dash-header {
	background: #111;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hv-dash-dots {
	display: flex;
	gap: 5px;
}

.hv-dash-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.hv-dash-dots span:nth-child(1) {
	background: #ff5f57;
}

.hv-dash-dots span:nth-child(2) {
	background: #febc2e;
}

.hv-dash-dots span:nth-child(3) {
	background: #28c840;
}

.hv-dash-url {
	flex: 1;
	background: #222;
	border-radius: 6px;
	padding: 5px 12px;
	font-size: 11px;
	color: #888;
	margin-left: 8px;
}

.hv-dash-body {
	padding: 20px;
}

.hv-dash-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.hv-dash-brand {
	font-size: 18px;
	font-weight: 800;
	color: #10b981;
}

.hv-dash-merchant {
	font-size: 12px;
	color: #888;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hv-dash-merchant .badge {
	background: #d1fae5;
	color: #059669;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
}

.hv-kpi-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-bottom: 12px;
}

.hv-kpi {
	background: #fafafa;
	border-radius: 8px;
	padding: 10px;
	border: 1px solid #f0f0f0;
}

.hv-kpi .k-label {
	font-size: 9px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-weight: 600;
}

.hv-kpi .k-val {
	font-size: 22px;
	font-weight: 800;
	color: #111;
	line-height: 1.2;
}

.hv-kpi .k-change {
	font-size: 10px;
	font-weight: 700;
	color: #10b981;
}

.hv-leads-section {
	margin-top: 4px;
}

.hv-leads-title {
	font-size: 11px;
	font-weight: 700;
	color: #111;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hv-leads-title span {
	font-size: 10px;
	color: #10b981;
	font-weight: 600;
}

.hv-lead-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	background: #fafafa;
	border-radius: 8px;
	margin-bottom: 6px;
	border: 1px solid #f0f0f0;
}

.hv-lead-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 11px;
	flex-shrink: 0;
}

.hv-lead-info {
	flex: 1;
}

.hv-lead-name {
	font-size: 12px;
	font-weight: 700;
	color: #111;
}

.hv-lead-detail {
	font-size: 10px;
	color: #888;
}

.hv-lead-badge {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	flex-shrink: 0;
}

.hv-lead-badge.converted {
	background: #d1fae5;
	color: #059669;
}

.hv-lead-badge.pending {
	background: #fef3c7;
	color: #d97706;
}

.hv-lead-badge.new {
	background: #dbeafe;
	color: #2563eb;
}

.hv-chatgpt {
	position: absolute;
	top: 20px;
	right: -10px;
	width: 300px;
	background: #212121;
	border-radius: 14px;
	padding: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.1);
	z-index: 3;
	overflow: hidden;
	animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

.hv-chatgpt-header {
	background: #111;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hv-chatgpt-header .cgpt-icon {
	width: 22px;
	height: 22px;
	background: #10a37f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hv-chatgpt-header .cgpt-icon svg {
	width: 12px;
	height: 12px;
	fill: #fff;
}

.hv-chatgpt-header .cgpt-title {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}

.hv-chatgpt-result {
	border-left: 3px solid #10b981;
	padding-left: 10px;
}

.hv-chatgpt-result .cr-name {
	font-size: 13px;
	font-weight: 700;
	color: #111;
}

.hv-chatgpt-result .cr-rating {
	font-size: 11px;
	color: #f59e0b;
	margin: 2px 0;
}

.hv-chatgpt-result .cr-desc {
	font-size: 11px;
	color: #666;
	line-height: 1.4;
}

.hv-chatgpt-result .cr-tag {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 9px;
	font-weight: 700;
	color: #10b981;
	background: #f0fdf4;
	padding: 2px 6px;
	border-radius: 4px;
	margin-top: 4px;
}

.hv-float-wa {
	position: absolute;
	bottom: 30px;
	right: 20px;
	width: 220px;
	background: #fff;
	border-radius: 14px;
	padding: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
	z-index: 4;
	animation: floatUp 3.5s ease-in-out infinite;
	animation-delay: 1s;
}

.hv-wa-head {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.hv-wa-icon {
	width: 24px;
	height: 24px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hv-wa-icon svg {
	width: 14px;
	height: 14px;
	fill: #fff;
}

.hv-wa-label {
	font-size: 10px;
	font-weight: 700;
	color: #111;
}

.hv-wa-sublabel {
	font-size: 9px;
	color: #999;
}

.hv-wa-msg {
	background: #d9fdd3;
	border-radius: 8px;
	padding: 6px 8px;
	font-size: 10px;
	color: #1a1a1a;
	line-height: 1.3;
}

/* ─── DISCOVERY BANNER ─── */
.discovery-banner {
	padding: 72px 60px;
	background: #111;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.discovery-banner::before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 500px;
	height: 250px;
	background: radial-gradient(ellipse, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.discovery-banner h2 {
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -1px;
	line-height: 1.25;
	margin-bottom: 12px;
	position: relative;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.discovery-banner h2 em {
	font-style: normal;
	color: #10b981;
}

.discovery-banner p {
	font-size: 17px;
	color: #888;
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

/* ─── STATS ─── */
.stats {
	padding: 56px 60px;
	background: #fafafa;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.stats-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.stat {
	text-align: center;
}

.stat-val {
	font-size: 44px;
	font-weight: 900;
	color: #10b981;
	letter-spacing: -1px;
	line-height: 1;
}

.stat-desc {
	font-size: 14px;
	color: #888;
	margin-top: 4px;
}

/* ─── PRODUCT SHOWCASE (Yext-style) ─── */
.showcase {
	padding: 0;
	min-height: 100vh;
}

.showcase-inner {
	display: flex;
	max-width: 100%;
	min-height: 100vh;
}

/* Sidebar — dark, thin-line icons like Yext */
.showcase-sidebar {
	width: 280px;
	background: #111;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 0;
	height: 100vh;
	flex-shrink: 0;
}

.showcase-sidebar .ss-logo {
	padding: 0 28px 36px;
	font-size: 22px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -1px;
}

.showcase-sidebar .ss-logo em {
	color: #10b981;
	font-style: normal;
}

.showcase-sidebar .ss-item {
	padding: 14px 28px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: all .25s;
	display: flex;
	align-items: center;
	gap: 14px;
	border-left: 3px solid transparent;
	font-weight: 500;
}

.showcase-sidebar .ss-item:hover {
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.03);
}

.showcase-sidebar .ss-item.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border-left-color: #10b981;
	font-weight: 600;
}

.ss-icon-wrap {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .25s;
}

.ss-icon-wrap svg {
	width: 18px;
	height: 18px;
	stroke: rgba(255, 255, 255, 0.5);
	stroke-width: 1.5;
	fill: none;
	transition: stroke .25s;
}

.ss-item.active .ss-icon-wrap {
	border-color: rgba(16, 185, 129, 0.4);
	background: rgba(16, 185, 129, 0.08);
}

.ss-item.active .ss-icon-wrap svg {
	stroke: #10b981;
}

.ss-item:hover .ss-icon-wrap svg {
	stroke: rgba(255, 255, 255, 0.7);
}

/* Panels */
.showcase-panels {
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
}

.showcase-panel {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 60px;
}

.showcase-panel .sp-content {
	max-width: 400px;
	flex-shrink: 0;
}

.showcase-panel .sp-content h2 {
	font-size: 36px;
	font-weight: 300;
	letter-spacing: -1px;
	line-height: 1.15;
	color: #3b7a8a;
	margin-bottom: 18px;
}

.showcase-panel .sp-content p {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 32px;
}

.showcase-panel .sp-visual {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 520px;
}

.showcase-panel .sp-inner {
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
	max-width: 1000px;
}

/* ─── PLATFORM ICON CIRCLES (like Yext) ─── */
.platform-icons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: absolute;
	z-index: 10;
}

.p-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transition: transform .3s;
}

.p-icon:hover {
	transform: scale(1.1);
}

.p-icon svg {
	width: 24px;
	height: 24px;
}

.p-icon-g {
	background: #fff;
}

/* ─── REVIEW VISUAL (Yext-style layered) ─── */
.vis-review-comp {
	position: relative;
	width: 100%;
	max-width: 460px;
	height: 520px;
}

/* Background photo */
.vis-review-photo {
	position: absolute;
	top: 0;
	right: 0;
	width: 240px;
	height: 200px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	z-index: 1;
}

.vis-review-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Score card */
.vis-score-card {
	position: absolute;
	top: 120px;
	left: 0;
	width: 290px;
	background: #fff;
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
	z-index: 2;
}

.vis-score-card .vsc-header {
	font-size: 13px;
	font-weight: 600;
	color: #10b981;
	margin-bottom: 4px;
}

.vis-score-card .vsc-tagline {
	font-size: 11px;
	color: #888;
	margin-bottom: 10px;
}

.vis-score-card .vsc-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vis-score-card .vsc-score {
	font-size: 40px;
	font-weight: 900;
	color: #10b981;
	line-height: 1;
}

.vis-score-card .vsc-bar-group {
	flex: 1;
}

.vis-score-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 3px;
}

.vis-score-bar .vsb-label {
	font-size: 9px;
	color: #888;
	width: 60px;
}

.vis-score-bar .vsb-track {
	flex: 1;
	height: 5px;
	background: #f0f0f0;
	border-radius: 3px;
	overflow: hidden;
}

.vis-score-bar .vsb-fill {
	height: 100%;
	border-radius: 3px;
	background: #10b981;
}

.vis-score-card .vsc-items {
	margin-top: 10px;
	border-top: 1px solid #f0f0f0;
	padding-top: 10px;
}

.vis-score-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
	border-bottom: 1px solid #fafafa;
}

.vis-score-item .vsi-name {
	font-size: 11px;
	color: #555;
}

.vis-score-item .vsi-stars {
	font-size: 10px;
	color: #f59e0b;
	letter-spacing: 1px;
}

.vis-score-item .vsi-count {
	font-size: 10px;
	color: #999;
}

/* Review card with person (like Yext's Alex Edwards card) */
.vis-review-card {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 300px;
	background: #fff;
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
	z-index: 3;
}

.vis-review-card .vrc-person {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.vis-review-card .vrc-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f97316, #ef4444);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 17px;
}

.vis-review-card .vrc-name {
	font-size: 15px;
	font-weight: 700;
	color: #111;
}

.vis-review-card .vrc-badges {
	display: flex;
	gap: 6px;
	margin-top: 2px;
}

.vis-review-card .vrc-badge {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
}

.vis-review-card .vrc-badge-elite {
	background: #1e293b;
	color: #f59e0b;
}

.vis-review-card .vrc-badge-star {
	background: #fef3c7;
	color: #d97706;
}

.vis-review-card .vrc-meta {
	font-size: 10px;
	color: #999;
}

.vis-review-card .vrc-stars {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.vis-review-card .vrc-stars-icons {
	font-size: 14px;
	color: #10b981;
	letter-spacing: 1px;
}

.vis-review-card .vrc-stars-val {
	font-size: 15px;
	font-weight: 800;
	color: #10b981;
}

.vis-review-card .vrc-text {
	font-size: 13px;
	color: #555;
	line-height: 1.55;
}

/* ─── PHOTO VISUAL ─── */
.vis-photo-comp {
	position: relative;
	width: 100%;
	max-width: 460px;
	height: 400px;
}

.vis-photo-before {
	position: absolute;
	top: 30px;
	left: 0;
	width: 210px;
	height: 280px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	z-index: 1;
	transform: rotate(-3deg);
	border: 3px solid rgba(255, 255, 255, 0.8);
}

.vis-photo-before img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.75) saturate(0.6) contrast(0.85);
}

.vis-photo-before .label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	padding: 8px;
}

.vis-photo-after {
	position: absolute;
	top: 10px;
	right: 40px;
	width: 230px;
	height: 300px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	z-index: 2;
	transform: rotate(2deg);
	border: 3px solid rgba(255, 255, 255, 0.8);
}

.vis-photo-after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.1) saturate(1.25) contrast(1.05);
}

.vis-photo-after .label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(16, 185, 129, 0.85);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	padding: 8px;
}

/* Arrow connecting before → after */
.vis-photo-arrow {
	position: absolute;
	top: 50%;
	left: 185px;
	z-index: 5;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
}

.vis-photo-arrow svg {
	width: 22px;
	height: 22px;
	stroke: #10b981;
	fill: none;
	stroke-width: 2;
}

.vis-photo-wa {
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 220px;
	background: #fff;
	border-radius: 14px;
	padding: 14px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	z-index: 4;
}

.vis-photo-wa .pw-head {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.vis-photo-wa .pw-icon {
	width: 22px;
	height: 22px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vis-photo-wa .pw-icon svg {
	width: 13px;
	height: 13px;
	fill: #fff;
}

.vis-photo-wa .pw-label {
	font-size: 10px;
	font-weight: 700;
	color: #111;
}

.vis-photo-wa .pw-msg {
	font-size: 10px;
	color: #555;
	line-height: 1.4;
}

.vis-photo-wa .pw-status {
	display: flex;
	gap: 4px;
	margin-top: 6px;
}

.vis-photo-wa .pw-status span {
	font-size: 9px;
	color: #10b981;
	font-weight: 700;
	background: #f0fdf4;
	padding: 2px 6px;
	border-radius: 4px;
}

/* ─── SEO VISUAL ─── */
.vis-seo-comp {
	position: relative;
	width: 100%;
	max-width: 460px;
	height: 420px;
}

.vis-seo-dashboard {
	position: absolute;
	top: 0;
	left: 0;
	width: 360px;
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
	z-index: 1;
}

.vis-seo-dashboard .vsd-title {
	font-size: 14px;
	font-weight: 800;
	color: #111;
	margin-bottom: 4px;
}

.vis-seo-dashboard .vsd-sub {
	font-size: 11px;
	color: #888;
	margin-bottom: 12px;
}

.vis-seo-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.vis-seo-bar .sb-label {
	font-size: 11px;
	color: #666;
	width: 90px;
	flex-shrink: 0;
}

.vis-seo-bar .sb-track {
	flex: 1;
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
}

.vis-seo-bar .sb-fill {
	height: 100%;
	border-radius: 4px;
}

.vis-seo-bar .sb-val {
	font-size: 11px;
	font-weight: 700;
	width: 36px;
	text-align: right;
	flex-shrink: 0;
}

.vis-ai-seo {
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 280px;
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	z-index: 2;
	border-left: 4px solid #3b82f6;
}

.vis-ai-seo .ais-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	color: #3b82f6;
	background: #eff6ff;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}

.vis-ai-seo .ais-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #444;
	padding: 3px 0;
}

.vis-ai-seo .ais-check {
	color: #10b981;
	font-weight: 700;
}

.vis-progress-ring {
	position: absolute;
	top: 10px;
	right: 50px;
	width: 100px;
	height: 100px;
	z-index: 3;
}

.vis-progress-ring svg {
	width: 100px;
	height: 100px;
	transform: rotate(-90deg);
}

.vis-progress-ring .ring-bg {
	fill: none;
	stroke: #f0f0f0;
	stroke-width: 8;
}

.vis-progress-ring .ring-fill {
	fill: none;
	stroke: #10b981;
	stroke-width: 8;
	stroke-linecap: round;
	stroke-dasharray: 251;
	stroke-dashoffset: 20;
}

.vis-progress-ring .ring-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: 900;
	color: #10b981;
}

.vis-progress-ring .ring-label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% + 16px));
	font-size: 8px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

/* ─── LEADS VISUAL ─── */
.vis-leads-comp {
	position: relative;
	width: 100%;
	max-width: 460px;
	height: 420px;
}

.vis-leads-dashboard {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	z-index: 1;
}

.vis-leads-dash-header {
	background: #fafafa;
	padding: 14px 18px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vis-leads-dash-header .ldh-title {
	font-size: 14px;
	font-weight: 700;
	color: #111;
}

.vis-leads-dash-header .ldh-count {
	font-size: 12px;
	color: #10b981;
	font-weight: 700;
}

.vis-leads-dash-body {
	padding: 12px;
}

.vis-leads-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 4px;
	transition: background .2s;
}

.vis-leads-row:hover {
	background: #fafafa;
}

.vis-leads-row .lr-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	flex-shrink: 0;
}

.vis-leads-row .lr-info {
	flex: 1;
}

.vis-leads-row .lr-name {
	font-size: 13px;
	font-weight: 700;
	color: #111;
}

.vis-leads-row .lr-detail {
	font-size: 10px;
	color: #888;
}

.vis-leads-row .lr-badge {
	font-size: 9px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 10px;
}

.vis-leads-source {
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 240px;
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.vis-leads-source h4 {
	font-size: 11px;
	font-weight: 700;
	color: #111;
	margin-bottom: 10px;
}

.vis-source-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 0;
}

.vis-source-row .sr-name {
	font-size: 11px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vis-source-row .sr-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.vis-source-row .sr-bar {
	flex: 1;
	height: 6px;
	background: #f0f0f0;
	border-radius: 3px;
	margin: 0 10px;
	overflow: hidden;
}

.vis-source-row .sr-fill {
	height: 100%;
	border-radius: 3px;
}

.vis-source-row .sr-val {
	font-size: 10px;
	font-weight: 700;
	color: #111;
}

/* ─── AI SEO VISUAL ─── */
.vis-aiseo-comp {
	position: relative;
	width: 100%;
	max-width: 460px;
	height: 420px;
}

.vis-vsm-comp {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 420px;
}

.vis-aiseo-window {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	z-index: 1;
}

.vis-aiseo-header {
	background: #111;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vis-aiseo-header span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.vis-aiseo-body {
	padding: 16px;
}

.vis-aiseo-scan {
	background: #f0fdf4;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 12px;
	border: 1px solid #d1fae5;
}

.vis-aiseo-scan .scan-title {
	font-size: 11px;
	font-weight: 700;
	color: #059669;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.vis-aiseo-scan .scan-title svg {
	width: 14px;
	height: 14px;
	stroke: #059669;
	fill: none;
	stroke-width: 2;
}

.vis-aiseo-scan .scan-item {
	font-size: 11px;
	color: #333;
	padding: 2px 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vis-aiseo-scan .scan-item .s-check {
	color: #10b981;
	font-weight: 700;
}

.vis-aiseo-scan .scan-item .s-fix {
	color: #f59e0b;
	font-weight: 700;
}

.vis-aiseo-desc {
	margin-top: 8px;
}

.vis-aiseo-desc .ad-label {
	font-size: 10px;
	font-weight: 700;
	color: #888;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.vis-aiseo-desc .ad-text {
	font-size: 12px;
	color: #444;
	line-height: 1.5;
	background: #fafafa;
	border-radius: 8px;
	padding: 10px;
	border: 1px solid #f0f0f0;
}

.vis-aiseo-desc .ad-text mark {
	background: #d1fae5;
	color: #059669;
	padding: 0 2px;
	border-radius: 2px;
}

.vis-aiseo-float {
	position: absolute;
	bottom: 30px;
	right: 0;
	width: 260px;
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.vis-aiseo-float .af-title {
	font-size: 11px;
	font-weight: 700;
	color: #111;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vis-aiseo-float .af-title svg {
	width: 14px;
	height: 14px;
	stroke: #10b981;
	fill: none;
	stroke-width: 2;
}

.vis-aiseo-float .af-keyword {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #f0fdf4;
	color: #059669;
	font-size: 10px;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 6px;
	margin: 2px 2px;
}

/* ─── PRICING ─── */
.pricing-section {
	padding: 100px 60px;
	background: #fafafa;
}

.pricing-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.pricing-title {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -1.5px;
	margin-bottom: 8px;
	color: #111;
}

.pricing-sub {
	font-size: 18px;
	color: #888;
	margin-bottom: 48px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.pricing-card {
	background: #fff;
	border-radius: 20px;
	padding: 36px 32px;
	border: 2px solid #eee;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
	transition: all .3s;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricing-card:hover {
	border-color: #10b981;
	box-shadow: 0 16px 48px rgba(16, 185, 129, 0.1);
}

.pricing-card.featured {
	border-color: #10b981;
	box-shadow: 0 16px 48px rgba(16, 185, 129, 0.12);
	transform: scale(1.03);
}

.pricing-card.featured::before {
	content: "MOST POPULAR";
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: #10b981;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 4px 16px;
	border-radius: 20px;
}

.pricing-card .pc-plan {
	font-size: 14px;
	font-weight: 700;
	color: #10b981;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.pricing-card .pc-price {
	font-size: 42px;
	font-weight: 900;
	color: #111;
	line-height: 1;
	margin-bottom: 8px;
}

.pricing-card .pc-price span {
	font-size: 16px;
	font-weight: 400;
	color: #999;
}

.pricing-card .pc-tagline {
	font-size: 13px;
	color: #888;
	margin-bottom: 20px;
	line-height: 1.4;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 20px;
}

.pricing-card .pc-features {
	text-align: left;
	margin-bottom: 24px;
	flex: 1;
}

.pricing-card .pc-features .pf {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: #555;
	padding: 5px 0;
}

.pricing-card .pc-features .pf .check {
	width: 18px;
	height: 18px;
	background: #d1fae5;
	color: #059669;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

.pricing-card .pc-features .pf.disabled {
	color: #ccc;
}

.pricing-card .pc-features .pf.disabled .check {
	background: #f3f4f6;
	color: #d1d5db;
}

/* ─── CTA ─── */
.cta-section {
	padding: 100px 60px;
	background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.cta-section h2 {
	font-size: 44px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -1.5px;
	margin-bottom: 12px;
	position: relative;
}

.cta-section p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 36px;
	position: relative;
}

/* ─── FOOTER ─── */
footer {
	background: #111;
	padding: 32px 48px;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-brand img {
	height: 32px;
	width: auto;
	border-radius: 6px;
}

.footer-brand-text {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.footer-brand-text small {
	display: block;
	font-size: 11px;
	color: #666;
	font-weight: 400;
	margin-top: 2px;
}

.footer-links {
	display: flex;
	gap: 24px;
}

.footer-links a {
	font-size: 13px;
	color: #888;
	text-decoration: none;
}

.footer-links a:hover {
	color: #10b981;
}

.footer-copy {
	font-size: 11px;
	color: #555;
}

/* ─── LEARN MORE PAGES ─── */
.detail-page {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	background: #fff;
	overflow-y: auto;
}

.detail-page.open {
	display: block;
	animation: slideUp 0.35s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.detail-nav {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	height: 64px;
	z-index: 10;
}

.detail-nav .dn-back {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
}

.detail-nav .dn-back:hover {
	color: #111;
}

.detail-hero {
	padding: 80px 48px 60px;
	max-width: 900px;
	margin: 0 auto;
}

.detail-hero .dh-label {
	font-size: 13px;
	font-weight: 700;
	color: #10b981;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}

.detail-hero h1 {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #111;
}

.detail-hero p {
	font-size: 19px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 32px;
}

.detail-features {
	padding: 0 48px 80px;
	max-width: 900px;
	margin: 0 auto;
}

.detail-feature {
	display: flex;
	gap: 20px;
	margin-bottom: 32px;
	align-items: flex-start;
}

.detail-feature .df-icon {
	width: 48px;
	height: 48px;
	background: #f0fdf4;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.detail-feature .df-icon svg {
	width: 22px;
	height: 22px;
	stroke: #10b981;
	fill: none;
	stroke-width: 1.5;
}

.detail-feature h3 {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	margin-bottom: 4px;
}

.detail-feature p {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
}

.detail-cta {
	padding: 60px;
	background: #f0fdf4;
	text-align: center;
	border-radius: 20px;
	margin: 0 48px 60px;
	max-width: 804px;
	margin-left: auto;
	margin-right: auto;
}

.detail-cta h3 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 8px;
	letter-spacing: -0.5px;
	color: #111;
}

.detail-cta p {
	font-size: 16px;
	color: #666;
	margin-bottom: 24px;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-direction: column;
	gap: 5px;
}

.nav-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #333;
	border-radius: 2px;
	transition: all .3s;
}

/* ─── MOBILE SECTION HEADINGS (hidden on desktop) ─── */
.mobile-section-heading {
	display: none;
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 1024px) {
	nav {
		padding: 0 20px;
	}

	.hero {
		padding: 100px 20px 60px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.hero-visual {
		position: relative;
		height: auto;
		overflow: visible;
	}

	.hv-dashboard {
		position: relative;
		width: 100%;
		top: auto;
		left: auto;
	}

	.hv-chatgpt {
		position: relative;
		top: auto;
		right: auto;
		width: 300px;
		margin-top: 16px;
		animation: none;
	}

	.hv-float-wa {
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 16px;
		animation: none;
		animation-delay: 0s;
	}

	.discovery-banner {
		padding: 50px 20px;
	}

	.discovery-banner h2 {
		font-size: 26px;
	}

	.stats {
		padding: 40px 20px;
	}

	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.showcase-inner {
		flex-direction: column;
	}

	.showcase-sidebar {
		width: 100%;
		height: auto;
		position: relative;
		flex-direction: row;
		overflow-x: auto;
		padding: 12px 0;
	}

	.showcase-sidebar .ss-logo {
		display: none;
	}

	.showcase-sidebar .ss-item {
		padding: 10px 16px;
		white-space: nowrap;
		border-left: none;
		border-bottom: 3px solid transparent;
	}

	.showcase-sidebar .ss-item.active {
		border-left: none;
		border-bottom-color: #10b981;
	}

	.showcase-panel {
		padding: 40px 20px;
	}

	.showcase-panel .sp-inner {
		flex-direction: column;
		gap: 32px;
	}

	.showcase-panel .sp-visual {
		margin-left: 0;
	}

	.vis-review-comp,
	.vis-photo-comp,
	.vis-seo-comp,
	.vis-leads-comp,
	.vis-aiseo-comp,
	.vis-vsm-comp {
		zoom: 0.82;
	}

	.pricing-section {
		padding: 60px 20px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}

	.pricing-card.featured {
		transform: none;
	}

	.cta-section {
		padding: 60px 20px;
	}

	footer {
		padding: 24px 20px;
	}

	.footer-inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.detail-nav,
	.detail-hero,
	.detail-features {
		padding-left: 20px;
		padding-right: 20px;
	}

	.detail-cta {
		margin: 0 20px 40px;
	}
}

		/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 768px) {

    /* — Nav — */
    .nav-hamburger {
        display: flex;
    }

    .nav-right {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid #eee;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .nav-right.nav-open {
        display: flex;
    }

    .nav-right a {
        font-size: 16px;
        padding: 8px 0;
    }

    .nav-right .btn.btn-dark {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        border-radius: 10px;
        margin-top: 4px;
    }

    /* — Hero — */
    .hero {
        min-height: auto;
        padding: 90px 20px 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    /* Hero visual — custom mobile layout */
    .hero-visual {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .hv-dashboard {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
    }

    .hv-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hv-chatgpt {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
        animation: none;
    }

    .hv-float-wa {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
        animation: none;
        animation-delay: 0s;
    }

    /* — Discovery Banner — */
    .discovery-banner {
        padding: 40px 20px;
    }

    .discovery-banner h2 {
        font-size: 22px;
        letter-spacing: -0.5px;
    }

    .discovery-banner p {
        font-size: 14px;
    }

    /* — Stats — */
    .stats {
        padding: 32px 20px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-val {
        font-size: 32px;
    }

    .stat-desc {
        font-size: 12px;
    }

    /* — Showcase — sidebar hidden, section headings shown — */
    .showcase {
        min-height: auto;
    }

    .showcase-inner {
        flex-direction: column;
        min-height: auto;
    }

    .showcase-sidebar {
        display: none;
    }

    .showcase-panels {
        overflow: visible;
    }

    .mobile-section-heading {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #10b981;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 0 0 12px;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 24px;
    }

    .showcase-panel {
        min-height: auto;
        padding: 48px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .showcase-panel .sp-inner {
        flex-direction: column;
        gap: 28px;
        max-width: 100%;
    }

    .showcase-panel .sp-content {
        max-width: 100%;
    }

    .showcase-panel .sp-content h2 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .showcase-panel .sp-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .showcase-panel .sp-visual {
        max-width: 100%;
        width: 100%;
        overflow: visible;
    }

    /*
     * Zoom-based scaling — preserves exact desktop layout & proportions.
     * Unlike transform: scale(), zoom affects layout flow, so no overflow
     * or clipping issues. The graphics look identical to desktop, just smaller.
     */
    .vis-review-comp { zoom: 0.65; }
    .vis-photo-comp { zoom: 0.72; }
    .vis-seo-comp { zoom: 0.65; }
    .vis-leads-comp { zoom: 0.62; }
    .vis-aiseo-comp { zoom: 0.62; }
    .vis-vsm-comp { zoom: 0.58; }

    /* — Pricing — */
    .pricing-section {
        padding: 48px 20px;
    }

    .pricing-title {
        font-size: 30px;
    }

    .pricing-sub {
        font-size: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-card .pc-price {
        font-size: 34px;
    }

    .pricing-trial-banner {
        padding: 10px 20px !important;
        margin-bottom: 28px !important;
    }

    .pricing-trial-banner span {
        display: block !important;
    }

    .pricing-trial-banner .trial-label {
        font-size: 14px !important;
    }

    .pricing-trial-banner .trial-price {
        font-size: 28px !important;
    }

    .pricing-trial-banner .trial-note {
        font-size: 12px !important;
    }

    /* — WhatsApp Agent Section — */
    .wa-agent-section {
        padding: 32px 16px 60px !important;
    }

    .wa-agent-card {
        flex-direction: column !important;
        min-height: auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 20px !important;
    }

    .wa-agent-text {
        padding: 36px 24px !important;
        max-width: 100% !important;
    }

    .wa-agent-text h2 {
        font-size: 28px !important;
    }

    .wa-agent-text p {
        font-size: 14px !important;
    }

    .wa-agent-phone {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: calc(100% - 40px) !important;
        max-width: 360px !important;
        height: auto !important;
        aspect-ratio: 340 / 700;
        margin: 0 auto 20px !important;
        perspective: none !important;
    }

    .wa-agent-phone > div {
        transform: none !important;
    }

    /* — CTA Section — */
    .cta-section {
        padding: 48px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .cta-section p {
        font-size: 15px;
    }

    /* — Footer — */
    footer {
        padding: 20px 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* — Detail Pages — */
    .detail-nav {
        padding: 0 16px;
    }

    .detail-hero {
        padding: 60px 20px 40px;
    }

    .detail-hero h1 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .detail-hero p {
        font-size: 16px;
    }

    .detail-features {
        padding: 0 20px 48px;
    }

    .detail-feature {
        flex-direction: column;
        gap: 12px;
    }

    .detail-cta {
        margin: 0 16px 40px;
        padding: 36px 20px;
    }

    .detail-cta h3 {
        font-size: 22px;
    }
}

/* ─── RESPONSIVE — SMALL MOBILE ─── */
@media (max-width: 420px) {
    .hero h1 {
        font-size: 28px;
    }

    .hv-chatgpt {
        width: 100%;
    }

    .vis-review-comp { zoom: 0.52; }
    .vis-photo-comp { zoom: 0.58; }
    .vis-seo-comp { zoom: 0.52; }
    .vis-leads-comp { zoom: 0.50; }
    .vis-aiseo-comp { zoom: 0.50; }
    .vis-vsm-comp { zoom: 0.46; }

    .showcase-panel .sp-content h2 {
        font-size: 22px;
    }

    .pricing-title {
        font-size: 26px;
    }

    .discovery-banner h2 {
        font-size: 20px;
    }

    .wa-agent-phone {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 340 / 700;
    }
}
