/* ==========================================================================
   SupportGroups.com - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset & Custom Properties
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--sg-blue-dark: #1a4a6b;
	--sg-blue-mid: #2a7ab8;
	--sg-blue-light: #5ba4d4;
	--sg-blue-pale: #e8f4fc;
	--sg-teal: #2a9d8f;
	--sg-teal-light: #e0f5f3;
	--sg-green: #52b788;
	--sg-white: #fff;
	--sg-off-white: #f7fbfd;
	--sg-gray-100: #f0f4f8;
	--sg-gray-300: #c5d5e8;
	--sg-gray-500: #7a93ab;
	--sg-gray-700: #4a5f72;
	--sg-gray-900: #1e2d3d;
	--sg-radius-sm: 8px;
	--sg-radius-md: 14px;
	--sg-shadow-sm: 0 2px 8px rgba(26, 74, 107, 0.08);
	--sg-shadow-md: 0 6px 24px rgba(26, 74, 107, 0.12);
	--sg-shadow-lg: 0 16px 48px rgba(26, 74, 107, 0.16);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	color: var(--sg-gray-900);
	background: var(--sg-white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3 {
	line-height: 1.25;
	font-weight: 700;
	color: var(--sg-blue-dark);
}

h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
	font-size: clamp(1.05rem, 2vw, 1.3rem);
}

p {
	color: var(--sg-gray-700);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.sg-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

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

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.sg-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(24, 216, 144);
	padding: 0 24px;
}

.sg-nav__inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.sg-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.sg-logo__img {
	display: block;
	height: 45px;
	width: auto;
}

.sg-nav__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sg-blue-dark);
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: var(--sg-radius-sm);
	font-weight: 600;
	font-size: 0.9rem;
	transition: background 0.2s;
}

.sg-nav__cta:hover {
	background: var(--sg-gray-900);
}

.sg-nav__cta svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

.sg-nav__cta-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sg-sponsored-info--nav {
	color: rgba(255, 255, 255, 0.7);
}

.sg-sponsored-info--nav:hover {
	color: #fff;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.sg-hero {
	background: linear-gradient(160deg, #1a4a6b 0%, #1f5a8a 40%, #1a7a7a 100%);
	color: #fff;
	padding: 100px 24px 90px;
	position: relative;
	overflow: hidden;
}

.sg-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(91, 164, 212, 0.18) 0%, transparent 55%),
		radial-gradient(ellipse at 20% 80%, rgba(42, 157, 143, 0.18) 0%, transparent 55%);
}

.sg-hero__inner {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.sg-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.9);
	padding: 6px 14px;
	border-radius: 100px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.sg-badge__dot {
	width: 7px;
	height: 7px;
	background: #7ee8b8;
	border-radius: 50%;
	animation: sg-pulse 2s infinite;
}

@keyframes sg-pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.sg-hero h1 {
	color: #fff;
	margin-bottom: 20px;
}

.sg-hero h1 em {
	font-style: normal;
	color: #7ee8b8;
}

.sg-hero__subtitle {
	font-size: 1.12rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 520px;
}

.sg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.sg-btn--primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--sg-blue-dark);
	padding: 14px 28px;
	border-radius: var(--sg-radius-sm);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	box-shadow: var(--sg-shadow-md);
	transition: transform 0.2s, box-shadow 0.2s;
}

.sg-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--sg-shadow-lg);
}

.sg-btn--primary svg {
	width: 18px;
	height: 18px;
	fill: var(--sg-blue-dark);
}


.sg-btn--outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	padding: 13px 24px;
	border-radius: var(--sg-radius-sm);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}

.sg-btn--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

/* Hero Visual Cards */
.sg-hero__visuals {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sg-hero-card {
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--sg-radius-md);
	padding: 18px 22px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.sg-hero-card__icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sg-hero-card__icon svg {
	width: 22px;
	height: 22px;
}

.sg-hero-card__icon--blue {
	background: rgba(91, 164, 212, 0.28);
}

.sg-hero-card__icon--teal {
	background: rgba(42, 157, 143, 0.28);
}

.sg-hero-card__icon--green {
	background: rgba(82, 183, 136, 0.28);
}

.sg-hero-card__content strong {
	display: block;
	color: #fff;
	font-size: 0.95rem;
	margin-bottom: 2px;
}

.sg-hero-card__content span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.82rem;
}

/* Hero Stats Row */
.sg-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--sg-radius-md);
	overflow: hidden;
}

.sg-hero-stat {
	padding: 16px;
	text-align: center;
}

.sg-hero-stat strong {
	display: block;
	font-size: 1.5rem;
	color: #fff;
	font-weight: 800;
}

.sg-hero-stat span {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.sg-section-label {
	display: inline-block;
	background: var(--sg-teal-light);
	color: var(--sg-teal);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 100px;
	margin-bottom: 14px;
}

.sg-section-header {
	margin-bottom: 52px;
}

.sg-section-header h2 {
	margin-bottom: 12px;
}

.sg-section-header p {
	font-size: 1.05rem;
	max-width: 560px;
}

/* --------------------------------------------------------------------------
   Support Areas (Offers) Section
   -------------------------------------------------------------------------- */
.sg-offers {
	background: var(--sg-off-white);
}

.sg-offers__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
}

.sg-offer-card {
	background: #fff;
	border: 1px solid var(--sg-gray-300);
	border-radius: var(--sg-radius-md);
	padding: 30px 26px;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	overflow: hidden;
}

.sg-offer-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sg-blue-mid), var(--sg-teal));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.sg-offer-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sg-shadow-md);
}

.sg-offer-card:hover::after {
	transform: scaleX(1);
}

.sg-offer-card__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--sg-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.sg-offer-card__icon svg {
	width: 26px;
	height: 26px;
}

.sg-offer-card__icon--blue {
	background: var(--sg-blue-pale);
}

.sg-offer-card__icon--teal {
	background: var(--sg-teal-light);
}

.sg-offer-card__icon--green {
	background: #edf7f1;
}

.sg-offer-card__icon--warm {
	background: #fff4ec;
}

.sg-offer-card__icon--purple {
	background: #f2eeff;
}

.sg-offer-card__icon--gold {
	background: #f5f0e6;
}

.sg-offer-card h3 {
	margin-bottom: 8px;
}

.sg-offer-card p {
	font-size: 0.91rem;
	line-height: 1.6;
}

.sg-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}

.sg-tag {
	display: inline-block;
	background: var(--sg-gray-100);
	color: var(--sg-gray-700);
	font-size: 0.73rem;
	padding: 3px 10px;
	border-radius: 100px;
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.sg-how {
	background: #fff;
}

.sg-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	position: relative;
	margin-top: 10px;
}

.sg-steps::before {
	content: "";
	position: absolute;
	top: 40px;
	left: calc(16.66% + 24px);
	right: calc(16.66% + 24px);
	height: 2px;
	background: linear-gradient(90deg, var(--sg-blue-light), var(--sg-teal));
}

.sg-step {
	text-align: center;
	padding: 0 24px;
	position: relative;
}

.sg-step__number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	position: relative;
	z-index: 1;
}

.sg-step__number svg {
	width: 36px;
	height: 36px;
}

.sg-step__number--1 {
	background: linear-gradient(135deg, var(--sg-blue-pale), #d0e8f8);
	border: 2px solid var(--sg-blue-light);
}

.sg-step__number--2 {
	background: linear-gradient(135deg, var(--sg-teal-light), #c0ede9);
	border: 2px solid var(--sg-teal);
}

.sg-step__number--3 {
	background: linear-gradient(135deg, #edf7f1, #cde9d8);
	border: 2px solid var(--sg-green);
}

.sg-step__label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--sg-teal);
	margin-bottom: 8px;
}

.sg-step h3 {
	margin-bottom: 10px;
}

.sg-step p {
	font-size: 0.91rem;
}

/* --------------------------------------------------------------------------
   Benefits Section
   -------------------------------------------------------------------------- */
.sg-benefits {
	background: linear-gradient(160deg, #1a4a6b 0%, #1d5a82 55%, #1a7070 100%);
}

.sg-benefits .sg-section-label {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.85);
}

.sg-benefits h2 {
	color: #fff;
}

.sg-benefits .sg-section-header p {
	color: rgba(255, 255, 255, 0.68);
}

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

.sg-benefit-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--sg-radius-md);
	padding: 26px 22px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	transition: background 0.2s;
}

.sg-benefit-card:hover {
	background: rgba(255, 255, 255, 0.13);
}

.sg-benefit-card__icon {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sg-benefit-card__icon svg {
	width: 22px;
	height: 22px;
	fill: #fff;
}

.sg-benefit-card h3 {
	color: #fff;
	margin-bottom: 5px;
	font-size: 1rem;
}

.sg-benefit-card p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.87rem;
}

/* --------------------------------------------------------------------------
   Helpline Section
   -------------------------------------------------------------------------- */
.sg-helpline {
	background: var(--sg-teal-light);
	padding: 80px 24px;
}

.sg-helpline__inner {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.sg-helpline__text h2 {
	color: var(--sg-blue-dark);
	margin-bottom: 14px;
}

.sg-helpline__text p {
	margin-bottom: 28px;
	font-size: 1rem;
}

.sg-helpline__phone {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--sg-gray-300);
	border-radius: var(--sg-radius-md);
	padding: 20px 22px;
	box-shadow: var(--sg-shadow-sm);
}

.sg-helpline__phone-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--sg-teal), var(--sg-blue-mid));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sg-helpline__phone-icon svg {
	width: 26px;
	height: 26px;
	fill: #fff;
}

.sg-helpline__phone-details strong {
	display: block;
	font-size: 1.45rem;
	color: var(--sg-blue-dark);
	font-weight: 800;
	letter-spacing: -0.5px;
}

.sg-helpline__phone-details strong a {
	color: inherit;
	text-decoration: none;
}

.sg-helpline__phone-details span {
	font-size: 0.79rem;
	color: var(--sg-gray-500);
}

.sg-helpline__resources {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sg-resource-card {
	background: #fff;
	border: 1px solid var(--sg-gray-300);
	border-radius: var(--sg-radius-md);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: var(--sg-shadow-sm);
}

.sg-resource-card__dot {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
	border-radius: 50%;
}

.sg-resource-card__dot--blue {
	background: var(--sg-blue-mid);
}

.sg-resource-card__dot--teal {
	background: var(--sg-teal);
}

.sg-resource-card__dot--green {
	background: var(--sg-green);
}

.sg-resource-card strong {
	display: block;
	font-size: 0.88rem;
	color: var(--sg-gray-900);
	margin-bottom: 2px;
}

.sg-resource-card span {
	font-size: 0.78rem;
	color: var(--sg-gray-500);
}

/* --------------------------------------------------------------------------
   Quote Strip
   -------------------------------------------------------------------------- */
.sg-quote-strip {
	background: #fff;
	padding: 60px 24px;
	text-align: center;
	border-top: 1px solid var(--sg-gray-100);
	border-bottom: 1px solid var(--sg-gray-100);
}

.sg-quote-strip blockquote {
	font-size: clamp(1.1rem, 2.5vw, 1.45rem);
	font-weight: 600;
	color: var(--sg-blue-dark);
	max-width: 780px;
	margin: 0 auto 16px;
	line-height: 1.55;
	font-style: italic;
}

.sg-quote-strip p {
	max-width: 580px;
	margin: 0 auto;
	font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.sg-footer {
	background: var(--sg-gray-900);
	color: rgba(255, 255, 255, 0.45);
	padding: 40px 24px;
}

.sg-footer__inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
}

.sg-footer__logo {
	display: flex;
	align-items: center;
}

.sg-footer__logo-img {
	display: block;
	height: 65px;
	width: auto;
}

.sg-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
}

.sg-footer__links a {
	color: rgba(255, 255, 255, 0.42);
	text-decoration: none;
	font-size: 0.83rem;
	transition: color 0.2s;
}

.sg-footer__links a:hover {
	color: rgba(255, 255, 255, 0.78);
}

.sg-footer__copy {
	font-size: 0.79rem;
}

/* --------------------------------------------------------------------------
   Sponsored Info Button & Modal
   -------------------------------------------------------------------------- */
.sg-sponsored-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	padding: 4px;
	border-radius: 50%;
	transition: color 0.2s;
}

.sg-sponsored-info:hover {
	color: #fff;
}

.sg-sponsored-info--dark {
	color: var(--sg-gray-500);
	vertical-align: middle;
	margin-left: 4px;
}

.sg-sponsored-info--dark:hover {
	color: var(--sg-gray-900);
}

.sg-sponsored-info--footer {
	color: rgba(255, 255, 255, 0.42);
	vertical-align: middle;
	margin-left: 2px;
}

.sg-sponsored-info--footer:hover {
	color: rgba(255, 255, 255, 0.78);
}

.sg-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.sg-modal[aria-hidden="false"] {
	display: flex;
}

.sg-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.sg-modal__dialog {
	position: relative;
	background: #fff;
	border-radius: var(--sg-radius-md);
	padding: 32px 36px;
	max-width: 480px;
	width: calc(100% - 48px);
	box-shadow: var(--sg-shadow-lg);
}

.sg-modal__dialog p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--sg-gray-900);
	margin-bottom: 16px;
}

.sg-modal__dialog p:last-of-type {
	margin-bottom: 0;
}

.sg-modal__dialog a {
	color: var(--sg-blue-mid);
	text-decoration: underline;
}

.sg-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: var(--sg-gray-100);
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--sg-gray-700);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.sg-modal__close:hover {
	background: var(--sg-gray-300);
}

/* --------------------------------------------------------------------------
   Content Pages (Privacy Policy, Terms of Use, etc.)
   -------------------------------------------------------------------------- */
.sg-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 24px 80px;
}

.sg-content h1 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin-bottom: 32px;
	color: var(--sg-blue-dark);
}

.sg-content h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-top: 48px;
	margin-bottom: 20px;
	color: var(--sg-blue-dark);
}

.sg-content h3 {
	font-size: clamp(1.15rem, 2.5vw, 1.5rem);
	margin-top: 40px;
	margin-bottom: 16px;
	color: var(--sg-blue-dark);
}

.sg-content h4 {
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
	margin-top: 32px;
	margin-bottom: 12px;
	color: var(--sg-gray-900);
	line-height: 1.3;
}

.sg-content p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--sg-gray-700);
	margin-bottom: 20px;
}

.sg-content ul,
.sg-content ol {
	margin: 16px 0 24px 24px;
	padding-left: 0;
	color: var(--sg-gray-700);
}

.sg-content ul {
	list-style-type: disc;
}

.sg-content ol {
	list-style-type: decimal;
}

.sg-content li {
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 10px;
	padding-left: 4px;
}

.sg-content li strong {
	color: var(--sg-gray-900);
}

.sg-content a {
	color: var(--sg-blue-mid);
	text-decoration: underline;
	text-decoration-color: rgba(42, 122, 184, 0.3);
	text-underline-offset: 2px;
	transition: text-decoration-color 0.2s;
}

.sg-content a:hover {
	text-decoration-color: var(--sg-blue-mid);
}

.sg-content strong {
	font-weight: 700;
	color: var(--sg-gray-900);
}

.sg-content ul ul {
	margin-top: 8px;
	margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Landing Pages (Meetings, Helpline)
   -------------------------------------------------------------------------- */
.sg-landing-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: center / cover no-repeat var(--sg-blue-dark);
	color: #fff;
	padding: 40px 24px;
	position: relative;
	overflow: hidden;
}

.sg-landing-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(26, 74, 107, 0.82) 0%,
		rgba(31, 90, 138, 0.78) 40%,
		rgba(26, 122, 122, 0.82) 100%
	);
}

.sg-landing-hero__inner {
	position: relative;
	max-width: 720px;
}

.sg-landing-hero__title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.2;
}

.sg-landing-hero__subtitle {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.sg-landing-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--sg-teal);
	color: #fff;
	padding: 18px 44px;
	border-radius: var(--sg-radius-sm);
	font-weight: 800;
	font-size: 1.4rem;
	text-decoration: none;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.sg-landing-hero__cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
	background: #248a7e;
}

.sg-landing-hero__scroll {
	display: block;
	margin-top: 40px;
	animation: sg-bounce 2s infinite;
}

@keyframes sg-bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.sg-landing-body {
	background: var(--sg-gray-900);
	color: rgba(255, 255, 255, 0.8);
	padding: 60px 24px 80px;
}

.sg-landing-body__inner {
	max-width: 800px;
	margin: 0 auto;
}

.sg-landing-body__inner p {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 20px;
}

.sg-landing-body__inner a {
	color: var(--sg-teal);
	text-decoration: underline;
	text-decoration-color: rgba(42, 157, 143, 0.4);
}

.sg-landing-body__inner a:hover {
	text-decoration-color: var(--sg-teal);
}

.sg-landing-footer {
	background: var(--sg-gray-900);
	padding: 24px;
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.4);
}

.sg-landing-footer__inner {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 8px;
}

.sg-landing-footer__inner a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.2s;
}

.sg-landing-footer__inner a:hover {
	color: rgba(255, 255, 255, 0.7);
}

.sg-landing-footer__copy {
	font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	.sg-hero__inner {
		grid-template-columns: 1fr;
	}

	.sg-hero__visuals {
		display: none;
	}

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

	.sg-steps::before {
		display: none;
	}

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

@media (max-width: 600px) {
	.sg-section {
		padding: 60px 0;
	}

	.sg-hero {
		padding: 70px 20px 60px;
	}
}
