:root {
	--navy: #091936;
	--muted: #647085;
	--green: #159447;
	--green-dark: #0f7f3b;
	--green-soft: #e9f8ef;
	--line: #dfe6ee;
	--panel: #ffffff;
	--shadow: 0 24px 60px rgba(9, 25, 54, 0.12);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--navy);
	background: #ffffff;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}

a {
	color: var(--green);
}

.container-xl {
	max-width: 1180px;
}

.site-nav {
	position: relative;
	z-index: 10;
	padding: 28px 0 18px;
	background: #ffffff;
}

.brand-logo {
	display: block;
	width: 178px;
	height: auto;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--navy);
	font-size: 14px;
	font-weight: 600;
	padding-right: 24px;
	padding-left: 24px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
	color: var(--green);
}

.navbar-toggler {
	border-color: #d7e2dc;
	color: var(--navy);
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(21, 148, 71, 0.16);
}

.dropdown-menu {
	border: 1px solid var(--line);
	border-radius: 8px;
}

.dropdown-item {
	color: var(--navy);
	font-size: 14px;
	font-weight: 600;
}

.dropdown-item:active {
	background: var(--green);
}

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

.nav-login {
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.nav-login:hover,
.nav-login:focus {
	color: var(--green);
	text-decoration: none;
}

.nav-login.is-active,
.nav-login[aria-current="page"] {
	color: var(--green);
}

.nav-code-link {
	border-color: #b8ddc7;
	background: #ffffff;
	color: var(--green);
	font-size: 14px;
	font-weight: 800;
	padding: 7px 12px;
}

.nav-code-link:hover,
.nav-code-link:focus {
	border-color: var(--green);
	background: var(--green-soft);
	color: var(--green-dark);
}

.survey-code-strip {
	border-top: 1px solid rgba(223, 230, 238, 0.7);
	border-bottom: 1px solid rgba(223, 230, 238, 0.85);
	background: #f7fcf9;
}

.survey-code-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 14px;
	min-height: 58px;
}

.survey-code-strip-copy {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 900;
}

.survey-code-strip-copy i {
	color: var(--green);
	font-size: 15px;
}

.btn {
	border-radius: 7px;
	font-weight: 800;
}

.btn-green {
	border-color: var(--green);
	background: linear-gradient(180deg, #1ca254 0%, var(--green) 100%);
	box-shadow: 0 12px 24px rgba(21, 148, 71, 0.22);
	color: #ffffff;
}

.btn-green:hover,
.btn-green:focus {
	border-color: var(--green-dark);
	background: var(--green-dark);
	color: #ffffff;
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 64px 0 58px;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #effaf3 100%);
}

.section-eyebrow,
.section-kicker {
	margin: 0 0 20px;
	color: var(--green);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--green-soft);
}

.section-kicker {
	color: #6d7788;
}

.section-kicker span {
	color: var(--green);
}

.hero-section h1 {
	max-width: 550px;
	margin: 0;
	color: var(--navy);
	font-size: 48px;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.hero-copy {
	max-width: 500px;
	margin: 28px 0 0;
	color: #3f4a5c;
	font-size: 18px;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero-actions .btn {
	min-width: 168px;
	padding: 15px 22px;
	font-size: 15px;
}

.btn-watch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-color: #d7dee8;
	background: #ffffff;
	color: var(--navy);
}

.btn-watch i {
	color: var(--green);
	font-size: 13px;
}

.survey-code-entry {
	max-width: 500px;
	margin-top: 24px;
}

.survey-code-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	color: var(--navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
}

.survey-code-label i {
	color: var(--green);
	font-size: 16px;
}

.survey-code-row {
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.survey-code-input {
	min-width: 0;
	height: 48px;
	border-color: #ccd8e5;
	color: var(--navy);
	font-size: 15px;
	font-weight: 800;
	text-transform: lowercase;
}

.survey-code-input:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(21, 148, 71, 0.14);
}

.survey-code-entry.has-error .survey-code-input {
	border-color: #c83535;
	box-shadow: 0 0 0 3px rgba(200, 53, 53, 0.1);
}

.survey-code-row .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 16px;
	white-space: nowrap;
}

.survey-code-help,
.survey-code-error {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.4;
}

.survey-code-help {
	color: #647085;
}

.survey-code-error {
	display: none;
	color: #a42222;
	font-weight: 800;
}

.survey-code-error.is-visible {
	display: block;
}

.survey-code-page {
	min-height: 100vh;
	background: linear-gradient(180deg, #ffffff 0%, #f1faf4 100%);
}

.survey-code-page-nav {
	border-bottom: 1px solid rgba(223, 230, 238, 0.9);
	background: #ffffff;
}

.survey-code-page-main {
	padding: 72px 0 90px;
}

.survey-code-page-layout {
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: minmax(0, 540px);
}

.survey-code-page-card {
	padding: 34px;
	border: 1px solid rgba(149, 165, 186, 0.32);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.survey-code-page-card h1 {
	max-width: 460px;
	margin: 0;
	color: var(--navy);
	font-size: 42px;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.survey-code-page-copy {
	max-width: 460px;
	margin: 20px 0 0;
	color: #4c596c;
	font-size: 17px;
	line-height: 1.65;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 24px;
	color: #5f6d7f;
	font-size: 13px;
	font-weight: 700;
}

.hero-proof span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero-proof i {
	color: var(--green);
}

.product-preview {
	position: relative;
	min-height: 570px;
	margin-left: 18px;
	overflow: visible;
}

.desktop-preview {
	position: absolute;
	top: 0;
	right: 0;
	width: min(100%, 730px);
	border: 1px solid rgba(136, 151, 170, 0.24);
	border-radius: 18px;
	box-shadow: var(--shadow);
}

.mobile-preview {
	position: absolute;
	bottom: 8px;
	left: -28px;
	width: 160px;
	border-radius: 24px;
	box-shadow: 0 22px 44px rgba(9, 25, 54, 0.18);
}

.trusted-section {
	padding: 36px 0 24px;
	background: #ffffff;
}

.trusted-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	min-height: 76px;
}

.trusted-logos a {
	display: block;
	border-radius: 8px;
}

.trusted-logos a:hover img,
.trusted-logos a:focus img {
	opacity: 0.9;
}

.trusted-logos a:focus {
	outline: 3px solid rgba(21, 148, 71, 0.24);
	outline-offset: 8px;
}

.trusted-logos img {
	display: block;
	max-width: 190px;
	max-height: 68px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.58;
}

.trusted-logos a:nth-child(2) img {
	max-width: 86px;
	max-height: 76px;
}

.feature-strip {
	padding: 26px 0 58px;
	background: #ffffff;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	min-height: 150px;
	padding: 10px 0;
}

.feature-icon,
.moment-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	font-size: 25px;
}

.feature-item h2,
.moment-card h2,
.pricing-card h2 {
	margin: 0;
	color: var(--navy);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.feature-item p,
.moment-card p {
	margin: 10px 0 0;
	color: #4b5667;
	font-size: 15px;
	line-height: 1.55;
}

.moments-section {
	padding: 42px 0 54px;
	background: #ffffff;
}

.moment-card {
	min-height: 162px;
	margin-top: 4px;
	padding: 24px 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	box-shadow: 0 14px 34px rgba(9, 25, 54, 0.04);
}

.moment-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 14px;
	font-size: 21px;
}

.moment-icon.purple {
	background: #f0edff;
	color: #635bff;
}

.moment-icon.blue {
	background: #eef5ff;
	color: #2f75ff;
}

.moment-icon.orange {
	background: #fff3e6;
	color: #ff8a1f;
}

.moment-icon.pink {
	background: #ffecf6;
	color: #f03284;
}

.pricing-section {
	padding: 42px 0 74px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.pricing-row {
	margin-top: 18px;
}

.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 430px;
	margin-top: 18px;
	padding: 34px 30px 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 36px rgba(9, 25, 54, 0.05);
}

.pricing-card.featured {
	border-color: rgba(21, 148, 71, 0.34);
	box-shadow: 0 22px 48px rgba(21, 148, 71, 0.14);
}

.popular-ribbon {
	position: absolute;
	top: 0;
	right: -1px;
	left: -1px;
	height: 28px;
	border-radius: 8px 8px 0 0;
	background: var(--green);
	color: #ffffff;
	font-size: 11px;
	font-weight: 900;
	line-height: 28px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
}

.featured h2 {
	margin-top: 22px;
}

.plan-intro {
	margin: 4px 0 22px;
	color: #596579;
	font-size: 14px;
	font-weight: 600;
}

.plan-price {
	margin-bottom: 24px;
	color: #6a7486;
	font-size: 15px;
	font-weight: 700;
}

.plan-price span {
	display: inline-block;
	max-width: 100%;
	color: #111827;
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
	overflow-wrap: anywhere;
}

.plan-features {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	color: #243044;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.plan-features i {
	margin-top: 3px;
	color: var(--green);
	font-size: 12px;
}

.pricing-card .btn {
	margin-top: auto;
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 14px;
}

.site-footer {
	padding: 30px 0 42px;
	background: #f8fbf9;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid #e2ebe5;
	padding-top: 24px;
}

.footer-main {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-logo {
	width: 132px;
	height: auto;
}

.footer-main p {
	margin: 0;
	color: #657286;
	font-size: 14px;
	font-weight: 700;
}

.footer-links {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-links a {
	color: #4f5c70;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
	color: var(--green);
	text-decoration: none;
}

.footer-property {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	color: #7c8798;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0.72;
	transition: color 160ms ease, opacity 160ms ease;
}

.footer-property:hover,
.footer-property:focus {
	color: #4f5c70;
	text-decoration: none;
	opacity: 1;
}

.footer-property img {
	width: 58px;
	height: auto;
	max-height: 36px;
	object-fit: contain;
	filter: grayscale(1);
}

.doc-hero {
	padding: 58px 0 28px;
	background: #f8fbf9;
}

.doc-hero-with-media {
	padding-bottom: 36px;
}

.doc-hero h1 {
	max-width: 820px;
	margin: 0;
	color: var(--navy);
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.06;
}

.doc-hero p {
	max-width: 760px;
	margin: 14px 0 0;
	color: #526275;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.55;
}

.doc-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.doc-meta span {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border: 1px solid #dce7e1;
	border-radius: 999px;
	background: #ffffff;
	color: #506075;
	font-size: 12px;
	font-weight: 900;
}

.doc-hero-media {
	margin: 28px 0 0;
	overflow: hidden;
	border: 1px solid #dce7e1;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 20px 48px rgba(9, 25, 54, 0.12);
}

.doc-hero-media img {
	display: block;
	width: 100%;
	height: auto;
}

.doc-layout {
	display: grid;
	grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
	gap: 42px;
	padding: 38px 0 64px;
}

.doc-toc {
	position: sticky;
	top: 18px;
	align-self: start;
	display: grid;
	gap: 8px;
}

.doc-toc a {
	color: #4f5c70;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.doc-toc a:hover,
.doc-toc a:focus {
	color: var(--green);
	text-decoration: none;
}

.doc-content {
	width: 100%;
	max-width: 860px;
	min-width: 0;
}

.doc-section {
	padding: 22px 0;
	border-top: 1px solid #e2ebe5;
}

.doc-section:first-child {
	border-top: 0;
	padding-top: 0;
}

.doc-section h2 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 25px;
	font-weight: 900;
}

.doc-section h3 {
	margin: 18px 0 8px;
	color: var(--navy);
	font-size: 18px;
	font-weight: 900;
}

.doc-section p,
.doc-section li {
	color: #3d4d61;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.62;
}

.doc-section p {
	margin: 0 0 12px;
}

.doc-section ul,
.doc-section ol {
	display: grid;
	gap: 9px;
	margin: 0 0 14px;
	padding-left: 22px;
}

.doc-callout {
	margin: 20px 0;
	padding: 16px;
	border: 1px solid rgba(21, 148, 71, 0.20);
	border-radius: 8px;
	background: var(--green-soft);
	color: #0f6f35;
	font-size: 14px;
	font-weight: 850;
	line-height: 1.5;
}

.doc-figure {
	margin: 18px 0 24px;
	overflow: hidden;
	border: 1px solid #dce7e1;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(9, 25, 54, 0.08);
}

.doc-figure img {
	display: block;
	width: 100%;
	height: auto;
}

.doc-figure figcaption {
	margin: 0;
	padding: 12px 14px;
	border-top: 1px solid #e6eee9;
	color: #526275;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.45;
}

.doc-table-wrap {
	margin: 16px 0 20px;
	overflow-x: auto;
	border: 1px solid #dce7e1;
	border-radius: 8px;
	background: #ffffff;
}

.doc-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 720px;
}

.doc-table th,
.doc-table td {
	padding: 12px 14px;
	border-bottom: 1px solid #e6eee9;
	color: #3d4d61;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
	vertical-align: top;
}

.doc-table th {
	background: #f8fbf9;
	color: var(--navy);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.doc-table tr:last-child td {
	border-bottom: 0;
}

.doc-code {
	display: block;
	margin: 14px 0;
	padding: 16px;
	border: 1px solid #dce7e1;
	border-radius: 8px;
	background: #091936;
	color: #eefbf2;
	font-size: 13px;
	line-height: 1.55;
	overflow-x: auto;
	white-space: pre;
}

.code-tabs {
	margin-top: 18px;
}

.code-tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 0;
}

.code-tab-button {
	border: 1px solid #dce7e1;
	border-radius: 7px 7px 0 0;
	background: #f8fbf9;
	color: #526275;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	padding: 11px 14px;
}

.code-tab-button:hover,
.code-tab-button:focus {
	border-color: rgba(21, 148, 71, 0.38);
	color: var(--green);
	outline: none;
}

.code-tab-button.is-active {
	border-color: #dce7e1;
	border-bottom-color: #091936;
	background: #091936;
	color: #eefbf2;
}

.code-tab-panel .doc-code {
	margin-top: 0;
	border-top-left-radius: 0;
}

.code-tab-panel[hidden] {
	display: none;
}

.doc-inline-code {
	padding: 2px 5px;
	border-radius: 5px;
	background: #eef2f7;
	color: var(--navy);
	font-size: 0.92em;
	font-weight: 850;
}

.guide-index-layout {
	padding: 44px 0 76px;
}

.guide-index-intro h2 {
	margin: 0 0 18px;
	color: var(--navy);
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 0;
}

.guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.guide-card {
	display: flex;
	flex-direction: column;
	min-height: 270px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 36px rgba(9, 25, 54, 0.05);
	color: var(--navy);
	text-decoration: none;
}

.guide-card:hover,
.guide-card:focus {
	border-color: rgba(21, 148, 71, 0.34);
	box-shadow: 0 22px 44px rgba(21, 148, 71, 0.12);
	color: var(--navy);
	text-decoration: none;
}

.guide-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	font-size: 20px;
}

.guide-card-kicker {
	margin-bottom: 8px;
	color: var(--green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.guide-card strong {
	color: var(--navy);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.guide-card span:last-child {
	margin-top: 12px;
	color: #526275;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55;
}

.guide-card-muted {
	background: #f8fbf9;
	color: #617085;
}

.placeholder-toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1040;
	max-width: calc(100vw - 44px);
	padding: 14px 18px;
	border: 1px solid rgba(21, 148, 71, 0.22);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(9, 25, 54, 0.16);
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.placeholder-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 991.98px) {
	.site-nav {
		padding: 18px 0;
	}

	.brand-logo {
		width: 154px;
	}

	.navbar-collapse {
		margin-top: 18px;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: #ffffff;
		box-shadow: 0 18px 40px rgba(9, 25, 54, 0.08);
	}

	.navbar-light .navbar-nav .nav-link {
		padding-right: 0;
		padding-left: 0;
	}

	.nav-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
		margin-top: 12px;
	}

	.survey-code-page-nav .nav-actions {
		align-items: center;
		flex-direction: row;
		margin-top: 0;
	}

	.hero-section {
		padding-top: 38px;
	}

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

	.product-preview {
		min-height: 450px;
		margin: 48px 0 0;
	}

	.survey-code-page-layout {
		grid-template-columns: 1fr;
	}

	.desktop-preview {
		width: 100%;
	}

	.mobile-preview {
		bottom: 0;
		left: 4%;
		width: 140px;
	}

	.trusted-logos {
		gap: 36px;
	}

	.feature-item {
		min-height: auto;
	}
}

@media (max-width: 767.98px) {
	.container-xl {
		max-width: 100%;
	}

	.hero-section .row,
	.hero-section [class*="col-"] {
		min-width: 0;
	}

	.hero-section .col-lg-5 {
		text-align: center;
	}

	.hero-section h1 {
		width: min(100%, 360px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		font-size: 34px;
		text-align: center;
		overflow-wrap: break-word;
	}

	.hero-copy {
		width: min(100%, 360px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		font-size: 16px;
		line-height: 1.65;
		text-align: center;
	}

	.hero-actions {
		width: min(100%, 360px);
		max-width: 100%;
		flex-direction: column;
		margin-right: auto;
		margin-left: auto;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.survey-code-page-nav .container-xl {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.survey-code-page-nav .nav-actions {
		align-items: stretch;
		flex-direction: column;
		width: 100%;
		margin-left: 0 !important;
	}

	.survey-code-page-nav .nav-actions .btn {
		width: 100%;
	}

	.survey-code-strip-inner {
		align-items: center;
		flex-direction: row;
		justify-content: center;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.survey-code-strip .btn {
		width: auto;
	}

	.survey-code-entry {
		width: min(100%, 360px);
		max-width: 100%;
	}

	.survey-code-row {
		flex-direction: column;
	}

	.survey-code-row .btn {
		width: 100%;
	}

	.hero-proof {
		justify-content: center;
		gap: 12px;
		width: min(100%, 360px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.product-preview {
		width: min(100%, 360px);
		max-width: 100%;
		min-height: 330px;
		margin-right: auto;
		margin-left: auto;
		overflow: hidden;
		border-radius: 18px;
	}

	.survey-code-page-main {
		padding: 38px 0 58px;
	}

	.survey-code-page-card {
		width: min(100%, 360px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
		padding: 24px;
	}

	.survey-code-page-card h1 {
		font-size: 34px;
	}

	.survey-code-page-copy {
		font-size: 16px;
	}

	.desktop-preview {
		right: auto;
		left: 0;
		width: 100%;
	}

	.mobile-preview {
		bottom: 12px;
		left: 16px;
		width: 112px;
	}

	.trusted-logos {
		flex-wrap: wrap;
		gap: 28px;
	}

	.trusted-section .section-kicker,
	.moments-section .section-kicker,
	.pricing-section .section-kicker,
	.feature-item,
	.moment-card,
	.pricing-card {
		width: min(100%, 360px);
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.trusted-section .section-kicker,
	.moments-section .section-kicker,
	.pricing-section .section-kicker {
		width: min(100%, 320px);
		line-height: 1.45;
	}

	.feature-strip,
	.moments-section,
	.pricing-section {
		padding-top: 32px;
		padding-bottom: 42px;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-main {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.doc-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.doc-toc {
		position: static;
		display: flex;
		flex-wrap: wrap;
	}

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

	.guide-card {
		min-height: auto;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 30px;
	}

	.doc-hero h1 {
		font-size: 34px;
	}

	.survey-code-strip-copy {
		gap: 8px;
		font-size: 13px;
	}

	.survey-code-strip-copy i {
		font-size: 14px;
	}

	.nav-code-link {
		font-size: 13px;
		padding: 6px 9px;
	}

	.product-preview {
		min-height: 282px;
	}

	.mobile-preview {
		bottom: 10px;
		left: 14px;
		width: 90px;
	}

	.feature-item {
		gap: 14px;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		font-size: 21px;
	}
}
