/* Inicio nueva temporal - full html port */

body.rw-inicio-nueva #site-header,
body.rw-inicio-nueva .page-header,
body.rw-inicio-nueva .breadcrumbs {
	display: none !important;
}

.rw-home-modern {
	--rw-ink: #111118;
	--rw-paper: #f3eee7;
	--rw-paper-2: #fffaf2;
	--rw-acid: #ff7a1a;
	--rw-acid-2: #f3b14d;
	--rw-blue: #07172f;
	--rw-muted: #6f6b64;
	--rw-line: rgba(17, 17, 24, 0.13);
	background: var(--rw-paper);
	color: var(--rw-ink);
	font-family: "Nunito Sans", sans-serif;
}

.rw-home-modern,
.rw-home-modern * {
	box-sizing: border-box;
}

.rw-home-modern a {
	color: inherit;
	text-decoration: none;
}

.rw-modern-container {
	width: min(1220px, calc(100% - 44px));
	margin: 0 auto;
}

.rw-modern-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border: 1px solid var(--rw-ink);
	transition: 0.22s ease;
}

.rw-modern-btn--dark {
	background: linear-gradient(135deg, #ff7a1a 0%, #ffb400 100%);
	border-color: transparent;
	color: #fff !important;
	box-shadow: 0 10px 26px rgba(255, 122, 26, 0.28);
}

.rw-modern-btn--dark:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(255, 122, 26, 0.34);
}

.rw-modern-btn--line {
	background: transparent;
	color: var(--rw-ink);
}

.rw-modern-btn--light {
	background: #fff;
	color: var(--rw-ink);
	border-color: transparent;
}

.rw-modern-header {
	position: fixed;
	top: 16px;
	left: 0;
	width: 100%;
	z-index: 60;
}

.rw-modern-nav {
	width: min(1220px, calc(100% - 44px));
	margin: 0 auto;
	height: 72px;
	padding: 0 12px 0 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(7, 23, 47, 0.88);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	box-shadow: 0 18px 60px rgba(17, 17, 24, 0.24);
}

.rw-modern-logo {
	display: inline-flex;
	align-items: center;
}

.rw-modern-logo .custom-logo-link,
.rw-modern-logo .custom-logo-link img,
.rw-modern-logo img {
	height: 35px;
	width: auto;
	display: inline-flex;
	align-items: center;
}

/* Menu: misma estructura del sitio, pero escala visual consistente */
.rw-modern-menu__list {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.rw-modern-menu__list li {
	list-style: none;
	position: relative;
}

.rw-modern-menu__list > li > a {
	display: inline-flex;
	align-items: center;
	padding: 8px 0;
	font-family: "Nunito Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	color: #eaf0ff;
	letter-spacing: 0;
	position: relative;
}

.rw-modern-menu__list > li > a:hover,
.rw-modern-menu__list > .current-menu-item > a,
.rw-modern-menu__list > .current-menu-parent > a,
.rw-modern-menu__list > .current_page_parent > a {
	color: #ffffff;
}

.rw-modern-menu__list > li > a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #ff7a1a, #ffb400);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.rw-modern-menu__list > li > a:hover::before,
.rw-modern-menu__list > .current-menu-item > a::before,
.rw-modern-menu__list > .current-menu-parent > a::before,
.rw-modern-menu__list > .current_page_parent > a::before {
	transform: scaleX(1);
}

.rw-modern-menu__list .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 7px;
	border-right: 1.4px solid currentColor;
	border-bottom: 1.4px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
}

.rw-modern-menu__list .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -14px;
	min-width: 260px;
	padding: 10px;
	margin: 0;
	list-style: none;
	border-radius: 14px;
	background: rgba(7, 23, 47, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 16px 40px rgba(10, 14, 24, 0.32);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: 0.2s ease;
	z-index: 70;
}

.rw-modern-menu__list .sub-menu li + li {
	margin-top: 3px;
}

.rw-modern-menu__list .sub-menu a {
	display: block;
	padding: 9px 10px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #eaf0ff;
}

.rw-modern-menu__list .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.rw-modern-nav .rw-modern-btn {
	min-height: 42px;
	padding: 0 16px;
	font-size: 12px;
}

.rw-modern-hamb {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	padding: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.rw-modern-hamb span {
	display: block;
	width: 20px;
	height: 2.2px;
	background: #eaf0ff;
}

.rw-modern-mobile-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	width: min(1220px, calc(100% - 44px));
}

.rw-modern-mobile-menu__inner {
	background: rgba(7, 23, 47, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	padding: 14px;
}

.rw-modern-mobile-menu__list,
.rw-modern-mobile-menu__list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rw-modern-mobile-menu__list > li + li {
	margin-top: 6px;
}

.rw-modern-mobile-menu__list a {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	color: #eaf0ff;
	font-size: 14px;
	font-weight: 700;
}

.rw-modern-mobile-menu__list .sub-menu {
	margin-top: 3px;
	padding-left: 10px;
}

.rw-modern-mobile-menu__list a:hover {
	background: rgba(255, 255, 255, 0.08);
}

.rw-modern-header.is-mobile-open .rw-modern-mobile-menu {
	display: block;
}

.rw-modern-menu__list li:hover > .sub-menu,
.rw-modern-menu__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Hero */
.rw-modern-hero {
	position: relative;
	min-height: 100vh;
	padding: 142px 0 72px;
	background:
		linear-gradient(90deg, rgba(243, 238, 231, 0.96) 0%, rgba(243, 238, 231, 0.88) 43%, rgba(243, 238, 231, 0.3) 70%, rgba(243, 238, 231, 0.82) 100%),
		url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
	overflow: hidden;
}

.rw-modern-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(17, 17, 24, 0.12) 1px, transparent 1px);
	background-size: 18px 18px;
	mask-image: linear-gradient(90deg, black, transparent 76%);
	opacity: 0.42;
}

.rw-modern-hero-layout {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 54px;
	align-items: end;
}

.rw-modern-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.rw-modern-kicker::before {
	content: "";
	width: 40px;
	height: 2px;
	background: var(--rw-acid);
}

.rw-modern-hero h1 {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(58px, 8vw, 112px);
	line-height: 0.84;
	letter-spacing: -0.075em;
	margin: 0 0 24px;
}

.rw-modern-hero h1 em {
	font-style: italic;
	font-weight: 500;
}

.rw-modern-hero p {
	max-width: 640px;
	color: #413b35;
	font-size: 20px;
	line-height: 1.55;
	margin: 0 0 34px;
}

.rw-modern-hero-actions {
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
}

.rw-modern-hero-actions .rw-modern-btn {
	font-size: 11px;
	letter-spacing: 0.015em;
}

.rw-modern-hero-board {
	position: relative;
	min-height: 650px;
}

.rw-modern-hero-board > * {
	will-change: transform, opacity;
}

.rw-hero-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 12;
}

.rw-hero-particle {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 206, 124, 0.95) 35%, rgba(255, 122, 26, 0.82) 62%, rgba(255, 122, 26, 0) 100%);
	opacity: 0.55;
	box-shadow: 0 0 14px rgba(255, 182, 88, 0.95), 0 0 28px rgba(255, 122, 26, 0.7);
	mix-blend-mode: screen;
}

.rw-photo-card {
	position: absolute;
	overflow: hidden;
	border-radius: 38px;
	border: 1px solid rgba(17, 17, 24, 0.16);
	box-shadow: 0 28px 90px rgba(17, 17, 24, 0.22);
}

.rw-photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rw-photo-main {
	right: 0;
	top: 0;
	width: 72%;
	height: 430px;
}

.rw-photo-small {
	left: 6%;
	bottom: 30px;
	width: 48%;
	height: 300px;
	transform: rotate(-3deg);
}

.rw-photo-code {
	right: 2%;
	bottom: 10px;
	width: 44%;
	height: 210px;
	transform: rotate(4deg);
}

.rw-sticker {
	position: absolute;
	z-index: 3;
	max-width: 280px;
	padding: 16px 18px;
	border-radius: 24px;
	background: var(--rw-ink);
	color: #fff;
	box-shadow: 10px 10px 0 var(--rw-acid);
}

.rw-sticker strong {
	display: block;
	font-size: 36px;
	line-height: 0.85;
	letter-spacing: -0.06em;
	font-family: "Montserrat", sans-serif;
}

.rw-sticker span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
}

.rw-sticker-1 {
	left: 0;
	top: 82px;
}

.rw-live-panel {
	position: absolute;
	z-index: 4;
	right: 12%;
	top: 355px;
	width: 330px;
	padding: 18px;
	border-radius: 24px;
	background: rgba(255, 250, 242, 0.85);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(17, 17, 24, 0.13);
	box-shadow: 0 20px 70px rgba(17, 17, 24, 0.16);
}

.rw-live-panel small {
	display: block;
	color: var(--rw-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.rw-live-row {
	display: flex;
	justify-content: space-between;
	padding: 9px 0;
	border-top: 1px solid rgba(17, 17, 24, 0.1);
	font-size: 13px;
	font-weight: 700;
}

.rw-live-row b {
	color: var(--rw-acid);
}

.rw-modern-manifesto {
	background: var(--rw-ink);
	color: #fff;
	padding: 40px 0;
	overflow: hidden;
}

.rw-modern-marquee {
	display: flex;
	gap: 34px;
	white-space: nowrap;
	animation: rw-marquee 26s linear infinite;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(28px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: -0.06em;
}

.rw-modern-marquee span:nth-child(even) {
	color: var(--rw-acid-2);
}

@keyframes rw-marquee {
	to { transform: translateX(-50%); }
}

.rw-modern-section {
	padding: 112px 0;
}

.rw-modern-section-head {
	display: grid;
	grid-template-columns: 0.65fr 1fr;
	gap: 46px;
	align-items: end;
	margin-bottom: 52px;
}

.rw-modern-section-head--single {
	display: block;
}

.rw-modern-section-head h2 {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(42px, 6vw, 82px);
	line-height: 0.86;
	letter-spacing: -0.07em;
	margin: 0;
}

.rw-modern-section-head p {
	color: var(--rw-muted);
	font-size: 19px;
	line-height: 1.55;
	max-width: 640px;
	margin: 0;
}

/* Service wall */
.rw-service-wall {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 22px;
}

.rw-service-feature {
	position: relative;
	min-height: 620px;
	padding: 42px;
	border-radius: 44px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(7, 23, 47, 0.1), rgba(7, 23, 47, 0.88)),
		url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.rw-service-feature h3 {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(40px, 5vw, 72px);
	line-height: 0.88;
	letter-spacing: -0.06em;
	margin: 0 0 18px;
	max-width: 700px;
	color: #ffffff;
}

.rw-service-feature p {
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	max-width: 620px;
	margin: 0;
}

.rw-service-list {
	display: grid;
	gap: 16px;
}

.rw-service-item {
	min-height: 146px;
	padding: 24px;
	border-radius: 30px;
	background: var(--rw-paper-2);
	border: 1px solid var(--rw-line);
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	align-items: center;
	transition: 0.22s ease;
}

.rw-service-item:hover {
	transform: translateX(-6px);
	box-shadow: 8px 8px 0 rgba(255, 122, 26, 0.28);
}

.rw-service-number {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: var(--rw-ink);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 800;
}

.rw-service-item h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	letter-spacing: -0.04em;
	line-height: 1;
	margin: 0 0 8px;
}

.rw-service-item p {
	color: var(--rw-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.rw-service-item > div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 96px;
}

/* Process */
.rw-modern-process {
	background: var(--rw-paper-2);
	border-top: 1px solid var(--rw-line);
	border-bottom: 1px solid var(--rw-line);
}

.rw-process-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 46px;
	align-items: start;
}

.rw-process-photo {
	position: sticky;
	top: 110px;
	height: 650px;
	border-radius: 42px;
	overflow: hidden;
	background:
		linear-gradient(180deg, transparent, rgba(17, 17, 24, 0.45)),
		url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
	box-shadow: 0 24px 70px rgba(17, 17, 24, 0.13);
}

.rw-steps {
	display: grid;
	gap: 18px;
}

.rw-step {
	padding: 34px;
	border-radius: 34px;
	background: var(--rw-paper);
	border: 1px solid var(--rw-line);
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 24px;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rw-step:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 122, 26, 0.42);
}

.rw-step b {
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	font-weight: 700;
	color: var(--rw-acid);
	line-height: 0.8;
}

.rw-step h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	line-height: 0.95;
	letter-spacing: -0.05em;
	margin: 0 0 8px;
}

.rw-step p {
	margin: 0;
	color: var(--rw-muted);
	line-height: 1.55;
}

/* Cases */
.rw-cases-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.rw-case {
	min-height: 310px;
	padding: 28px;
	border-radius: 34px;
	background: var(--rw-ink);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rw-case:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(17, 17, 24, 0.18);
}

.rw-case-link {
	text-decoration: none;
}

.rw-case-link:focus-visible {
	outline: 2px solid #ff7a1a;
	outline-offset: 4px;
}

.rw-case:nth-child(1) { grid-column: span 5; background: linear-gradient(180deg, rgba(17,17,24,.2), rgba(17,17,24,.9)), url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=80") center/cover; }
.rw-case:nth-child(2) { grid-column: span 4; background: linear-gradient(180deg, rgba(17,17,24,.1), rgba(17,17,24,.88)), url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=900&q=80") center/cover; }
.rw-case:nth-child(3) { grid-column: span 3; background: var(--rw-acid); color: var(--rw-ink); }
.rw-case:nth-child(4) { grid-column: span 4; background: var(--rw-blue); }
.rw-case:nth-child(5) { grid-column: span 3; background: var(--rw-paper-2); color: var(--rw-ink); }
.rw-case:nth-child(6) { grid-column: span 5; background: linear-gradient(180deg, rgba(17,17,24,.05), rgba(17,17,24,.88)), url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=900&q=80") center/cover; }

.rw-case small {
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.86;
	color: inherit;
	color: #ff7a1a;
}

.rw-case h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 34px;
	line-height: 0.92;
	letter-spacing: -0.05em;
	margin: 60px 0 0;
	color: inherit;
}

.rw-case p {
	margin: 12px 0 0;
	opacity: 0.8;
	line-height: 1.5;
	color: inherit;
}

.rw-case:nth-child(1),
.rw-case:nth-child(2),
.rw-case:nth-child(4),
.rw-case:nth-child(6) {
	color: #ffffff;
}

.rw-case:nth-child(3),
.rw-case:nth-child(5) {
	color: #111118;
}

/* Noticias - mismo patrón visual que blog */
.rw-ba-grid--home {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.rw-ba-card {
	background: #fff;
	border: 1px solid #e7e7ef;
	border-radius: 18px;
	overflow: hidden;
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rw-ba-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(20, 20, 43, 0.08);
	border-color: #ff7a1a;
}

.rw-ba-card__thumb {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: #f7f7fb;
}

.rw-ba-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rw-ba-card__noimg {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #14142b 0%, #1f1f3a 100%);
}

.rw-ba-card__cat {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 12px;
	background: linear-gradient(135deg, #ff7a1a 0%, #ffb400 100%);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 999px;
}

.rw-ba-card__content {
	padding: 22px 24px 24px;
}

.rw-ba-card__title {
	font-family: "Montserrat", sans-serif;
	font-size: 18.5px;
	line-height: 1.3;
	letter-spacing: 0;
	margin: 0 0 10px;
}

.rw-ba-card__excerpt {
	font-size: 14.5px;
	color: #5a5a6e;
	margin: 0 0 16px;
	line-height: 1.6;
}

.rw-ba-card__meta {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: #5a5a6e;
	font-weight: 600;
	flex-wrap: wrap;
}

.rw-ba-card__avatar {
	border-radius: 50%;
	width: 24px;
	height: 24px;
}

.rw-ba-card__author {
	color: #1a1a2e;
	font-weight: 700;
}

/* Tech strip */
.rw-modern-tech-strip {
	padding: 78px 0;
	background: var(--rw-paper-2);
	border-top: 1px solid var(--rw-line);
	border-bottom: 1px solid var(--rw-line);
}

.rw-modern-section-head--stack {
	margin-bottom: 28px;
}

.rw-modern-section-head--stack h2 {
	font-size: clamp(36px, 4.5vw, 56px);
}

.rw-modern-section-head--stack p {
	max-width: 680px;
}

.rw-tech-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 980px;
	margin: 0 auto;
}

.rw-tech-list span {
	padding: 12px 18px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--rw-line);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rw-tech-list span:hover {
	transform: translateY(-2px);
	border-color: #ff7a1a;
	box-shadow: 0 8px 16px rgba(255, 122, 26, 0.12);
}

/* Truth */
.rw-truth {
	background: var(--rw-ink);
	color: #fff;
}

.rw-truth .rw-modern-section-head p {
	color: rgba(255, 255, 255, 0.7);
}

.rw-truth .rw-modern-section-head h2 {
	color: #ffffff;
}

.rw-truth-board {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.rw-truth-card {
	padding: 38px;
	border-radius: 38px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.88);
}

.rw-truth-card h3 {
	color: #ffffff;
}

.rw-truth-card--good {
	background: var(--rw-paper-2);
	color: var(--rw-ink);
	box-shadow: 12px 12px 0 rgba(255, 122, 26, 0.5);
}

.rw-truth-card--good h3 {
	color: #ff7a1a;
}

.rw-truth-card h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 42px;
	line-height: 0.9;
	letter-spacing: -0.06em;
	margin: 0 0 24px;
}

.rw-truth-card ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.rw-truth-card li {
	list-style: none;
	font-size: 16px;
	font-weight: 700;
	opacity: 0.8;
	display: flex;
	gap: 8px;
}

.rw-truth-card li::before {
	content: "×";
	color: #ffffff;
	opacity: 0.9;
}

.rw-truth-card--good li::before {
	content: "✓";
	color: #ff7a1a;
}

.rw-truth-card--good li {
	color: #111118;
}

/* FAQ + CTA */
.rw-faq-cta-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: start;
}

.rw-cta-panel {
	position: sticky;
	top: 110px;
	min-height: 520px;
	padding: 38px;
	border-radius: 42px;
	background:
		linear-gradient(180deg, rgba(255, 122, 0, 0.1), rgba(255, 122, 0, 0.88)),
		url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1000&q=80") center/cover;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: 0 24px 70px rgba(255, 122, 0, 0.18);
	align-self: start;
}

.rw-modern-faq .rw-faq-cta-grid {
	align-items: start;
}

.rw-cta-panel h2 {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 58px;
	line-height: 0.86;
	letter-spacing: -0.07em;
	margin: 0 0 20px;
}

.rw-faq-list {
	display: grid;
	gap: 12px;
}

.rw-faq-list details {
	padding: 24px;
	border-radius: 26px;
	background: var(--rw-paper-2);
	border: 1px solid var(--rw-line);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rw-faq-list details:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 122, 26, 0.42);
}

.rw-faq-list summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 22px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.rw-faq-list summary::-webkit-details-marker {
	display: none;
}

.rw-faq-list summary::after {
	content: "+";
	color: var(--rw-acid);
	font-size: 22px;
}

.rw-faq-list details[open] summary::after {
	content: "−";
}

.rw-faq-list p {
	margin: 14px 0 0;
	color: var(--rw-muted);
	line-height: 1.55;
}

.rw-cta-panel .rw-modern-btn--light {
	border: 1px solid transparent;
}

.rw-cta-panel .rw-modern-btn--light:hover {
	background: #07172f;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(7, 23, 47, 0.28);
}

@media (max-width: 1040px) {
	.rw-modern-hero-layout,
	.rw-service-wall,
	.rw-process-grid,
	.rw-modern-section-head,
	.rw-truth-board,
	.rw-faq-cta-grid {
		grid-template-columns: 1fr;
	}

	.rw-modern-hero-board {
		min-height: 560px;
	}

	.rw-process-photo,
	.rw-cta-panel {
		position: relative;
		top: auto;
	}

	.rw-case {
		grid-column: span 6 !important;
	}

	.rw-ba-grid--home {
		grid-template-columns: 1fr 1fr;
	}

	.rw-modern-menu__list {
		display: none;
	}

	.rw-modern-nav {
		justify-content: space-between;
	}

	.rw-modern-nav .rw-modern-btn {
		margin-left: auto;
		margin-right: 10px;
		min-height: 38px;
		padding: 0 14px;
		font-size: 11px;
	}

	.rw-modern-hamb {
		display: inline-flex;
	}
}

@media (max-width: 720px) {
	.rw-modern-container,
	.rw-modern-nav {
		width: min(100% - 24px, 1220px);
	}

	.rw-modern-hero {
		padding-top: 122px;
	}

	.rw-modern-hero h1 {
		font-size: 55px;
	}

	.rw-modern-hero-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.rw-modern-hero-actions .rw-modern-btn {
		width: 100%;
		padding: 0 10px;
		font-size: 9.5px;
	}

	.rw-modern-hero-board {
		min-height: 520px;
	}

	.rw-photo-main {
		width: 92%;
		height: 330px;
	}

	.rw-photo-small {
		width: 70%;
		height: 230px;
		left: 0;
	}

	.rw-photo-code {
		width: 62%;
		height: 170px;
	}

	.rw-process-photo {
		height: 300px;
	}

	.rw-sticker,
	.rw-live-panel {
		display: none;
	}

	.rw-modern-section {
		padding: 78px 0;
	}

	.rw-service-feature {
		min-height: 500px;
		padding: 28px;
	}

	.rw-service-item,
	.rw-step {
		grid-template-columns: 1fr;
	}

	.rw-case {
		grid-column: span 12 !important;
	}

	.rw-ba-grid--home {
		grid-template-columns: 1fr;
	}

	.rw-cta-panel h2 {
		font-size: 44px;
	}

	.rw-modern-logo {
		display: inline-flex;
		margin-right: 8px;
	}

	.rw-modern-logo .custom-logo-link,
	.rw-modern-logo .custom-logo-link img,
	.rw-modern-logo img {
		height: 26px;
	}

	.rw-modern-nav .rw-modern-btn {
		margin: 0 auto;
		min-height: 34px;
		padding: 0 11px;
		font-size: 9.5px;
	}
}
