/* Radvand Project Showcase — scoped styles */
.rps-project {
	--rps-primary: #02539c;
	--rps-accent: #6ec1e4;
	--rps-ink: #0d1b2a;
	--rps-body: #4b5a6a;
	--rps-soft: #f4f8fb;
	--rps-line: #dbe7ef;
	--rps-white: #ffffff;
	--rps-radius-lg: 30px;
	--rps-radius-md: 20px;
	--rps-shadow: 0 24px 70px rgba(4, 52, 91, 0.12);
	position: relative;
	overflow: hidden;
	background: var(--rps-white);
	color: var(--rps-body);
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

.rps-project *,
.rps-project *::before,
.rps-project *::after {
	box-sizing: border-box;
}

.rps-project h1,
.rps-project h2,
.rps-project h3,
.rps-project h4,
.rps-project p,
.rps-project ul,
.rps-project ol,
.rps-project figure {
	margin-top: 0;
}

.rps-project h1,
.rps-project h2,
.rps-project h3,
.rps-project h4 {
	color: var(--rps-ink);
	font-family: "Syne", sans-serif;
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.rps-project img {
	display: block;
	max-width: 100%;
}

.rps-container {
	width: min(100%, 1240px);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 42px);
}

.rps-section {
	padding-block: clamp(80px, 9vw, 138px);
}

.rps-eyebrow,
.rps-mini-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	color: var(--rps-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1.35;
	text-transform: uppercase;
}

.rps-eyebrow::before {
	width: 32px;
	height: 2px;
	background: var(--rps-accent);
	content: "";
}

.rps-eyebrow--light {
	color: #d9f3ff;
}

.rps-section-title {
	max-width: 860px;
	margin-bottom: 24px;
	font-size: clamp(34px, 4.5vw, 62px);
}

.rps-section-lead {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--rps-body);
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.8;
}

.rps-section-heading {
	margin-bottom: clamp(42px, 6vw, 72px);
}

.rps-section-heading--center {
	max-width: 920px;
	margin-inline: auto;
	text-align: center;
}

.rps-section-heading--center .rps-eyebrow {
	justify-content: center;
}

.rps-section-heading--center .rps-section-title,
.rps-section-heading--center .rps-section-lead {
	margin-inline: auto;
}

.rps-richtext > :last-child {
	margin-bottom: 0;
}

.rps-richtext p {
	margin-bottom: 16px;
}

.rps-richtext ul {
	margin: 18px 0 0;
	padding-left: 1.15em;
}

.rps-richtext li {
	margin-bottom: 9px;
}

/* Hero */
.rps-hero {
	position: relative;
	padding-block: clamp(72px, 8vw, 128px);
	background:
		radial-gradient(circle at 14% 10%, rgba(110, 193, 228, 0.27), transparent 28%),
		linear-gradient(135deg, #f5fbff 0%, #ffffff 54%, #eef7fc 100%);
}

.rps-hero::after {
	position: absolute;
	right: -12vw;
	bottom: -20vw;
	width: 48vw;
	height: 48vw;
	border: 1px solid rgba(2, 83, 156, 0.09);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rps-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	gap: clamp(48px, 7vw, 96px);
	align-items: center;
}

.rps-hero__title {
	max-width: 760px;
	margin-bottom: 22px;
	font-size: clamp(46px, 6.2vw, 84px);
}

.rps-hero__subtitle {
	max-width: 680px;
	margin-bottom: 25px;
	color: var(--rps-primary);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 600;
	line-height: 1.45;
}

.rps-hero__description {
	max-width: 720px;
	font-size: 16px;
}

.rps-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 56px;
	margin-top: 30px;
	padding: 14px 22px 14px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.rps-button span:last-child {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	font-size: 17px;
}

.rps-button:hover {
	transform: translateY(-2px);
}

.rps-button--primary {
	background: var(--rps-primary);
	box-shadow: 0 14px 30px rgba(2, 83, 156, 0.23);
	color: #fff;
}

.rps-button--primary span:last-child {
	background: var(--rps-accent);
	color: #063962;
}

.rps-button--light {
	background: #fff;
	color: var(--rps-primary);
}

.rps-button--light span:last-child {
	background: var(--rps-accent);
	color: #063962;
}

.rps-hero__visual {
	position: relative;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	min-height: clamp(500px, 49vw, 690px);
}

.rps-hero__image {
	position: relative;
	overflow: hidden;
	border-radius: var(--rps-radius-lg);
	background: #dcecf5;
	box-shadow: var(--rps-shadow);
}

.rps-hero__image--main {
	grid-row: 1 / 3;
}

.rps-hero__image--secondary {
	border-bottom-right-radius: 8px;
}

.rps-hero__image--detail {
	border-top-right-radius: 8px;
}

.rps-responsive-image,
.rps-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rps-image-placeholder {
	display: grid;
	min-height: 240px;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(2, 83, 156, 0.82), rgba(110, 193, 228, 0.75)),
		linear-gradient(45deg, #d9edf7, #edf8fc);
	color: rgba(255, 255, 255, 0.92);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.rps-hero__badge {
	position: absolute;
	right: -18px;
	bottom: 42px;
	padding: 12px 18px;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(8, 41, 67, 0.18);
	color: var(--rps-primary);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transform: rotate(-90deg) translateX(100%);
	transform-origin: right bottom;
}

/* Facts */
.rps-facts {
	position: relative;
	z-index: 3;
	margin-top: -34px;
}

.rps-facts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid rgba(2, 83, 156, 0.1);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(4, 52, 91, 0.1);
}

.rps-fact {
	position: relative;
	padding: 26px 28px;
}

.rps-fact + .rps-fact::before {
	position: absolute;
	top: 22%;
	bottom: 22%;
	left: 0;
	width: 1px;
	background: var(--rps-line);
	content: "";
}

.rps-fact__label {
	display: block;
	margin-bottom: 6px;
	color: #71808e;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.rps-fact__value {
	display: block;
	color: var(--rps-ink);
	font-family: "Syne", sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
}

/* Reasons */
.rps-reasons {
	padding-top: clamp(110px, 12vw, 170px);
}

.rps-reasons__grid {
	display: grid;
	grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(48px, 8vw, 110px);
	align-items: center;
}

.rps-reasons__media {
	position: relative;
	min-height: 620px;
	overflow: hidden;
	border-radius: var(--rps-radius-lg);
	background: var(--rps-soft);
	box-shadow: var(--rps-shadow);
}

.rps-reasons__media::before {
	position: absolute;
	z-index: 2;
	right: 20px;
	bottom: 20px;
	width: 96px;
	height: 96px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.rps-check-grid,
.rps-check-list {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.rps-check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.rps-check-grid li,
.rps-check-list li {
	position: relative;
	padding-left: 31px;
	color: var(--rps-ink);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.rps-check-grid li {
	padding: 16px 16px 16px 48px;
	border: 1px solid var(--rps-line);
	border-radius: 14px;
	background: #fff;
}

.rps-check-grid li::before,
.rps-check-list li::before {
	position: absolute;
	top: 50%;
	left: 17px;
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	background: rgba(110, 193, 228, 0.23);
	color: var(--rps-primary);
	content: "✓";
	font-size: 11px;
	font-weight: 600;
	transform: translateY(-50%);
}

.rps-check-list {
	display: grid;
	gap: 14px;
}

.rps-check-list li::before {
	top: 3px;
	left: 0;
	transform: none;
}

/* Features */
.rps-features {
	background: var(--rps-soft);
}

.rps-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.rps-feature-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(2, 83, 156, 0.1);
	border-radius: var(--rps-radius-md);
	background: #fff;
	box-shadow: 0 13px 34px rgba(4, 52, 91, 0.055);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.rps-feature-card:hover {
	box-shadow: 0 22px 48px rgba(4, 52, 91, 0.1);
	transform: translateY(-5px);
}

.rps-feature-card__media {
	aspect-ratio: 16 / 8.4;
	overflow: hidden;
	background: #dcecf5;
}

.rps-feature-card__media img {
	transition: transform 500ms ease;
}

.rps-feature-card:hover .rps-feature-card__media img {
	transform: scale(1.035);
}

.rps-feature-card__body {
	position: relative;
	padding: clamp(28px, 4vw, 44px);
}

.rps-feature-card__number {
	position: absolute;
	top: 24px;
	right: 28px;
	color: rgba(2, 83, 156, 0.2);
	font-family: "Syne", sans-serif;
	font-size: 36px;
	line-height: 1;
}

.rps-feature-card h3 {
	max-width: calc(100% - 70px);
	margin-bottom: 18px;
	font-size: clamp(23px, 2.2vw, 31px);
}

.rps-feature-card__points {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--rps-line);
}

.rps-feature-card__points ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
	padding-left: 1.05em;
}

/* Gallery */
.rps-gallery {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}

.rps-gallery__item {
	position: relative;
	grid-column: span 4;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 18px;
	background: #dcecf5;
	cursor: zoom-in;
}

.rps-gallery__item:nth-child(1),
.rps-gallery__item:nth-child(7n + 1) {
	grid-column: span 8;
	grid-row: span 2;
	aspect-ratio: 1.45 / 1;
}

.rps-gallery__item:nth-child(4n) {
	grid-column: span 5;
}

.rps-gallery__item:nth-child(4n + 1):not(:first-child) {
	grid-column: span 7;
}

.rps-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.rps-gallery__item:hover .rps-gallery__image {
	transform: scale(1.04);
}

.rps-gallery__zoom {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--rps-primary);
	font-family: "Syne", sans-serif;
	font-size: 24px;
	line-height: 1;
	transition: transform 180ms ease;
}

.rps-gallery__item:hover .rps-gallery__zoom {
	transform: rotate(90deg);
}

/* Waterproofing */
.rps-waterproofing {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 0%, rgba(110, 193, 228, 0.25), transparent 38%),
		linear-gradient(135deg, #013a6e 0%, var(--rps-primary) 62%, #0877ba 100%);
	color: rgba(255, 255, 255, 0.78);
}

.rps-waterproofing::before {
	position: absolute;
	top: -180px;
	left: -130px;
	width: 460px;
	height: 460px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 50%;
	content: "";
}

.rps-waterproofing .rps-section-title {
	color: #fff;
}

.rps-waterproofing__intro {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 70px;
	align-items: end;
	margin-bottom: 54px;
}

.rps-waterproofing__intro .rps-eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -40px;
}

.rps-waterproofing__intro p {
	margin-bottom: 6px;
	font-size: 17px;
}

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

.rps-system-card {
	position: relative;
	min-height: 260px;
	padding: 38px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--rps-radius-md);
	background: rgba(255, 255, 255, 0.09);
	backdrop-filter: blur(12px);
}

.rps-system-card__index {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 48px;
	place-items: center;
	border-radius: 50%;
	background: var(--rps-accent);
	color: #073c65;
	font-family: "Syne", sans-serif;
	font-size: 14px;
}

.rps-system-card h3 {
	margin-bottom: 15px;
	color: #fff;
	font-size: 24px;
}

.rps-system-card p {
	margin-bottom: 0;
}

.rps-waterproofing__note {
	margin: 30px 0 0;
	color: #dff5ff;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

/* Process */
.rps-planning-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: clamp(65px, 8vw, 100px);
}

.rps-planning-card {
	padding: 34px;
	border: 1px solid var(--rps-line);
	border-radius: 18px;
	background: #fff;
}

.rps-planning-card > span {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--rps-primary);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.rps-planning-card h3 {
	margin-bottom: 14px;
	font-size: 23px;
}

.rps-planning-card p {
	margin-bottom: 0;
	font-size: 14px;
}

.rps-construction {
	display: grid;
	grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
	gap: clamp(45px, 7vw, 95px);
	align-items: start;
}

.rps-construction__heading {
	position: sticky;
	top: 110px;
}

.rps-construction__heading h3 {
	font-size: clamp(36px, 4vw, 54px);
}

.rps-timeline {
	position: relative;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rps-timeline::before {
	position: absolute;
	top: 32px;
	bottom: 32px;
	left: 30px;
	width: 1px;
	background: var(--rps-line);
	content: "";
}

.rps-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 26px;
	padding: 0 0 38px;
}

.rps-timeline__item:last-child {
	padding-bottom: 0;
}

.rps-timeline__number {
	position: relative;
	z-index: 1;
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	border: 8px solid #fff;
	border-radius: 50%;
	background: var(--rps-soft);
	color: var(--rps-primary);
	font-family: "Syne", sans-serif;
	font-size: 13px;
}

.rps-timeline__item h4 {
	margin: 4px 0 10px;
	font-size: 23px;
}

/* Two panels */
.rps-two-panels {
	background: var(--rps-soft);
}

.rps-two-panels__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.rps-info-panel {
	position: relative;
	overflow: hidden;
	min-height: 540px;
	padding: clamp(36px, 5vw, 64px);
	border: 1px solid var(--rps-line);
	border-radius: var(--rps-radius-lg);
	background: #fff;
}

.rps-info-panel--accent {
	border-color: transparent;
	background: var(--rps-primary);
	color: rgba(255, 255, 255, 0.8);
}

.rps-info-panel__icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 65px;
	place-items: center;
	border-radius: 50%;
	background: var(--rps-soft);
	color: var(--rps-primary);
	font-family: "Syne", sans-serif;
}

.rps-info-panel--accent .rps-info-panel__icon {
	background: var(--rps-accent);
	color: #073c65;
}

.rps-info-panel h2 {
	margin-bottom: 22px;
	font-size: clamp(32px, 3.6vw, 50px);
}

.rps-info-panel--accent h2,
.rps-info-panel--accent .rps-check-list li {
	color: #fff;
}

.rps-info-panel--accent .rps-check-list li::before {
	background: rgba(255, 255, 255, 0.14);
	color: var(--rps-accent);
}

/* Reviews */
.rps-reviews {
	background: #fff;
}

.rps-reviews__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
	gap: clamp(55px, 9vw, 120px);
	align-items: center;
}

.rps-stars {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--rps-primary);
	font-size: 22px;
	letter-spacing: 0.14em;
}

.rps-review-tags {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.rps-review-tags span {
	display: flex;
	min-height: 76px;
	align-items: center;
	padding: 18px 20px;
	border: 1px solid var(--rps-line);
	border-radius: 14px;
	color: var(--rps-ink);
	font-family: "Syne", sans-serif;
	font-size: 16px;
	font-weight: 600;
}

/* FAQ */
.rps-faq-section {
	background: var(--rps-soft);
}

.rps-faq-wrap {
	max-width: 980px !important;
}

.rps-faq {
	border-top: 1px solid #cadbe6;
}

.rps-faq__item {
	border-bottom: 1px solid #cadbe6;
}

.rps-faq__item h3 {
	margin: 0;
}

.rps-faq__button {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px;
	gap: 24px;
	width: 100%;
	padding: 28px 0;
	border: 0;
	background: transparent;
	color: var(--rps-ink);
	font-family: "Syne", sans-serif;
	font-size: clamp(18px, 2vw, 23px);
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.rps-faq__plus {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(110, 193, 228, 0.24);
}

.rps-faq__plus::before,
.rps-faq__plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--rps-primary);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.rps-faq__plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.rps-faq__button[aria-expanded="true"] .rps-faq__plus::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.rps-faq__panel {
	padding: 0 70px 28px 0;
}

/* CTA */
.rps-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(95px, 12vw, 170px);
	background: var(--rps-primary);
	color: rgba(255, 255, 255, 0.82);
	text-align: center;
}

.rps-cta__background,
.rps-cta__overlay {
	position: absolute;
	inset: 0;
}

.rps-cta__background {
	z-index: -3;
	background-position: center;
	background-size: cover;
}

.rps-cta__overlay {
	z-index: -2;
	background:
		linear-gradient(135deg, rgba(1, 48, 91, 0.96), rgba(2, 83, 156, 0.88)),
		radial-gradient(circle at 50% 10%, rgba(110, 193, 228, 0.42), transparent 36%);
}

.rps-cta__content {
	max-width: 900px;
}

.rps-cta .rps-eyebrow {
	justify-content: center;
}

.rps-cta h2 {
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(40px, 6vw, 76px);
}

.rps-cta .rps-richtext {
	max-width: 720px;
	margin-inline: auto;
	font-size: 17px;
}

.rps-cta .rps-button {
	margin-top: 28px;
}

/* Lightbox */
.rps-lightbox[hidden] {
	display: none;
}

.rps-lightbox {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) 72px;
	align-items: center;
	padding: 30px;
	background: rgba(3, 15, 26, 0.94);
}

.rps-lightbox__figure {
	display: grid;
	max-width: min(1200px, 100%);
	max-height: calc(100vh - 70px);
	justify-self: center;
	margin: 0;
}

.rps-lightbox__figure img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	margin: auto;
	object-fit: contain;
}

.rps-lightbox__figure figcaption {
	margin-top: 12px;
	color: #d9edf7;
	font-size: 13px;
	text-align: center;
}

.rps-lightbox__close,
.rps-lightbox__nav {
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
}

.rps-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	font-size: 34px;
}

.rps-lightbox__nav {
	width: 52px;
	height: 52px;
	font-size: 34px;
}

.rps-lightbox__nav--next {
	justify-self: end;
}

.rps-lock-scroll {
	overflow: hidden;
}

/* Focus and accessibility */
.rps-project a:focus-visible,
.rps-project button:focus-visible {
	outline: 3px solid var(--rps-accent);
	outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1024px) {
	.rps-hero__grid {
		grid-template-columns: 1fr;
	}

	.rps-hero__content {
		max-width: 820px;
	}

	.rps-hero__visual {
		min-height: 620px;
	}

	.rps-facts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rps-fact:nth-child(3)::before {
		display: none;
	}

	.rps-fact:nth-child(n + 3) {
		border-top: 1px solid var(--rps-line);
	}

	.rps-reasons__grid {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 45px;
	}

	.rps-reasons__media {
		min-height: 560px;
	}

	.rps-feature-card__points ul {
		grid-template-columns: 1fr;
	}

	.rps-waterproofing__intro {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.rps-waterproofing__intro .rps-eyebrow {
		grid-column: auto;
		margin-bottom: 0;
	}

	.rps-waterproofing__grid,
	.rps-planning-grid {
		grid-template-columns: 1fr;
	}

	.rps-system-card {
		min-height: auto;
	}

	.rps-system-card__index {
		margin-bottom: 28px;
	}

	.rps-construction {
		grid-template-columns: 1fr;
	}

	.rps-construction__heading {
		position: static;
	}

	.rps-reviews__grid {
		grid-template-columns: 1fr;
	}

	.rps-gallery__item,
	.rps-gallery__item:nth-child(4n),
	.rps-gallery__item:nth-child(4n + 1):not(:first-child) {
		grid-column: span 6;
	}

	.rps-gallery__item:nth-child(1),
	.rps-gallery__item:nth-child(7n + 1) {
		grid-column: span 12;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.rps-project {
		font-size: 15px;
		line-height: 1.7;
	}

	.rps-section {
		padding-block: 74px;
	}

	.rps-container {
		padding-inline: 18px;
	}

	.rps-hero {
		padding-block: 60px 78px;
	}

	.rps-hero__grid {
		gap: 40px;
	}

	.rps-hero__title {
		font-size: clamp(40px, 12vw, 58px);
	}

	.rps-hero__subtitle {
		font-size: 18px;
	}

	.rps-hero__visual {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1.35fr 0.65fr;
		gap: 9px;
		min-height: 500px;
	}

	.rps-hero__image {
		border-radius: 18px;
	}

	.rps-hero__image--main {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.rps-hero__image--secondary,
	.rps-hero__image--detail {
		border-radius: 14px;
	}

	.rps-hero__badge {
		display: none;
	}

	.rps-button {
		width: 100%;
	}

	.rps-facts {
		margin-top: -24px;
	}

	.rps-facts__grid {
		grid-template-columns: 1fr 1fr;
		border-radius: 18px;
	}

	.rps-fact {
		padding: 20px 16px;
	}

	.rps-fact:nth-child(odd)::before {
		display: none;
	}

	.rps-fact:nth-child(even)::before {
		display: block;
	}

	.rps-fact__value {
		font-size: 14px;
	}

	.rps-reasons {
		padding-top: 98px;
	}

	.rps-reasons__grid {
		grid-template-columns: 1fr;
	}

	.rps-reasons__media {
		min-height: 430px;
		order: 2;
	}

	.rps-check-grid {
		grid-template-columns: 1fr;
	}

	.rps-feature-grid,
	.rps-two-panels__grid {
		grid-template-columns: 1fr;
	}

	.rps-feature-card__body {
		padding: 28px 22px;
	}

	.rps-feature-card h3 {
		max-width: calc(100% - 52px);
		font-size: 24px;
	}

	.rps-feature-card__number {
		top: 28px;
		right: 22px;
		font-size: 28px;
	}

	.rps-gallery {
		gap: 9px;
	}

	.rps-gallery__item,
	.rps-gallery__item:nth-child(4n),
	.rps-gallery__item:nth-child(4n + 1):not(:first-child) {
		grid-column: span 6;
		border-radius: 12px;
	}

	.rps-gallery__item:nth-child(1),
	.rps-gallery__item:nth-child(7n + 1) {
		grid-column: span 12;
		grid-row: auto;
		aspect-ratio: 1.2 / 1;
	}

	.rps-gallery__zoom {
		right: 9px;
		bottom: 9px;
		width: 34px;
		height: 34px;
	}

	.rps-system-card {
		padding: 28px;
	}

	.rps-timeline__item {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 16px;
	}

	.rps-timeline::before {
		left: 25px;
	}

	.rps-timeline__number {
		width: 52px;
		height: 52px;
		border-width: 6px;
	}

	.rps-info-panel {
		min-height: auto;
		padding: 34px 24px;
		border-radius: 20px;
	}

	.rps-info-panel__icon {
		margin-bottom: 40px;
	}

	.rps-review-tags {
		grid-template-columns: 1fr;
	}

	.rps-faq__button {
		padding-block: 23px;
		font-size: 18px;
	}

	.rps-faq__panel {
		padding-right: 0;
	}

	.rps-lightbox {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		padding: 15px 6px;
	}

	.rps-lightbox__nav {
		width: 40px;
		height: 40px;
	}

	.rps-lightbox__close {
		top: 10px;
		right: 10px;
	}
}

@media (max-width: 420px) {
	.rps-facts__grid {
		grid-template-columns: 1fr;
	}

	.rps-fact + .rps-fact::before {
		display: none !important;
	}

	.rps-fact:nth-child(n + 2) {
		border-top: 1px solid var(--rps-line);
	}

	.rps-hero__visual {
		min-height: 430px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rps-project *,
	.rps-project *::before,
	.rps-project *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}


/* ==========================================================
   Version 1.1.0 refinements
   Full-bleed layout, consistent media, slider, scroll timeline,
   review cards, and premium motion.
   ========================================================== */

/* Force the coded page to break out of any boxed Elementor parent. */

.rps-page-active,
.rps-page-active body {
	overflow-x: clip;
}

.elementor-widget-radvand_luxury_bathroom,
.elementor-widget-radvand_luxury_bathroom > .elementor-widget-container {
	width: 100% !important;
	max-width: none !important;
}

.rps-project {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	overflow: clip;
}

.rps-container {
	width: 100%;
}

/* Every source image fills its designed frame, regardless of source dimensions. */
.rps-hero__image,
.rps-reasons__media,
.rps-feature-card__media,
.rps-gallery__item {
	position: relative;
	isolation: isolate;
}

.rps-hero__image > .rps-responsive-image,
.rps-reasons-slider__slide > .rps-responsive-image,
.rps-feature-card__media > .rps-responsive-image,
.rps-gallery__item > .rps-gallery__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.rps-hero__visual {
	min-height: 0;
	aspect-ratio: 1 / 1.04;
}

.rps-hero__image--main {
	min-height: 0;
}

.rps-feature-card__media {
	height: clamp(235px, 21vw, 330px);
	aspect-ratio: auto;
}

/* Reasons image slider */
.rps-reasons__grid {
	align-items: start;
}

.rps-reasons__media {
	position: sticky;
	touch-action: pan-y;
	top: 105px;
	height: min(690px, calc(100vh - 150px));
	min-height: 520px;
	aspect-ratio: 4 / 5;
	background: #dcecf5;
}

.rps-reasons-slider__track,
.rps-reasons-slider__slide {
	position: absolute;
	inset: 0;
}

.rps-reasons-slider__slide {
	opacity: 0;
	transform: scale(1.055);
	transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1);
	pointer-events: none;
}

.rps-reasons-slider__slide.is-active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.rps-reasons-slider__slide::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 56%, rgba(3, 29, 51, 0.34));
	content: "";
	pointer-events: none;
}

.rps-reasons-slider__controls {
	position: absolute;
	z-index: 4;
	right: 20px;
	bottom: 20px;
	left: 20px;
	display: grid;
	grid-template-columns: 48px 1fr 48px;
	gap: 10px;
	align-items: center;
}

.rps-reasons-slider__controls button {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 50%;
	background: rgba(255,255,255,.9);
	box-shadow: 0 12px 30px rgba(3,29,51,.16);
	color: var(--rps-primary);
	font-size: 20px;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease;
}

.rps-reasons-slider__controls button:hover {
	background: #fff;
	transform: translateY(-2px);
}

.rps-reasons-slider__count {
	justify-self: center;
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 9px 16px;
	border: 1px solid rgba(255,255,255,.4);
	border-radius: 999px;
	background: rgba(3,29,51,.52);
	backdrop-filter: blur(10px);
	color: rgba(255,255,255,.72);
	font-size: 11px;
}

.rps-reasons-slider__count strong {
	color: #fff;
	font-family: "Syne", sans-serif;
	font-size: 18px;
}

.rps-reasons-slider__dots {
	position: absolute;
	z-index: 4;
	top: 20px;
	right: 20px;
	display: flex;
	gap: 7px;
}

.rps-reasons-slider__dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.55);
	cursor: pointer;
	transition: width 220ms ease, background 220ms ease;
}

.rps-reasons-slider__dots button.is-active {
	width: 27px;
	background: #fff;
}

.rps-reasons__content {
	padding-top: 18px;
}

/* Waterproofing spacing and stronger number contrast. */
.rps-waterproofing {
	padding-block: clamp(90px, 9vw, 132px);
}

.rps-waterproofing__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
	column-gap: clamp(48px, 8vw, 110px);
	row-gap: 28px;
	align-items: end;
	margin-bottom: 48px;
}

.rps-waterproofing__intro .rps-eyebrow {
	grid-column: 1 / -1;
	margin: 0;
}

.rps-waterproofing__intro .rps-section-title {
	max-width: 760px;
	margin: 0;
	font-size: clamp(38px, 4.8vw, 66px);
}

.rps-waterproofing__intro p {
	max-width: 520px;
	margin: 0 0 5px;
	font-size: 16px;
	line-height: 1.75;
}

.rps-waterproofing__grid {
	gap: 20px;
}

.rps-system-card {
	min-height: 300px;
	padding: 34px;
	background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.rps-system-card__index {
	width: 54px;
	height: 54px;
	margin-bottom: 38px;
	border: 1px solid rgba(255,255,255,.56);
	background: var(--rps-accent);
	box-shadow: 0 12px 24px rgba(0,0,0,.16);
	color: #02355f;
	font-size: 15px;
	font-weight: 700;
}

.rps-system-card h3 {
	font-size: clamp(22px, 2vw, 28px);
}

.rps-waterproofing__note {
	margin-top: 26px;
	font-size: 12px;
}

/* Scroll-reactive construction timeline. */
.rps-construction {
	grid-template-columns: minmax(280px, .38fr) minmax(0, .62fr);
	gap: clamp(55px, 8vw, 120px);
}

.rps-construction__heading {
	top: 92px;
	padding: 12px 0 30px;
}

.rps-construction__heading > p {
	max-width: 390px;
	margin: 22px 0 32px;
}

.rps-construction__status {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 12px 14px 12px 20px;
	border: 1px solid var(--rps-line);
	border-radius: 999px;
	background: var(--rps-soft);
	color: var(--rps-body);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.rps-construction__status strong {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--rps-primary);
	box-shadow: 0 10px 24px rgba(2,83,156,.22);
	color: #fff;
	font-family: "Syne", sans-serif;
	font-size: 13px;
}

.rps-timeline::before {
	left: 35px;
	width: 2px;
	background: #dce8ef;
}

.rps-timeline::after {
	position: absolute;
	top: 32px;
	left: 35px;
	width: 2px;
	height: var(--rps-progress, 0%);
	max-height: calc(100% - 64px);
	background: linear-gradient(var(--rps-accent), var(--rps-primary));
	content: "";
	transition: height 480ms cubic-bezier(.2,.7,.2,1);
}

.rps-timeline__item {
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 24px;
	min-height: 195px;
	padding-bottom: 28px;
	opacity: .38;
	transform: translateX(24px) scale(.98);
	transition: opacity 420ms ease, transform 520ms cubic-bezier(.2,.7,.2,1);
}

.rps-timeline__item.is-active,
.rps-timeline__item.is-passed {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.rps-timeline__number {
	z-index: 2;
	width: 70px;
	height: 70px;
	border: 9px solid #fff;
	background: #f1f6fa;
	transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.rps-timeline__item.is-active .rps-timeline__number {
	background: var(--rps-primary);
	box-shadow: 0 14px 30px rgba(2,83,156,.24);
	color: #fff;
}

.rps-timeline__item.is-passed .rps-timeline__number {
	background: var(--rps-accent);
	color: #073c65;
}

.rps-timeline__card {
	padding: 26px 28px;
	border: 1px solid transparent;
	border-radius: 18px;
	background: transparent;
	transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.rps-timeline__item.is-active .rps-timeline__card {
	border-color: var(--rps-line);
	background: #fff;
	box-shadow: 0 22px 50px rgba(4,52,91,.08);
}

/* Review cards */
.rps-reviews {
	position: relative;
	background:
		radial-gradient(circle at 92% 12%, rgba(110,193,228,.2), transparent 26%),
		#fff;
}

.rps-reviews__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: clamp(42px, 8vw, 100px);
	align-items: end;
	margin-bottom: 54px;
}

.rps-reviews__copy {
	max-width: 780px;
}

.rps-reviews__score {
	display: grid;
	justify-items: start;
	padding: 26px;
	border: 1px solid var(--rps-line);
	border-radius: 22px;
	background: rgba(255,255,255,.82);
	box-shadow: 0 18px 46px rgba(4,52,91,.08);
	backdrop-filter: blur(12px);
}

.rps-reviews__score strong {
	color: var(--rps-ink);
	font-family: "Syne", sans-serif;
	font-size: 48px;
	line-height: 1;
}

.rps-reviews__score .rps-stars {
	margin: 9px 0 7px;
	font-size: 15px;
}

.rps-reviews__score small {
	color: var(--rps-body);
	font-size: 11px;
}

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

.rps-review-card {
	position: relative;
	display: flex;
	min-height: 390px;
	flex-direction: column;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--rps-line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(4,52,91,.065);
	transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.rps-review-card:hover {
	border-color: rgba(2,83,156,.24);
	box-shadow: 0 28px 60px rgba(4,52,91,.12);
	transform: translateY(-7px);
}

.rps-review-card__top {
	display: flex;
	min-height: 58px;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.rps-review-card__source {
	padding: 7px 11px;
	border-radius: 999px;
	background: var(--rps-soft);
	color: var(--rps-primary);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.rps-review-card__quote {
	color: rgba(110,193,228,.55);
	font-family: Georgia, serif;
	font-size: 72px;
	line-height: .72;
}

.rps-review-card__stars {
	margin: 10px 0 20px;
	color: var(--rps-primary);
	font-size: 15px;
	letter-spacing: .12em;
}

.rps-review-card blockquote {
	flex: 1;
	margin: 0 0 32px;
	color: var(--rps-ink);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
}

.rps-review-card footer {
	display: flex;
	align-items: center;
	gap: 13px;
	padding-top: 22px;
	border-top: 1px solid var(--rps-line);
}

.rps-review-card__avatar {
	display: grid;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rps-primary), var(--rps-accent));
	color: #fff;
	font-family: "Syne", sans-serif;
	font-size: 13px;
}

.rps-review-card footer > span:last-child {
	display: grid;
	gap: 2px;
}

.rps-review-card footer strong {
	color: var(--rps-ink);
	font-family: "Syne", sans-serif;
	font-size: 14px;
}

.rps-review-card footer small {
	color: var(--rps-body);
	font-size: 11px;
}

/* Premium motion: only enabled after JS initializes. */
.rps-js .rps-reveal {
	opacity: 0;
	transform: translateY(34px) scale(.985);
	transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 820ms cubic-bezier(.2,.7,.2,1);
	transition-delay: var(--rps-delay, 0ms);
}

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

.rps-interactive-card::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	background: radial-gradient(420px circle at var(--rps-mx, 50%) var(--rps-my, 50%), rgba(110,193,228,.15), transparent 46%);
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms ease;
}

.rps-interactive-card:hover::before {
	opacity: 1;
}

.rps-interactive-card > * {
	position: relative;
	z-index: 1;
}

@keyframes rpsFloatOne {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
	50% { transform: translate3d(0, -12px, 0) rotate(.4deg); }
}

@keyframes rpsFloatTwo {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
	50% { transform: translate3d(0, 10px, 0) rotate(-.35deg); }
}

.rps-hero__image--secondary {
	animation: rpsFloatOne 7s ease-in-out infinite;
}

.rps-hero__image--detail {
	animation: rpsFloatTwo 8s ease-in-out infinite;
}

@media (max-width: 1024px) {
	.rps-project {
		margin-inline: calc(50% - 50vw);
	}

	.rps-hero__visual {
		aspect-ratio: 1.28 / 1;
	}

	.rps-reasons__media {
		position: relative;
		top: auto;
		height: 610px;
		min-height: 0;
	}

	.rps-waterproofing__intro {
		grid-template-columns: 1fr;
	}

	.rps-review-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rps-review-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.rps-project {
		width: 100vw;
		max-width: 100vw;
	}

	.rps-hero__visual {
		aspect-ratio: auto;
	}

	.rps-reasons__media {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.rps-reasons-slider__controls {
		right: 12px;
		bottom: 12px;
		left: 12px;
		grid-template-columns: 42px 1fr 42px;
	}

	.rps-reasons-slider__controls button {
		width: 42px;
		height: 42px;
	}

	.rps-waterproofing {
		padding-block: 76px;
	}

	.rps-waterproofing__intro {
		row-gap: 20px;
		margin-bottom: 35px;
	}

	.rps-system-card {
		min-height: 0;
	}

	.rps-construction__heading > p,
	.rps-construction__status {
		display: none;
	}

	.rps-timeline__item {
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: 0;
		gap: 13px;
		opacity: 1;
		transform: none;
	}

	.rps-timeline::before,
	.rps-timeline::after {
		left: 26px;
	}

	.rps-timeline__number {
		width: 54px;
		height: 54px;
		border-width: 6px;
	}

	.rps-timeline__card {
		padding: 20px 18px;
	}

	.rps-reviews__header {
		grid-template-columns: 1fr;
		margin-bottom: 38px;
	}

	.rps-reviews__score {
		grid-template-columns: auto 1fr;
		column-gap: 16px;
		align-items: center;
		justify-items: start;
	}

	.rps-reviews__score strong {
		grid-row: 1 / 3;
		font-size: 44px;
	}

	.rps-reviews__score .rps-stars {
		margin: 0;
	}

	.rps-review-grid {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding: 4px 18px 24px;
		margin-inline: -18px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.rps-review-grid::-webkit-scrollbar {
		display: none;
	}

	.rps-review-card,
	.rps-review-card:last-child:nth-child(odd) {
		min-width: min(84vw, 340px);
		min-height: 370px;
		grid-column: auto;
		scroll-snap-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rps-hero__image--secondary,
	.rps-hero__image--detail {
		animation: none !important;
	}

	.rps-js .rps-reveal {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================
   v1.5.1 — Hero image scale, stronger CTA, Google reviews
   ========================================================= */
.rps-hero .rps-container {
	width: min(100%, 1380px);
}

.rps-hero__grid {
	grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
	gap: clamp(34px, 4.8vw, 68px);
	align-items: stretch;
}

.rps-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.rps-hero__visual {
	align-self: stretch;
	aspect-ratio: auto !important;
	min-height: clamp(610px, 52vw, 760px) !important;
	height: auto;
	grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.94fr);
	grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(14px, 1.45vw, 20px);
}

.rps-hero__image,
.rps-hero__image--main,
.rps-hero__image--secondary,
.rps-hero__image--detail {
	min-height: 0 !important;
}

.rps-hero__image > .rps-responsive-image,
.rps-hero__image .rps-responsive-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}

.rps-hero__image--main {
	grid-row: 1 / 3;
}

.rps-button {
	gap: 14px;
	min-height: 62px;
	margin-top: 34px;
	padding: 16px 24px 16px 28px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	box-shadow: 0 18px 38px rgba(2, 83, 156, 0.28);
}

.rps-button:hover {
	box-shadow: 0 26px 52px rgba(2, 83, 156, 0.36);
}

.rps-button--primary {
	background: linear-gradient(135deg, var(--rps-primary) 0%, #0b73c7 100%);
	color: #fff;
}

.rps-button--light {
	background: #fff;
	color: var(--rps-primary);
	box-shadow: 0 18px 42px rgba(8, 41, 67, 0.18);
}

.rps-button span:last-child {
	width: 38px;
	height: 38px;
	font-size: 0;
}

.rps-button span:last-child svg {
	display: block;
	width: 18px;
	height: 18px;
}

.rps-button--primary span:last-child {
	background: #fff;
	color: var(--rps-primary);
}

.rps-button--light span:last-child {
	background: var(--rps-primary);
	color: #fff;
}

.rps-reviews__score {
	border-color: rgba(66, 133, 244, 0.18);
}

.rps-reviews__score small {
	font-size: 12px;
	line-height: 1.45;
}

.rps-review-card__source {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(66, 133, 244, 0.08);
	color: #1a73e8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.rps-google-mark {
	display: inline-grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 10px rgba(26, 115, 232, 0.14);
	color: #4285f4;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: none;
}

.rps-review-card__stars,
.rps-reviews__score .rps-stars {
	color: #fbbc04;
}

@media (max-width: 1180px) {
	.rps-hero__grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
		gap: 42px;
	}

	.rps-hero__visual {
		min-height: 620px !important;
	}
}

@media (max-width: 1024px) {
	.rps-hero__grid {
		grid-template-columns: 1fr;
	}

	.rps-hero__content {
		max-width: 860px;
	}

	.rps-hero__visual {
		min-height: 650px !important;
	}
}

@media (max-width: 767px) {
	.rps-hero__visual {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1.4fr 0.85fr;
		min-height: 540px !important;
		gap: 10px;
	}

	.rps-hero__image--main {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.rps-button {
		width: 100%;
		justify-content: space-between;
		padding-inline: 22px;
	}
}

@media (max-width: 420px) {
	.rps-hero__visual {
		min-height: 500px !important;
	}
}


/* =========================================================
   v1.5.2 Square Hero Collage Refinement
   ========================================================= */
.rps-button,
.rps-button > span:first-child {
	color: inherit;
}

.rps-button--primary,
.rps-button--primary > span:first-child {
	color: #fff !important;
}

.rps-button--light,
.rps-button--light > span:first-child {
	color: var(--rps-primary) !important;
}

.rps-button > span:first-child {
	font-weight: 700;
}

@media (min-width: 1025px) {
	.rps-hero__grid {
		grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
		gap: clamp(30px, 4vw, 54px);
		align-items: center;
	}

	.rps-hero__visual {
		min-height: 0 !important;
		height: auto;
		aspect-ratio: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto auto;
		gap: 18px;
		align-self: start;
	}

	.rps-hero__image,
	.rps-hero__badge {
		aspect-ratio: 1 / 1;
		min-height: 0;
	}

	.rps-hero__image {
		border-radius: 26px;
	}

	.rps-hero__image--main,
	.rps-hero__image--secondary,
	.rps-hero__image--detail {
		grid-column: auto;
		grid-row: auto;
	}

	.rps-hero__badge {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		padding: 22px;
		border: 1px solid rgba(2, 83, 156, 0.12);
		border-radius: 26px;
		background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
		box-shadow: var(--rps-shadow);
		color: var(--rps-primary);
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.18em;
		line-height: 1.7;
		text-align: center;
		text-transform: uppercase;
		display: grid;
		place-items: center;
		transform: none;
		transform-origin: center;
	}
}

@media (max-width: 1024px) {
	.rps-hero__visual {
		min-height: 0 !important;
		height: auto;
		aspect-ratio: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto auto;
		gap: 12px;
	}

	.rps-hero__image,
	.rps-hero__badge {
		aspect-ratio: 1 / 1;
		min-height: 0;
	}

	.rps-hero__image--main,
	.rps-hero__image--secondary,
	.rps-hero__image--detail {
		grid-column: auto;
		grid-row: auto;
	}

	.rps-hero__badge {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		padding: 18px;
		border: 1px solid rgba(2, 83, 156, 0.1);
		border-radius: 20px;
		background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
		box-shadow: var(--rps-shadow);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.14em;
		line-height: 1.6;
		text-align: center;
		text-transform: uppercase;
		display: grid;
		place-items: center;
		transform: none;
	}
}

@media (max-width: 767px) {
	.rps-hero__visual {
		gap: 10px;
	}

	.rps-hero__image,
	.rps-hero__badge {
		border-radius: 18px;
	}

	.rps-hero__badge {
		padding: 14px;
		font-size: 10px;
		letter-spacing: 0.1em;
	}
}


/* =========================================================
   v1.5.3 Tighter Hero Spacing
   ========================================================= */
@media (min-width: 1025px) {
	.rps-hero {
		padding-top: clamp(56px, 5vw, 84px);
		padding-bottom: clamp(30px, 3vw, 48px);
	}

	.rps-hero__grid {
		align-items: start;
	}

	.rps-facts {
		margin-top: -92px;
	}
}

@media (max-width: 1024px) {
	.rps-hero {
		padding-top: 56px;
		padding-bottom: 42px;
	}

	.rps-facts {
		margin-top: -58px;
	}
}

@media (max-width: 767px) {
	.rps-hero {
		padding-bottom: 34px;
	}

	.rps-facts {
		margin-top: -18px;
	}
}


/* =========================================================
   v1.5.4 Sticky Hero Visual + Fact Spacing Fix
   ========================================================= */
@media (min-width: 1025px) {
	.rps-hero {
		padding-bottom: 22px;
	}

	.rps-hero__grid {
		grid-template-columns: minmax(0, 0.96fr) minmax(560px, 1.04fr);
		gap: clamp(26px, 3.5vw, 46px);
		align-items: start;
	}

	.rps-hero__content {
		padding-bottom: 8px;
	}

	.rps-hero__visual {
		position: sticky;
		top: clamp(20px, 3vw, 36px);
		gap: 20px;
	}

	.rps-hero__image,
	.rps-hero__badge {
		aspect-ratio: 1 / 1.06;
	}

	.rps-facts {
		margin-top: 18px;
	}
}

@media (max-width: 1024px) {
	.rps-hero {
		padding-bottom: 28px;
	}

	.rps-hero__visual {
		position: static;
		gap: 14px;
	}

	.rps-hero__image,
	.rps-hero__badge {
		aspect-ratio: 1 / 1.04;
	}

	.rps-facts {
		margin-top: 16px;
	}
}

@media (max-width: 767px) {
	.rps-hero {
		padding-bottom: 24px;
	}

	.rps-facts {
		margin-top: 12px;
	}

	.rps-hero__visual {
		gap: 10px;
	}
}


/* =========================================================
   v1.5.5 Three-Image Hero Layout
   ========================================================= */
@media (min-width: 768px) {
	.rps-hero__visual {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto auto;
		gap: 18px;
	}

	.rps-hero__image--main {
		grid-column: 1;
		grid-row: 1;
	}

	.rps-hero__image--secondary {
		grid-column: 2;
		grid-row: 1;
	}

	.rps-hero__image--detail {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.rps-hero__image--main,
	.rps-hero__image--secondary {
		aspect-ratio: 1 / 0.92;
	}

	.rps-hero__image--detail {
		aspect-ratio: 2.15 / 1.22;
	}

	.rps-hero__badge {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.rps-hero__grid {
		grid-template-columns: minmax(0, 0.96fr) minmax(580px, 1.04fr);
	}

	.rps-hero__visual {
		position: sticky;
		top: clamp(20px, 3vw, 36px);
		gap: 20px;
	}

	.rps-hero__image {
		border-radius: 28px;
	}

	.rps-hero__image--main,
	.rps-hero__image--secondary {
		aspect-ratio: 1 / 0.9;
	}

	.rps-hero__image--detail {
		aspect-ratio: 2.18 / 1.18;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.rps-hero__visual {
		position: static;
		gap: 14px;
	}

	.rps-hero__image {
		border-radius: 22px;
	}
}

@media (max-width: 767px) {
	.rps-hero__visual {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 12px;
	}

	.rps-hero__image--main,
	.rps-hero__image--secondary,
	.rps-hero__image--detail {
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: 1.2 / 1;
	}

	.rps-hero__badge {
		display: none !important;
	}
}
