/* Smart Stay Gateway premium landing styles — v1.2.0 */

:root {
	--ssg-primary-deep: #0e2f78;
	--ssg-primary: #1e4bb8;
	--ssg-accent: #2f84ff;
	--ssg-accent-soft: #74b6ff;
	--ssg-bg-main: #f4f8fe;
	--ssg-bg-light: #ffffff;
	--ssg-text: #13294f;
	--ssg-text-soft: #4f6790;
	--ssg-line: #d6e3f8;
	--ssg-shadow-soft: 0 16px 40px rgba(14, 47, 120, 0.1);
	--ssg-shadow-card: 0 12px 30px rgba(21, 66, 165, 0.08);
	--ssg-radius-lg: 22px;
	--ssg-radius-md: 16px;
	--ssg-radius-sm: 12px;
	--ssg-gradient-main: linear-gradient(130deg, #123c95 0%, #2f84ff 52%, #74b6ff 100%);
}

/* ==============================
   BASE / RESET
   ============================== */

#ssg-landing-wrapper,
#ssg-landing-wrapper * {
	box-sizing: border-box;
}

#ssg-landing-wrapper {
	font-family: "Inter", sans-serif;
	color: var(--ssg-text);
	background: var(--ssg-bg-main);
	line-height: 1.6;
	overflow-x: hidden;
}

#ssg-landing-wrapper h1,
#ssg-landing-wrapper h2,
#ssg-landing-wrapper h3,
#ssg-landing-wrapper h4 {
	font-family: "Outfit", sans-serif;
	margin: 0;
	letter-spacing: -0.02em;
}

#ssg-landing-wrapper p {
	margin: 0;
}

/* ==============================
   LAYOUT
   ============================== */

/* Mobile: 16px gutters each side */
.ssg-container {
	width: min(1200px, 100% - 32px);
	margin: 0 auto;
}

/* Mobile-first section padding */
.tts-section {
	padding: 52px 0;
	position: relative;
}

/* ==============================
   NAVBAR
   ============================== */

.ssg-navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(214, 227, 248, 0.95);
}

.ssg-nav-inner {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px 12px;
	padding: 10px 0;
}

.ssg-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--ssg-text);
	flex-shrink: 0;
}

.ssg-logo-text {
	font-size: 1rem;
	font-weight: 600;
	white-space: nowrap;
}

.ssg-logo-text strong {
	color: var(--ssg-primary);
}

.ssg-nav-links {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.ssg-nav-links a {
	color: var(--ssg-text);
	font-size: 0.87rem;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	padding: 2px 0;
	white-space: nowrap;
}

.ssg-nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background: var(--ssg-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
}

.ssg-nav-links a:hover::after,
.ssg-nav-links a.is-active::after {
	transform: scaleX(1);
}

/* ==============================
   HERO
   ============================== */

.ssg-hero {
	position: relative;
	padding: 60px 0 52px;
	min-height: 380px;
	display: flex;
	align-items: center;
	background-color: #0b1d3f;
	background-image: var(--ssg-hero-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.ssg-hero-bg,
.ssg-hero-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ssg-hero-bg {
	background:
		radial-gradient(circle at 12% 16%, rgba(116, 182, 255, 0.4), transparent 45%),
		radial-gradient(circle at 88% 14%, rgba(47, 132, 255, 0.26), transparent 46%);
}

/* Mobile: top-down gradient for better readability over bg image */
.ssg-hero-overlay {
	background: linear-gradient(
		180deg,
		rgba(12, 41, 103, 0.9) 0%,
		rgba(12, 41, 103, 0.75) 50%,
		rgba(12, 41, 103, 0.45) 100%
	);
}

.ssg-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 32px;
}

.ssg-hero-copy {
	color: #fff;
}

.ssg-hero-copy h1 {
	font-size: clamp(1.75rem, 4vw + 0.5rem, 3.45rem);
	font-weight: 800;
}

.ssg-hero-sub {
	margin-top: 10px;
	font-size: clamp(1.05rem, 2vw + 0.2rem, 1.65rem);
	font-weight: 500;
}

.ssg-hero-lead {
	margin-top: 12px;
	font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1.05rem);
	color: rgba(255, 255, 255, 0.9);
	max-width: 480px;
}

.ssg-hero-divider {
	display: block;
	width: 48px;
	height: 3px;
	border-radius: 99px;
	margin-top: 12px;
	background: linear-gradient(90deg, #6db5ff 0%, #2f84ff 100%);
}

.ssg-hero-ctas {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

/* ==============================
   BUTTONS
   ============================== */

.ssg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 11px;
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.ssg-btn-primary {
	background: var(--ssg-gradient-main);
	color: #fff;
	box-shadow: 0 10px 24px rgba(47, 132, 255, 0.36);
}

.ssg-btn-primary:hover {
	transform: translateY(-2px);
}

.ssg-btn-ghost {
	background: rgba(255, 255, 255, 0.94);
	color: var(--ssg-primary-deep);
	border: 1px solid rgba(255, 255, 255, 0.9);
}

.ssg-btn-ghost:hover {
	background: #fff;
	transform: translateY(-2px);
}

/* ==============================
   AI SECTION
   ============================== */

.tts-ai {
	background: linear-gradient(180deg, #f7faff 0%, #eff5ff 100%);
}

.tts-section-head {
	text-align: center;
	margin-bottom: 24px;
}

.tts-section-head h2,
.tts-title-lined h2,
.tts-why-copy h2,
.tts-final-inner h2 {
	font-size: clamp(1.55rem, 2.5vw + 0.5rem, 2.55rem);
	font-weight: 800;
	color: var(--ssg-primary-deep);
}

.tts-section-sub {
	margin-top: 8px;
	font-size: clamp(0.9rem, 1.2vw + 0.2rem, 1.05rem);
	color: var(--ssg-text-soft);
}

/* Mobile: 1 column */
.tts-ai-strip {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid #e2ecfb;
	border-radius: var(--ssg-radius-md);
	box-shadow: var(--ssg-shadow-card);
}

.tts-ai-strip-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e9f1ff;
	font-size: 0.91rem;
	font-weight: 600;
	color: var(--ssg-text);
}

.tts-icon-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #2a6ded 0%, #54a1ff 100%);
	color: #fff;
	flex-shrink: 0;
}

/* Mobile: single column */
.tts-ai-body {
	margin-top: 28px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
}

.tts-ai-copy p {
	font-size: 0.97rem;
	color: var(--ssg-text-soft);
	max-width: 650px;
}

.tts-ai-copy p + p {
	margin-top: 12px;
}

.tts-ai-copy-strong {
	margin-top: 16px !important;
	color: var(--ssg-primary-deep) !important;
	font-weight: 600;
}

.tts-ai-mock-wrap {
	position: relative;
	display: flex;
	justify-content: center;
}

.tts-ai-glow {
	position: absolute;
	inset: 30px 0 0 0;
	background: radial-gradient(circle, rgba(47, 132, 255, 0.26), rgba(47, 132, 255, 0));
	filter: blur(5px);
}

/* Phone mock — mobile size */
.tts-phone-mock {
	position: relative;
	width: 230px;
	background: #0f2a63;
	border-radius: 34px;
	padding: 14px 10px;
	border: 4px solid #183b83;
	box-shadow: var(--ssg-shadow-soft);
}

.tts-phone-notch {
	width: 80px;
	height: 8px;
	background: #203f7d;
	border-radius: 99px;
	margin: 0 auto 10px;
}

.tts-phone-screen {
	border-radius: 24px;
	background: linear-gradient(180deg, #f4f9ff 0%, #dfecff 100%);
	padding: 14px 14px 20px;
}

.tts-phone-brand {
	font-size: 0.76rem;
	font-weight: 700;
	color: #285bb8;
	text-align: center;
}

.tts-gauge {
	width: 130px;
	height: 130px;
	margin: 14px auto 12px;
	position: relative;
}

.tts-gauge-svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.tts-gauge-track {
	stroke: #d2e3ff;
}

.tts-gauge-fill {
	stroke: #2f84ff;
	stroke-linecap: round;
}

.tts-gauge-label {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tts-gauge-num {
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--ssg-primary-deep);
	line-height: 1;
}

.tts-gauge-cap {
	margin-top: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #5575b0;
}

.tts-phone-foot {
	text-align: center;
	font-size: 0.74rem;
	color: #496798;
	font-weight: 600;
}

/* ==============================
   SECTION HEADING WITH LINES
   ============================== */

/* Mobile: no lines, centered */
.tts-title-lined {
	display: grid;
	grid-template-columns: 1fr;
	text-align: center;
	gap: 10px;
	margin-bottom: 24px;
}

.tts-title-line {
	display: none;
	height: 1px;
	background: linear-gradient(90deg, rgba(26, 84, 184, 0), rgba(26, 84, 184, 0.34), rgba(26, 84, 184, 0));
}

/* ==============================
   HOSPITALITY CARDS
   ============================== */

.tts-hospitality {
	background: #f8fbff;
}

/* Mobile: 1 column */
.tts-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.tts-card {
	background: var(--ssg-bg-light);
	border: 1px solid #e4edfb;
	border-radius: var(--ssg-radius-md);
	padding: 22px 18px;
	box-shadow: var(--ssg-shadow-card);
}

.tts-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(145deg, #2a6ded 0%, #55a4ff 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.tts-card h3 {
	margin-top: 12px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ssg-primary-deep);
}

.tts-card ul {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--ssg-text-soft);
}

.tts-card li {
	margin-bottom: 7px;
	font-size: 0.93rem;
}

/* Mobile: 1 column */
.tts-extra-row {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.tts-card--wide p {
	margin-top: 10px;
	font-size: 0.93rem;
	color: var(--ssg-text-soft);
}

/* ==============================
   BUSINESS VALUE
   ============================== */

.tts-value {
	background: #f2f7ff;
}

/* Mobile: 2 columns (these are small stat cards) */
.tts-value-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.tts-value-item {
	background: #fff;
	border: 1px solid #deebff;
	border-radius: 14px;
	padding: 18px 12px;
	text-align: center;
	box-shadow: var(--ssg-shadow-card);
}

.tts-value-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--ssg-gradient-main);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.tts-value-item h3 {
	margin-top: 10px;
	font-size: 0.96rem;
	color: var(--ssg-primary-deep);
}

.tts-value-item p {
	margin-top: 6px;
	font-size: 0.87rem;
	color: var(--ssg-text-soft);
}

/* ==============================
   WHY SECTION
   ============================== */

.tts-why {
	background: #edf4ff;
	overflow: hidden;
}

.tts-why-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 12% 50%, rgba(47, 132, 255, 0.2), transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(116, 182, 255, 0.2), transparent 44%);
}

/* Mobile: 1 column — phones stack below text */
.tts-why-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 36px;
}

.tts-why-sub {
	margin-top: 10px;
	font-size: clamp(1rem, 1.5vw + 0.2rem, 1.16rem);
	font-weight: 600;
	color: #274e96;
}

.tts-why-lead {
	margin-top: 10px;
	font-size: 0.97rem;
	color: #45679e;
}

.tts-why-body {
	margin-top: 10px;
	font-size: 0.93rem;
	color: #5674a6;
	max-width: 610px;
}

.tts-checklist {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.tts-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ssg-primary-deep);
}

.tts-check {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #dcebff;
	color: #2f84ff;
	flex-shrink: 0;
}

/* ==============================
   PHONE STACK — MOBILE BASE
   (0 – 479px)
   ============================== */

.tts-why-phones {
	display: flex;
	justify-content: center;
}

.tts-phone-stack {
	position: relative;
	height: 258px;
	width: min(248px, 100%);
}

.tts-mini-phone {
	position: absolute;
	width: 108px;
	height: 225px;
	border-radius: 24px;
	background: linear-gradient(180deg, #152a53 0%, #0a1732 100%);
	border: 1px solid #284885;
	box-shadow: var(--ssg-shadow-soft);
	padding: 10px;
	color: #dce9ff;
}

.tts-mini-phone--back {
	left: 0px;
	top: 18px;
	transform: rotate(-8deg);
}

.tts-mini-phone--mid {
	left: 68px;
	top: 5px;
	z-index: 2;
}

.tts-mini-phone--front {
	left: 134px;
	top: 22px;
	transform: rotate(8deg);
}

.tts-mini-bar {
	width: 54px;
	height: 6px;
	border-radius: 99px;
	margin: 0 auto;
	background: #2a4b88;
}

.tts-mini-ui {
	margin-top: 12px;
}

.tts-mini-title {
	font-size: 0.68rem;
	font-weight: 700;
	color: #7fb3ff;
}

.tts-mini-row {
	height: 10px;
	border-radius: 999px;
	margin-top: 8px;
	background: #23447d;
}

.tts-mini-row--short {
	width: 70%;
}

.tts-mini-chip {
	margin-top: 10px;
	width: 74%;
	height: 22px;
	border-radius: 7px;
	background: #2f84ff;
}

.tts-mini-qr {
	margin: 22px auto 8px;
	width: 78px;
	height: 78px;
	padding: 6px;
	border-radius: 9px;
	background: #e8f1ff;
}

.tts-qr-grid {
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(90deg, #173f7d 25%, transparent 25%, transparent 50%, #173f7d 50%, #173f7d 75%, transparent 75%),
		linear-gradient(#173f7d 25%, transparent 25%, transparent 50%, #173f7d 50%, #173f7d 75%, transparent 75%);
	background-size: 16px 16px;
}

.tts-mini-caption {
	display: block;
	text-align: center;
	font-size: 0.66rem;
	font-weight: 600;
	color: #9cc0ff;
}

.tts-mini-pill {
	margin-top: 8px;
	height: 22px;
	border-radius: 999px;
	background: #23447d;
}

.tts-mini-pill--accent {
	background: #2f84ff;
}

/* ==============================
   FINAL CTA
   ============================== */

.tts-final-cta {
	padding-top: 48px;
	padding-bottom: 64px;
}

.tts-final-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	border-radius: 16px;
	padding: 36px 20px;
	background: var(--ssg-gradient-main);
	box-shadow: var(--ssg-shadow-soft);
	overflow: hidden;
}

.tts-cta-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(circle at 16% 15%, rgba(255, 255, 255, 0.26), transparent 35%),
		radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.2), transparent 36%);
}

.tts-final-inner h2 {
	position: relative;
	z-index: 1;
	color: #fff;
}

.tts-cta-pill {
	position: relative;
	z-index: 1;
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 52px;
	padding: 0 28px;
	border-radius: 14px;
	background: #fff;
	color: var(--ssg-primary-deep);
	text-decoration: none;
	font-family: "Outfit", sans-serif;
	font-size: 1.55rem;
	font-weight: 700;
	box-shadow: 0 14px 25px rgba(11, 41, 106, 0.22);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tts-cta-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 32px rgba(11, 41, 106, 0.28);
}

/* ==============================
   FOOTER
   ============================== */

.tts-footer {
	padding: 24px 0 32px;
	background: #fff;
	border-top: 1px solid #e4edfb;
}

/* Mobile: stacked centered */
.tts-footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.tts-footer-brand {
	font-family: "Outfit", sans-serif;
	font-size: 1.04rem;
	color: var(--ssg-primary-deep);
}

.tts-footer-brand strong {
	color: var(--ssg-primary);
}

.tts-footer-copy {
	font-size: 0.87rem;
	color: var(--ssg-text-soft);
}

/* ==============================
   REVEAL ANIMATION
   ============================== */

.ssg-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.ssg-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ======================================================
   RESPONSIVE — min-width (mobile-first)
   ====================================================== */

/* ----------------------------------------
   480px — Large mobile / small landscape
   ---------------------------------------- */
@media (min-width: 480px) {
	/* Phone stack — 80% of full size */
	.tts-phone-stack {
		height: 294px;
		width: min(310px, 100%);
	}

	.tts-mini-phone {
		width: 122px;
		height: 254px;
	}

	.tts-mini-phone--back  { left: 0px;   top: 20px; }
	.tts-mini-phone--mid   { left: 76px;  top: 6px;  }
	.tts-mini-phone--front { left: 150px; top: 24px; }

	.tts-mini-qr {
		width: 82px;
		height: 82px;
		margin-top: 24px;
	}

	.tts-mini-bar {
		width: 60px;
	}
}

/* ----------------------------------------
   640px — Tablet / large mobile landscape
   ---------------------------------------- */
@media (min-width: 640px) {
	/* Wider container gutters */
	.ssg-container {
		width: min(1200px, 100% - 48px);
	}

	.tts-section {
		padding: 64px 0;
	}

	/* Navbar — single row, no wrap */
	.ssg-nav-inner {
		min-height: 70px;
		padding: 0;
		flex-wrap: nowrap;
	}

	.ssg-nav-links {
		gap: 20px;
		flex-wrap: nowrap;
	}

	.ssg-nav-links a {
		font-size: 0.91rem;
	}

	/* Hero */
	.ssg-hero {
		padding: 72px 0 60px;
		min-height: 440px;
	}

	/* Restore horizontal overlay for larger screens */
	.ssg-hero-overlay {
		background: linear-gradient(
			90deg,
			rgba(12, 41, 103, 0.84) 0%,
			rgba(12, 41, 103, 0.64) 37%,
			rgba(12, 41, 103, 0.24) 68%,
			rgba(12, 41, 103, 0.08) 100%
		);
	}

	/* Section heads */
	.tts-section-head {
		margin-bottom: 28px;
	}

	.tts-title-lined {
		grid-template-columns: 1fr auto 1fr;
		text-align: left;
		gap: 16px;
		margin-bottom: 28px;
	}

	.tts-title-line {
		display: block;
	}

	/* AI strip — 3 columns */
	.tts-ai-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 14px;
		gap: 12px;
	}

	.tts-icon-circle {
		width: 38px;
		height: 38px;
	}

	.tts-ai-strip-item {
		font-size: 0.93rem;
	}

	/* Hospitality cards — 2 columns */
	.tts-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	/* Extra row — 2 columns */
	.tts-extra-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		margin-top: 18px;
	}

	/* Phone stack — 91% of full size */
	.tts-phone-stack {
		height: 330px;
		width: min(370px, 100%);
	}

	.tts-mini-phone {
		width: 136px;
		height: 284px;
	}

	.tts-mini-phone--back  { left: 14px;  top: 22px; }
	.tts-mini-phone--mid   { left: 106px; top: 7px;  }
	.tts-mini-phone--front { left: 198px; top: 26px; }

	.tts-mini-bar {
		width: 60px;
		height: 7px;
	}

	.tts-mini-qr {
		width: 88px;
		height: 88px;
		margin: 26px auto 8px;
	}

	.tts-mini-chip {
		height: 24px;
	}

	.tts-mini-pill {
		height: 24px;
		margin-top: 10px;
	}

	/* Final CTA */
	.tts-final-cta {
		padding-top: 52px;
		padding-bottom: 72px;
	}

	.tts-final-inner {
		padding: 44px 32px;
		border-radius: 18px;
	}

	.tts-cta-pill {
		height: 56px;
		font-size: 1.7rem;
		min-width: 230px;
	}

	/* Footer — horizontal row */
	.tts-footer-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
		gap: 10px 16px;
		flex-wrap: wrap;
		align-items: center;
	}
}

/* ----------------------------------------
   768px — Tablet portrait
   ---------------------------------------- */
@media (min-width: 768px) {
	/* AI body — 2 columns on tablet */
	.tts-ai-body {
		grid-template-columns: 1fr minmax(240px, 360px);
		gap: 28px;
	}

	/* Restore full phone mock size */
	.tts-phone-mock {
		width: 260px;
	}

	.tts-gauge {
		width: 150px;
		height: 150px;
		margin: 18px auto 14px;
	}

	.tts-gauge-num {
		font-size: 2.1rem;
	}

	.tts-phone-notch {
		width: 96px;
		height: 9px;
	}

	/* Value row — keep 2-col, add more gap */
	.tts-value-row {
		gap: 14px;
	}

	.tts-value-icon {
		width: 54px;
		height: 54px;
	}

	.tts-value-item h3 {
		font-size: 1rem;
	}

	.tts-value-item p {
		font-size: 0.89rem;
	}

	.tts-card {
		padding: 24px 20px;
	}

	.tts-card h3 {
		font-size: 1.2rem;
	}
}

/* ----------------------------------------
   992px — Laptop / small desktop
   ---------------------------------------- */
@media (min-width: 992px) {
	.ssg-nav-inner {
		min-height: 78px;
	}

	.ssg-nav-links {
		gap: 32px;
	}

	.ssg-nav-links a {
		font-size: 0.93rem;
	}

	.ssg-logo-text {
		font-size: 1.1rem;
	}

	.tts-section {
		padding: 80px 0;
	}

	.ssg-hero {
		padding: 100px 0 88px;
		min-height: 520px;
	}

	.ssg-hero-copy {
		max-width: 620px;
	}

	/* Section heads */
	.tts-section-head {
		margin-bottom: 30px;
	}

	.tts-title-lined {
		margin-bottom: 30px;
	}

	/* AI strip */
	.tts-ai-strip-item {
		font-size: 0.93rem;
	}

	/* AI body — wider second column */
	.tts-ai-body {
		grid-template-columns: 1fr minmax(280px, 420px);
	}

	.tts-ai-copy p {
		font-size: 1.02rem;
	}

	/* Hospitality cards — 3 columns */
	.tts-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tts-card-icon {
		width: 46px;
		height: 46px;
	}

	.tts-card h3 {
		font-size: 1.24rem;
	}

	/* Business value — 4 columns */
	.tts-value-row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.tts-value-item {
		padding: 20px 16px;
	}

	.tts-value-icon {
		width: 58px;
		height: 58px;
	}

	.tts-value-item h3 {
		font-size: 1.04rem;
	}

	.tts-value-item p {
		font-size: 0.9rem;
	}

	/* Why grid — 2 columns */
	.tts-why-grid {
		grid-template-columns: 1fr minmax(280px, 440px);
		gap: 24px;
	}

	/* Phone stack — full size */
	.tts-phone-stack {
		height: 360px;
		width: min(420px, 100%);
	}

	.tts-mini-phone {
		width: 150px;
		height: 312px;
	}

	.tts-mini-phone--back  { left: 20px;  top: 24px; }
	.tts-mini-phone--mid   { left: 124px; top: 8px;  }
	.tts-mini-phone--front { left: 230px; top: 28px; }

	.tts-mini-bar {
		width: 62px;
		height: 7px;
	}

	.tts-mini-qr {
		width: 96px;
		height: 96px;
		margin: 30px auto 10px;
	}

	.tts-qr-grid {
		background-size: 18px 18px;
	}

	.tts-mini-chip {
		height: 26px;
		border-radius: 8px;
		margin-top: 12px;
	}

	.tts-mini-pill {
		height: 26px;
		margin-top: 12px;
	}

	.tts-mini-title {
		font-size: 0.75rem;
	}

	.tts-mini-caption {
		font-size: 0.72rem;
	}
}

/* ----------------------------------------
   1200px — Large desktop
   ---------------------------------------- */
@media (min-width: 1200px) {
	.tts-section {
		padding: 88px 0;
	}

	.ssg-hero {
		padding: 112px 0 96px;
		min-height: 560px;
	}

	.tts-final-cta {
		padding-top: 56px;
		padding-bottom: 76px;
	}

	.tts-final-inner {
		padding: 48px 40px;
		border-radius: 20px;
	}

	.tts-cta-pill {
		height: 58px;
		font-size: 1.8rem;
		min-width: 250px;
	}

	.tts-footer {
		padding: 30px 0 36px;
	}
}

/* ----------------------------------------
   1440px — XL / 2K displays
   ---------------------------------------- */
@media (min-width: 1440px) {
	.ssg-container {
		width: min(1320px, 100% - 80px);
	}

	.tts-section {
		padding: 96px 0;
	}

	.ssg-hero {
		padding: 120px 0 100px;
		min-height: 600px;
	}

	.tts-final-inner {
		border-radius: 22px;
	}

	.tts-cta-pill {
		height: 62px;
		font-size: 1.85rem;
		min-width: 270px;
	}

	/* Phone stack — give it room to breathe */
	.tts-why-grid {
		gap: 48px;
	}

	.tts-ai-body {
		gap: 48px;
	}
}

/* ----------------------------------------
   1920px — Full HD / ultrawide
   ---------------------------------------- */
@media (min-width: 1920px) {
	.ssg-container {
		width: min(1440px, 100% - 120px);
	}

	.tts-section {
		padding: 108px 0;
	}

	.ssg-hero {
		padding: 130px 0 110px;
		min-height: 660px;
	}

	.tts-final-inner {
		border-radius: 24px;
		padding: 56px 60px;
	}

	.tts-cta-pill {
		height: 66px;
		font-size: 2rem;
		min-width: 300px;
	}
}
