/* ============================================================
   RHEINSYSTEMS — Cohesive Light UI Design System
   White hero + flowing light body with pink (#ff1269) accents
   ============================================================ */

/* --- Design tokens (CSS custom properties) --- */
:root {
	--rs-pink: #ff1269;
	--rs-pink-light: rgba(255, 18, 105,0.08);
	--rs-pink-glow: rgba(255, 18, 105,0.12);
	--rs-bg-white: #ffffff;
	--rs-bg-warm: #f5f5f5;
	--rs-bg-warm-deep: #f5f5f5;
	--rs-text-primary: #1a1a2e;
	--rs-text-secondary: #555;
	--rs-text-muted: #888;
	--rs-border-light: rgba(0,0,0,0.05);
	--rs-border-pink: rgba(255, 18, 105,0.12);
	--rs-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
	--rs-shadow-md: 0 8px 24px rgba(0,0,0,0.06);
	--rs-shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
	--rs-shadow-pink: 0 8px 32px rgba(255, 18, 105,0.08);
	--rs-radius-sm: 10px;
	--rs-radius-md: 16px;
	--rs-radius-lg: 20px;
	--rs-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--rs-ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Smooth global transitions --- */
*, *::before, *::after {
	transition-timing-function: var(--rs-ease);
}

/* --- Unified section heading style --- */
.light-page section h3 strong,
.light-page section h3 .text-uppercase {
	font-family: 'OpenSans', sans-serif;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--rs-text-primary);
}

/* Unify all section SVG accent bars */
.light-page .edtel-8-0-0 {
	fill: var(--rs-pink);
}

/* Consistent paragraph styling across sections */
.light-page section p {
	font-family: 'OpenSans', sans-serif;
	line-height: 1.75;
}

/* --- Section label badges (pill above headings) --- */
.section-badge {
	display: inline-block;
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(8px, 0.8vw, 10px);
	font-weight: 600;
	letter-spacing: clamp(2px, 0.3vw, 2.5px);
	text-transform: uppercase;
	color: var(--rs-pink);
	background: var(--rs-pink-light);
	border: 1px solid rgba(255, 18, 105,0.18);
	border-radius: 50px;
	padding: var(--sp-xs) var(--sp-md);
	margin-bottom: var(--sp-sm);
}

/* --- Scrolling marquee strip --- */
.marquee-strip {
	overflow: hidden;
	white-space: nowrap;
	padding: var(--sp-lg) 0;
	background: linear-gradient(90deg, #f5f5f5 0%, #f0f0f0 50%, #f5f5f5 100%);
	border-top: 1px solid rgba(0,0,0,0.04);
	border-bottom: 1px solid rgba(0,0,0,0.04);
}
.marquee-track {
	display: inline-block;
	animation: marquee-scroll 30s linear infinite;
}
.marquee-track span {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(12px, 1.2vw, 14px);
	font-weight: 700;
	letter-spacing: clamp(3px, 0.4vw, 4px);
	text-transform: uppercase;
	color: rgba(255, 18, 105,0.12);
	padding: 0 clamp(24px, 3vw, 40px);
}
.marquee-track span.dot {
	color: rgba(255, 18, 105,0.35);
	font-size: clamp(6px, 0.6vw, 8px);
	padding: 0 clamp(12px, 1.5vw, 20px);
	vertical-align: middle;
}
@keyframes marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
	0%, 100% { box-shadow: 0 4px 24px rgba(255, 18, 105,0.3), 0 0 0 0 rgba(255, 18, 105,0.2); }
	50% { box-shadow: 0 4px 24px rgba(255, 18, 105,0.3), 0 0 0 8px rgba(255, 18, 105,0); }
}
@keyframes pageLoad {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* ============================================================
   ORBITAL TIMELINE HERO — Dual Ring with Glowing Paths
   ============================================================ */
#header-text {
	position: relative;
	height: 92svh;
	min-height: 92svh;
	overflow: hidden;
	background: var(--rs-bg-warm);
	margin-top: 0 !important;
}
/* Prevent sticky-wrapper from pushing hero down */
.sticky-wrapper {
	height: 0 !important;
}
#header-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 90px;
	background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.75));
	pointer-events: none;
	z-index: 2;
}
#header-text .bg-wrap {
	background-color: var(--rs-bg-warm) !important;
	overflow: visible;
}
#header-text .bg {
	display: none;
}

/* Star twinkle background container */
.hero-stars-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	/* Gentle radial fade — softer in the very center, full at edges */
	mask-image: radial-gradient(ellipse 35% 30% at 50% 52%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%);
	-webkit-mask-image: radial-gradient(ellipse 35% 30% at 50% 52%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 100%);
}

/* Full-area container */
.orbital-timeline {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}
/* Subtle radial backdrop connecting orbital system to dots */
.orbital-timeline::before {
	content: '';
	position: absolute;
	top: calc(50% + 52px);
	left: 50%;
	transform: translate(-50%, -50%);
	width: clamp(500px, min(120vh, 90vw), 1000px);
	height: clamp(500px, min(120vh, 90vw), 1000px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 18, 105,0.03) 0%, rgba(255, 18, 105,0.012) 40%, transparent 85%);
	pointer-events: none;
	z-index: 0;
}

/* Center title block */
.orbital-center {
	position: absolute;
	top: calc(50% + 52px);
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	text-align: center;
	width: clamp(200px, min(38vh, 34vw), 440px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Overline badge above heading */
.hero-overline {
	display: inline-block;
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(8px, min(1.2vh, 1vw), 10px);
	font-weight: 600;
	letter-spacing: clamp(2px, min(0.4vh, 0.35vw), 3px);
	text-transform: uppercase;
	color: var(--rs-pink);
	background: var(--rs-pink-light);
	border: 1px solid rgba(255, 18, 105,0.15);
	border-radius: 50px;
	padding: clamp(4px, min(0.6vh, 0.5vw), 5px) clamp(10px, min(1.8vh, 1.5vw), 16px);
	margin-bottom: clamp(8px, min(1.5vh, 1.2vw), 14px);
	animation: heroFadeInUp 0.6s var(--rs-ease) 0.05s both;
}

#header-text .orbital-center h1 {
	font-family: 'OpenSans', sans-serif;
	font-weight: 600;
	font-size: clamp(18px, min(3.8vh, 3vw), 32px) !important;
	color: var(--rs-text-primary);
	letter-spacing: 1.5px;
	white-space: nowrap;
	line-height: 1.15;
	margin: 0 0 clamp(8px, min(1.8vh, 1.4vw), 16px);
	text-transform: uppercase;
}

/* Gradient highlight on key word */
#header-text .orbital-center h1 .hero-keyword {
	background: linear-gradient(135deg, var(--rs-pink) 0%, #ff4466 50%, #ff6b8a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2.orbital-subtitle,
.orbital-subtitle {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(11px, min(1.7vh, 1.3vw), 14px) !important;
	font-weight: 400;
	color: rgba(0,0,0,0.5);
	line-height: 1.6;
	margin: 0 0 clamp(6px, min(1.4vh, 1.1vw), 12px);
	letter-spacing: 0.2px;
}

/* Center logo */
.hero-center-logo {
	display: block;
	width: clamp(60px, min(16vh, 12vw), 130px);
	height: auto;
	margin: 0 auto clamp(10px, min(1.7vh, 1.3vw), 14px);
	-webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

/* Hero CTA — hidden initially, revealed on scroll */
.hero-cta.scroll-reveal {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s var(--rs-ease), transform 0.5s var(--rs-ease);
}
.hero-cta.scroll-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Scroll indicator */
.hero-scroll-indicator {
	position: absolute;
	bottom: 36px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: fit-content;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	animation: heroFadeInUp 0.6s var(--rs-ease) 0.4s both;
	text-decoration: none;
}
.hero-scroll-indicator span {
	font-family: 'OpenSans', sans-serif;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(0,0,0,0.25);
	transition: color 0.3s;
}
.hero-scroll-indicator:hover span {
	color: var(--rs-pink);
}
.hero-scroll-chevron {
	width: 24px;
	height: 24px;
	border-left: 2px solid rgba(255, 18, 105,0.3);
	border-bottom: 2px solid rgba(255, 18, 105,0.3);
	transform: rotate(-45deg);
	animation: scrollPulse 3s ease-in-out infinite;
	transition: border-color 0.3s;
}
.hero-scroll-indicator:hover .hero-scroll-chevron {
	border-color: var(--rs-pink);
}
@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 1; }
}

/* Hero CTA button */
.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(9px, min(1.3vh, 1vw), 11px);
	font-weight: 600;
	letter-spacing: clamp(2px, min(0.3vh, 0.25vw), 2.5px);
	text-transform: uppercase;
	color: #ffffff;
	background: linear-gradient(135deg, var(--rs-pink) 0%, #ff4466 50%, #ff6b8a 100%);
	border: 2px solid transparent;
	border-radius: 50px;
	padding: clamp(9px, min(1.6vh, 1.2vw), 13px) clamp(20px, min(3.8vh, 3vw), 32px);
	text-decoration: none;
	box-shadow: 0 4px 24px rgba(255, 18, 105,0.2);
	transition: all 0.4s var(--rs-ease);
	animation: heroFadeInUp 0.8s var(--rs-ease) 0.5s both;
	position: relative;
	overflow: hidden;
}
/* Subtle shimmer sweep */
.hero-cta::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
	transition: left 0.6s ease;
}
.hero-cta:hover::after {
	left: 120%;
}
.hero-cta:hover {
	background: transparent;
	color: var(--rs-pink);
	border: 2px solid var(--rs-pink);
	box-shadow: 0 4px 20px rgba(255,0,56,0.15);
	transform: translateY(-2px);
	text-decoration: none;
}
.hero-cta-arrow {
	display: inline-block;
	transition: transform 0.3s var(--rs-ease);
	font-size: 14px;
	line-height: 1;
}
.hero-cta:hover .hero-cta-arrow {
	transform: translateX(3px);
}
@keyframes heroFadeInUp {
	from { opacity: 0; translate: 0 16px; }
	to { opacity: 1; translate: 0 0; }
}

/* Pulsing center glow — nucleus of the orbital system */
.orbital-center-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: clamp(100px, min(25vh, 20vw), 200px);
	height: clamp(100px, min(25vh, 20vw), 200px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 18, 105,0.06) 0%, rgba(255, 18, 105,0.02) 40%, rgba(255, 18, 105,0) 70%);
	animation: orbitalPulse 4s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
}
/* Removed ::before and ::after rings — they created ghost axes between orbital paths */
@keyframes orbitalPulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
	50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.4; }
}

/* Orbital ring — zero-size anchor at center, shifted up for navbar */
.orbital-ring {
	position: absolute;
	top: calc(50% + 52px);
	left: 50%;
	width: 0;
	height: 0;
}

/* Glowing orbit path rings — visual bridge between dots and center */
.orbital-ring-path {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	pointer-events: none;
}
.orbital-ring-path--inner {
	width: var(--ring-inner-diameter, 680px);
	height: var(--ring-inner-height, 530px);
	border: 2px solid rgba(255, 18, 105,0.18);
	box-shadow: 0 0 30px rgba(255, 18, 105,0.06), inset 0 0 30px rgba(255, 18, 105,0.03);
}
.orbital-ring-path--inner::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	border: 1px dashed rgba(255, 18, 105,0.1);
}
.orbital-ring-path--inner::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle, transparent 40%, rgba(255, 18, 105,0.03) 75%, rgba(255, 18, 105,0.06) 100%);
	animation: ringGlow 4s ease-in-out infinite;
}
.orbital-ring-path--outer {
	width: var(--ring-outer-diameter, 960px);
	height: var(--ring-outer-height, 749px);
	border: 2px solid rgba(255, 18, 105,0.14);
	box-shadow: 0 0 30px rgba(255, 18, 105,0.05), inset 0 0 30px rgba(255, 18, 105,0.025);
}
.orbital-ring-path--outer::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	border: 1px dashed rgba(255, 18, 105,0.08);
}
.orbital-ring-path--outer::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle, transparent 40%, rgba(255, 18, 105,0.02) 75%, rgba(255, 18, 105,0.04) 100%);
	animation: ringGlow 4s ease-in-out infinite 1.5s;
}
@keyframes ringGlow {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}
@keyframes ringRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Orbital nodes */
.orbital-node {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	will-change: transform;
	transition: filter 0.3s ease;
}

/* Connector line from node to orbit ring */
.orbital-node::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 50%;
	width: 1px;
	height: 0;
	background: linear-gradient(to bottom, rgba(255, 18, 105,0.3), transparent);
	transition: height 0.3s var(--rs-ease);
	transform: translateX(-50%);
	pointer-events: none;
}
.orbital-node:hover::before {
	height: 12px;
}

/* Icon circle */
.node-icon {
	width: clamp(36px, min(7vh, 5.5vw), 56px);
	height: clamp(36px, min(7vh, 5.5vw), 56px);
	border-radius: 50%;
	border: 1px solid var(--rs-pink);
	background: var(--rs-pink);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: all 0.35s var(--rs-ease-spring);
	box-shadow: 0 2px 12px rgba(255, 18, 105,0.15), 0 0 0 3px rgba(255, 18, 105,0.05);
	position: relative;
}
/* Outer ring pulse on hover */
.node-icon::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px solid rgba(255, 18, 105,0);
	transition: all 0.4s var(--rs-ease);
	pointer-events: none;
}
.orbital-node:hover .node-icon::after {
	inset: -10px;
	border-color: rgba(255, 18, 105,0.15);
}
.node-icon svg {
	width: clamp(16px, min(2.8vh, 2.2vw), 22px);
	height: clamp(16px, min(2.8vh, 2.2vw), 22px);
}
.orbital-node[data-orbit="outer"] .node-icon {
	border-color: var(--rs-pink);
	color: #ffffff;
	box-shadow: 0 2px 10px rgba(255, 18, 105,0.12);
}
.orbital-node:hover .node-icon {
	border-color: var(--rs-pink);
	color: var(--rs-pink);
	background: #ffffff;
	box-shadow: 0 0 30px rgba(255, 18, 105,0.25), 0 4px 20px rgba(255, 18, 105,0.15);
	transform: scale(1.15);
}
.orbital-node[data-orbit="outer"]:hover .node-icon {
	border-color: var(--rs-pink);
	color: var(--rs-pink);
	background: #ffffff;
	box-shadow: 0 0 30px rgba(255, 18, 105,0.25), 0 4px 20px rgba(255, 18, 105,0.15);
}
.orbital-node.active .node-icon {
	border-color: var(--rs-pink);
	color: #ffffff;
	background: var(--rs-pink);
	box-shadow: 0 0 30px rgba(255, 18, 105,0.35), 0 4px 24px rgba(255, 18, 105,0.2);
}
.orbital-node[data-orbit="outer"].active .node-icon {
	border-color: var(--rs-pink);
	background: var(--rs-pink);
	box-shadow: 0 0 30px rgba(255, 18, 105,0.35), 0 4px 24px rgba(255, 18, 105,0.2);
}

.node-label {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(9px, min(1.7vh, 1.3vw), 14px);
	font-weight: 500;
	letter-spacing: 0.3px;
	color: var(--rs-text-secondary);
	white-space: nowrap;
	transition: all 0.3s ease;
	user-select: none;
	background: rgba(255,255,255,0.85);
	padding: clamp(2px, min(0.4vh, 0.3vw), 3px) clamp(6px, min(1.2vh, 0.9vw), 10px);
	border-radius: 20px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.orbital-node:hover .node-label {
	color: var(--rs-text-primary);
}
.orbital-node.active .node-label {
	color: var(--rs-pink);
	font-weight: 600;
}
.orbital-node[data-orbit="outer"].active .node-label {
	color: var(--rs-pink);
}

/* Expanded card */
.orbital-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: var(--rs-bg-white);
	border: 1px solid var(--rs-border-pink);
	border-radius: var(--rs-radius-md);
	padding: clamp(24px, min(3.8vh, 3vw), 32px) clamp(28px, min(4.3vh, 3.3vw), 36px);
	width: clamp(240px, min(38vh, 30vw), 320px);
	box-shadow: 0 12px 40px rgba(255, 18, 105,0.08), 0 4px 16px rgba(0,0,0,0.06);
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s var(--rs-ease-spring);
	z-index: 30;
	text-align: left;
}
.orbital-card.visible {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}
.orbital-card-close {
	position: absolute;
	top: 14px;
	right: 18px;
	background: none;
	border: none;
	font-size: 20px;
	color: rgba(0,0,0,0.25);
	cursor: pointer;
	line-height: 1;
	padding: 4px;
	transition: color 0.2s;
}
.orbital-card-close:hover {
	color: var(--rs-pink);
}
.orbital-card-title {
	font-family: 'OpenSans', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--rs-text-primary);
	margin: 0 0 10px;
}
.orbital-card-desc {
	font-family: 'OpenSans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: rgba(0,0,0,0.5);
	line-height: 1.7;
	margin: 0 0 20px;
}
.orbital-card-link {
	font-family: 'OpenSans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--rs-pink);
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: opacity 0.2s;
}
.orbital-card-link:hover {
	opacity: 0.7;
}

/* Responsive — medium screens: reduce clutter as orbits shrink */
@media all and (max-width: 1100px) {
	.node-label {
		display: none;
	}
	.orbital-node {
		gap: 0;
	}
}

/* Responsive — narrow screens: simplify hero further */
@media all and (max-width: 900px) {
	.hero-overline {
		display: none;
	}
	.orbital-subtitle {
		display: none;
	}
}

/* Responsive — mobile */
/* Responsive — small screens: hide decorative extras */
@media all and (max-width: 767px) {
	.node-icon::after {
		display: none;
	}
	.orbital-node::before {
		display: none;
	}
	.orbital-card {
		width: min(85vw, 260px);
		padding: 20px 24px;
	}
	.hero-scroll-indicator {
		bottom: 24px;
	}
	.hero-scroll-chevron {
		width: 18px;
		height: 18px;
	}
	.hero-scroll-indicator span {
		font-size: 8px;
	}
}

/* Hero entrance animations — fade only, no position shift */
@keyframes heroFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.orbital-center {
	animation: heroFadeIn 0.35s ease both;
}
.orbital-node {
	opacity: 0;
	animation: heroFadeIn 0.3s ease forwards;
}
.orbital-ring-path {
	opacity: 0;
	animation: heroFadeIn 0.35s ease forwards;
}

/* ============================================================
   UNIFIED SECTION TRANSITIONS — Seamless flow between sections
   ============================================================ */

/* Every section gets a soft top transition via pseudo-element */
.light-page section {
	position: relative;
}

/* ============================================================
   MISSION / VISION / VALUES — Flows from hero
   ============================================================ */
#desc-img-list-3col {
	background: var(--rs-bg-white);
	position: relative;
}
#desc-img-list-3col .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#desc-img-list-3col .col-md-4 {
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
}
#desc-img-list-3col .col-md-4 .content-box {
	width: 100%;
}
#desc-img-list-3col .col-md-4 p:last-child {
	flex: 1;
}
#desc-img-list-3col p {
	color: var(--rs-text-secondary);
	font-size: clamp(13px, 1.2vw, 14px);
	line-height: 1.75;
}
#desc-img-list-3col h3 {
	letter-spacing: 1.5px;
	color: var(--rs-text-primary);
}
#desc-img-list-3col .edtel-8-0-0 {
	fill: var(--rs-pink);
}
#desc-img-list-3col .padding {
	border-radius: var(--rs-radius-md);
	overflow: hidden;
}
#desc-img-list-3col .shadow {
	box-shadow: var(--rs-shadow-md);
	border-radius: var(--rs-radius-md);
	overflow: hidden;
	transition: transform 0.5s var(--rs-ease), box-shadow 0.5s var(--rs-ease);
}
#desc-img-list-3col .shadow:hover {
	transform: translateY(-6px);
	box-shadow: var(--rs-shadow-lg);
}

/* ============================================================
   LAMP CTA SECTION — Trekket-inspired split layout
   ============================================================ */
#lamp-cta {
	position: relative;
	background: var(--rs-bg-warm);
	overflow: hidden;
	padding: var(--sp-section) 0;
}
#lamp-cta .bg-wrap {
	background-color: var(--rs-bg-warm) !important;
}

/* --- Background glow effects --- */
.lamp-cta-bg-glow {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 120%;
	background: none;
	pointer-events: none;
	z-index: 1;
}
.lamp-cta-bg-glow-2 {
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 40%;
	height: 80%;
	background: none;
	pointer-events: none;
	z-index: 1;
}

/* --- Row layout --- */
.lamp-cta-row {
	min-height: clamp(300px, 35vw, 420px);
}

/* --- CTA text content (left side) --- */
.lamp-cta-content {
	position: relative;
	z-index: 10;
	text-align: left;
	padding-right: clamp(0px, 3vw, 40px);
}
.lamp-cta-heading {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 800;
	color: var(--rs-text-primary);
	line-height: 1.2;
	letter-spacing: -0.3px;
	margin-bottom: var(--sp-md);
}
/* Gradient pink accent on key word */
.lamp-cta-accent {
	background: linear-gradient(135deg, var(--rs-pink) 0%, #ff4466 50%, #ff6b8a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.lamp-cta-desc {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(14px, 1.3vw, 16px);
	color: var(--rs-text-secondary);
	line-height: 1.8;
	margin-bottom: var(--sp-xl);
	max-width: clamp(320px, 35vw, 440px);
}

/* --- Action buttons --- */
.lamp-cta-actions {
	display: flex;
	gap: var(--sp-sm);
	align-items: center;
	flex-wrap: wrap;
}
.lamp-cta-btn {
	display: inline-block;
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(11px, 1vw, 12px);
	font-weight: 600;
	letter-spacing: clamp(1.5px, 0.2vw, 2px);
	text-transform: uppercase;
	color: #ffffff;
	background: var(--rs-pink);
	border: 2px solid var(--rs-pink);
	border-radius: 50px;
	padding: clamp(13px, 1.3vw, 15px) clamp(28px, 3vw, 36px);
	text-decoration: none;
	box-shadow: 0 4px 30px rgba(255, 18, 105, 0.3);
	transition: all 0.4s var(--rs-ease);
	position: relative;
	overflow: hidden;
}
.lamp-cta-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
	transition: left 0.6s ease;
}
.lamp-cta-btn:hover::after {
	left: 120%;
}
.lamp-cta-btn:hover {
	background: #e60030;
	border-color: #e60030;
	color: #ffffff;
	box-shadow: 0 8px 40px rgba(255, 18, 105, 0.45);
	transform: translateY(-2px);
	text-decoration: none;
}
/* Ghost / secondary button */
.lamp-cta-btn-ghost {
	display: inline-block;
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(11px, 1vw, 12px);
	font-weight: 600;
	letter-spacing: clamp(1.5px, 0.2vw, 2px);
	text-transform: uppercase;
	color: var(--rs-text-primary);
	background: transparent;
	border: 2px solid rgba(26, 26, 46, 0.15);
	border-radius: 50px;
	padding: clamp(13px, 1.3vw, 15px) clamp(28px, 3vw, 36px);
	text-decoration: none;
	transition: all 0.4s var(--rs-ease);
}
.lamp-cta-btn-ghost:hover {
	color: var(--rs-pink);
	border-color: var(--rs-pink);
	background: rgba(255, 18, 105, 0.04);
	transform: translateY(-2px);
	text-decoration: none;
}

/* --- Visual / device side (right) --- */
.lamp-cta-visual {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lamp-device-wrap {
	position: relative;
	width: 100%;
	max-width: clamp(340px, 42vw, 580px);
	margin: 0 auto;
}
.lamp-hero-img {
	width: 100%;
	max-width: clamp(340px, 42vw, 580px);
	border-radius: var(--rs-radius-md);
	filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1)) drop-shadow(0 4px 20px rgba(255, 18, 105, 0.08));
	transition: transform 0.6s var(--rs-ease);
	position: relative;
	z-index: 2;
}
.lamp-hero-img:hover {
	transform: scale(1.02) translateY(-4px);
}

/* --- Floating UI cards --- */
.lamp-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	background: #ffffff;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--rs-radius-sm);
	padding: clamp(8px, 1vw, 12px) clamp(12px, 1.3vw, 16px);
	z-index: 5;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	animation: lamp-float 6s ease-in-out infinite;
}
.lamp-float-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(30px, 3vw, 36px);
	height: clamp(30px, 3vw, 36px);
	border-radius: 10px;
	background: rgba(255, 18, 105, 0.15);
	color: var(--rs-pink);
	flex-shrink: 0;
}
.lamp-float-card__text {
	display: flex;
	flex-direction: column;
}
.lamp-float-card__label {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(10px, 0.9vw, 11px);
	color: var(--rs-text-muted);
	letter-spacing: 0.5px;
	line-height: 1.2;
}
.lamp-float-card__value {
	font-family: 'OpenSans', sans-serif;
	font-size: clamp(13px, 1.3vw, 16px);
	font-weight: 700;
	color: var(--rs-text-primary);
	line-height: 1.3;
}

/* Card positions */
.lamp-float-card--stats {
	top: 8%;
	left: -8%;
	animation-delay: 0s;
}
.lamp-float-card--deploy {
	bottom: 18%;
	right: -6%;
	animation-delay: -2s;
}
.lamp-float-card--uptime {
	bottom: 5%;
	left: 2%;
	animation-delay: -4s;
}

@keyframes lamp-float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* --- Top edge accent line --- */
#lamp-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30%;
	height: 2px;
	background: none;
}

/* --- Mobile layout: center text, stack columns --- */
@media all and (max-width: 767px) {
	.lamp-cta-content {
		text-align: center;
		padding-right: 0;
		margin-bottom: var(--sp-xl);
	}
	.lamp-cta-desc {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.lamp-cta-actions {
		justify-content: center;
	}
	.lamp-float-card--stats {
		top: 2%;
		left: -2%;
	}
	.lamp-float-card--deploy {
		right: -2%;
		bottom: 22%;
	}
	.lamp-float-card--uptime {
		left: -2%;
		bottom: 2%;
	}
	.lamp-cta-bg-glow {
		width: 80%;
		right: -20%;
	}
}

/* ============================================================
   PARTNERS — Clean white with subtle warmth
   ============================================================ */
#partners {
	background: var(--rs-bg-white);
	position: relative;
}
#partners::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 60px;
	background: none;
	pointer-events: none;
}
#partners .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#partners h3 {
	color: var(--rs-text-primary);
	font-size: 30px;
}
#partners .edtel-8-0-0 {
	fill: var(--rs-pink);
}
#partners p {
	color: var(--rs-text-secondary);
	font-size: clamp(13px, 1.2vw, 14px);
	line-height: 1.75;
}
#partners img {
	opacity: 1;
	filter: none;
}

/* ============================================================
   HISTORY — Warm background with visual depth
   ============================================================ */
#desc-text-img-img {
	background: var(--rs-bg-warm);
	border-top: 1px solid var(--rs-border-light);
}
#desc-text-img-img .bg-wrap {
	background-color: var(--rs-bg-warm) !important;
}
#desc-text-img-img h3 {
	color: var(--rs-text-primary);
	letter-spacing: 1.5px;
}
#desc-text-img-img p {
	color: var(--rs-text-secondary);
	font-size: clamp(13px, 1.2vw, 14px);
	line-height: 1.8;
}
#desc-text-img-img .edtel-8-0-0 {
	fill: var(--rs-pink);
}
#desc-text-img-img .shadow {
	box-shadow: var(--rs-shadow-md);
	border-radius: var(--rs-radius-md);
	overflow: hidden;
	transition: transform 0.5s var(--rs-ease), box-shadow 0.5s var(--rs-ease);
}
#desc-text-img-img .shadow:hover {
	transform: translateY(-6px);
	box-shadow: var(--rs-shadow-lg);
}

/* ============================================================
   TECH STACK — Clean white, consistent with partners
   ============================================================ */
#tech-stack {
	background: var(--rs-bg-warm);
}
#tech-stack .bg-wrap {
	background-color: var(--rs-bg-warm) !important;
}
#tech-stack h3 {
	color: var(--rs-text-primary);
	font-size: 30px;
}
#tech-stack .edtel-8-0-0 {
	fill: var(--rs-pink);
}
#tech-stack p {
	color: var(--rs-text-secondary);
	font-size: clamp(13px, 1.2vw, 14px);
	line-height: 1.75;
}
#tech-stack .text-muted {
	font-size: clamp(11px, 1vw, 12px);
	letter-spacing: 0.5px;
	color: var(--rs-text-muted) !important;
}
#tech-stack img {
	opacity: 1;
	filter: none;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
#clients-2col--0 {
	background: var(--rs-bg-white);
}
#clients-2col--0 .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#clients-2col--0 .edtel-8-0-0 {
	fill: var(--rs-pink);
}

/* ============================================================
   STATISTICS / COUNTER — Matching servicii design
   ============================================================ */
#benefits-2col-counter {
	position: relative;
}
#benefits-2col-counter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.06) 30%, rgba(0,0,0,0.06) 70%, transparent 100%);
}
#benefits-2col-counter .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#benefits-2col-counter .counter-number strong {
	font-family: 'OpenSans', sans-serif;
	font-weight: 700;
	letter-spacing: 1.2px;
	color: var(--rs-text-primary);
}
#benefits-2col-counter .counter-number .count-up-data {
	font-size: clamp(30px, 3.5vw, 42px);
	font-weight: 800;
	color: var(--rs-text-primary);
	letter-spacing: -0.5px;
}
#benefits-2col-counter .counter-label {
	font-size: clamp(12px, 1.1vw, 14px);
	color: #666;
	font-weight: 500;
	letter-spacing: 0.3px;
	margin: 0;
}
#benefits-2col-counter p {
	color: var(--rs-text-secondary);
	font-size: clamp(13px, 1.2vw, 14px);
	line-height: 1.75;
}
#benefits-2col-counter .edtel-8-0-0 {
	fill: var(--rs-pink);
}
#benefits-2col-counter svg.mr-30 {
	flex-shrink: 0;
	width: clamp(36px, 4vw, 50px);
	height: clamp(36px, 4vw, 50px);
	stroke-width: 1.3;
	transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
/* Counter items — soft card feel on hover */
#benefits-2col-counter .d-flex.mb-50 {
	padding: var(--sp-sm) var(--sp-md);
	border-radius: 12px;
	transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#benefits-2col-counter .d-flex.mb-50:hover {
	background: rgba(255,18,105,0.04);
	box-shadow: 0 4px 16px rgba(255,18,105,0.06);
	transform: translateY(-2px);
}
#benefits-2col-counter .d-flex.mb-50:hover svg.mr-30 {
	transform: scale(1.08);
}

/* ============================================================
   CONTACT FORM — Clean white with warm form card
   ============================================================ */
#contact-inline-form {
	background: var(--rs-bg-white);
}
#contact-inline-form .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#contact-inline-form h3 {
	color: var(--rs-text-primary);
}
#contact-inline-form .edtel-8-0-0 {
	fill: var(--rs-pink);
}
#contact-inline-form p {
	color: var(--rs-text-secondary);
	font-size: clamp(13px, 1.2vw, 14px);
	line-height: 1.75;
}
#contact-inline-form a:not(.btn):hover {
	color: var(--rs-pink);
}
#contact-inline-form .contact_form {
	background: var(--rs-bg-warm);
	border: 1px solid var(--rs-border-light);
	border-radius: var(--rs-radius-lg);
	box-shadow: var(--rs-shadow-md), 0 0 0 1px rgba(255, 18, 105,0.04);
}
#contact-inline-form .form-control {
	background: var(--rs-bg-white);
	color: var(--rs-text-primary);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: var(--rs-radius-sm);
	padding: var(--sp-sm) var(--sp-md);
	font-size: clamp(13px, 1.2vw, 14px);
	transition: all 0.3s ease;
}
#contact-inline-form .form-control::placeholder {
	color: #aaa;
}
#contact-inline-form .form-control:focus {
	border-color: var(--rs-pink);
	box-shadow: 0 0 0 4px var(--rs-pink-light);
	background: var(--rs-bg-white);
}
#contact-inline-form select.form-control {
	color: #aaa;
}
#contact-inline-form select.form-control option {
	background: var(--rs-bg-white);
	color: var(--rs-text-primary);
}
#contact-inline-form .icon.svg-secondary {
	fill: #999;
}
#contact-inline-form .lbl-style {
	color: #777;
	font-size: clamp(12px, 1.1vw, 13px);
}
#contact-inline-form textarea.form-control {
	min-height: 100px;
	resize: vertical;
}

/* ============================================================
   CONTACT MAP
   ============================================================ */
#contact-map {
	background: var(--rs-bg-white);
	border-top: none;
}
#contact-map .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#contact-map #contact-map-map {
	border-radius: var(--rs-radius-md);
	overflow: hidden;
	border: 1px solid var(--rs-border-light);
	box-shadow: var(--rs-shadow-sm);
}

/* ============================================================
   DISPUTE RESOLUTION (ANPC)
   ============================================================ */
#action-img-text-btn-2 {
	background: var(--rs-bg-white);
}
#action-img-text-btn-2 .bg-wrap {
	background-color: var(--rs-bg-white) !important;
}
#action-img-text-btn-2 p {
	color: var(--rs-text-muted);
}
#action-img-text-btn-2 .edtel-17-0-0 {
	margin: 0 0 0 clamp(-25px, -2vw, -15px);
	font-size: clamp(11px, 1vw, 13px);
	color: var(--rs-text-muted);
}
#action-img-text-btn-2 .edtel-5-0-1 {
	margin: 0 0 0 10px;
}
#action-img-text-btn-2 img {
	opacity: 0.75;
}
@media all and (max-width: 767px) {
	#action-img-text-btn-2 .edtel-17-0-0 {
		margin: 0;
	}
	#action-img-text-btn-2 .edtel-5-0-0 {
		width: 150px;
	}
	#action-img-text-btn-2 .edtel-5-0-1 {
		margin: 0;
		width: 150px;
	}
}

/* ============================================================
   FOOTER — Dark footer
   ============================================================ */
#footer-logo-social {
	background: #232122;
	border-top: none;
}
#footer-logo-social .bg-wrap {
	background-color: #232122 !important;
}
#footer-logo-social .icon.svg-default {
	fill: rgba(255,255,255,0.5);
	transition: all 0.3s ease;
}
#footer-logo-social a:hover .icon.svg-default {
	fill: var(--rs-pink);
	transform: translateY(-3px) scale(1.1);
}

/* ============================================================
   CLIENTS (unused but preserved)
   ============================================================ */
#clients-2col .bg-wrap {
	background-color: var(--rs-bg-warm) !important;
}
#clients-2col .edtel-8-0-0 {
	fill: var(--rs-pink);
}
@media all and (max-width: 767px) {
	#clients-2col [class*="edtel-5-0"] {
		height: 100px;
	}
}

/* ============================================================
   NAVIGATION — Pink underline on hover/active
   ============================================================ */
#nav-megamenu-logo-social .navbar-nav .nav-link {
	position: relative;
	font-weight: 500;
	letter-spacing: 0.3px;
}
#nav-megamenu-logo-social .navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--rs-pink);
	transition: all 0.3s var(--rs-ease);
	transform: translateX(-50%);
	border-radius: 2px;
}
#nav-megamenu-logo-social .navbar-nav .nav-link:hover::after,
#nav-megamenu-logo-social .navbar-nav .nav-link.active::after {
	width: 70%;
}

/* ============================================================
   SECTION DIVIDER — Pink gradient line
   ============================================================ */
.section-divider-pink {
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, var(--rs-pink) 50%, transparent 100%);
	opacity: 0.15;
	margin: 0 auto;
	max-width: 200px;
}

/* ============================================================
   SCROLL REVEAL ANIMATION — Slightly more dramatic
   ============================================================ */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s var(--rs-ease), transform 0.8s var(--rs-ease);
}
.reveal-on-scroll.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   PAGE LOAD FADE-IN
   ============================================================ */
body.light-page {
	animation: pageLoad 0.5s ease-out;
}

/* ============================================================
   GLASS CARD WRAPPERS (utility classes)
   ============================================================ */

/* Mission/Vision/Values glass cards */
.glass-card-mvv {
	background: var(--rs-bg-warm);
	border: 1px solid var(--rs-border-light);
	border-left: 3px solid rgba(255, 18, 105,0.15);
	border-radius: var(--rs-radius-lg);
	padding: var(--sp-lg);
	transition: all 0.4s var(--rs-ease);
	height: 100%;
	box-shadow: var(--rs-shadow-sm);
}
.glass-card-mvv:hover {
	border-color: var(--rs-border-pink);
	border-left-color: var(--rs-pink);
	transform: translateY(-4px);
	box-shadow: var(--rs-shadow-pink), 0 0 0 1px rgba(255, 18, 105,0.06);
}

/* Partner logos glass wrapper */
.partner-glass {
	background: var(--rs-bg-warm);
	border: 1px solid var(--rs-border-light);
	border-radius: 14px;
	padding: var(--sp-md);
	display: flex;
	align-items: center;
	justify-content: center;
	height: clamp(60px, 7vw, 80px);
	transition: all 0.4s var(--rs-ease);
	box-shadow: var(--rs-shadow-sm);
}
.partner-glass:hover {
	border-color: rgba(255, 18, 105,0.2);
	box-shadow: var(--rs-shadow-pink);
	transform: translateY(-2px);
}

/* Tech icons glass wrapper */
.tech-glass {
	background: var(--rs-bg-warm);
	border: 1px solid var(--rs-border-light);
	border-radius: 14px;
	padding: var(--sp-lg) var(--sp-md) var(--sp-md);
	text-align: center;
	transition: all 0.4s var(--rs-ease);
	box-shadow: var(--rs-shadow-sm);
}
.tech-glass:hover {
	border-color: rgba(255, 18, 105,0.15);
	transform: translateY(-2px);
	box-shadow: var(--rs-shadow-pink);
}
.tech-glass:hover img {
	filter: drop-shadow(0 0 8px rgba(255, 18, 105,0.2));
}

/* Glass stat card */
.stat-glass {
	background: var(--rs-bg-white);
	border: 1px solid var(--rs-border-light);
	border-top: 3px solid rgba(255, 18, 105,0.15);
	border-radius: 18px;
	padding: var(--sp-lg) var(--sp-md);
	text-align: center;
	transition: all 0.4s var(--rs-ease);
	box-shadow: var(--rs-shadow-sm);
}
.stat-glass:hover {
	border-color: var(--rs-border-pink);
	border-top-color: var(--rs-pink);
	transform: translateY(-4px);
	box-shadow: var(--rs-shadow-lg);
}
.stat-glass svg {
	margin-bottom: var(--sp-sm);
}
.stat-glass h3 {
	margin-bottom: var(--sp-xs);
}
.stat-glass h4 {
	margin-bottom: 0;
}

/* ============================================================
   MOBILE-FRIENDLY OVERRIDES
   Replace inline fixed-px styles with fluid CSS classes
   ============================================================ */

/* --- Tech grid icon containers (replaces inline height: 70px) --- */
.tech-icon-wrap {
	height: clamp(50px, 8vw, 70px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.tech-icon-wrap img {
	max-height: clamp(36px, 6vw, 50px);
	max-width: clamp(60px, 10vw, 80px);
	object-fit: contain;
}
.tech-icon-wrap + p {
	font-size: clamp(11px, 1vw, 13px);
	text-align: center;
}

/* --- Mission/Vision/Values card images (replaces inline height: 220px) --- */
#desc-img-list-3col .card-img-cover {
	height: clamp(140px, 22vw, 220px);
	width: 100%;
	object-fit: cover;
}

/* --- Counter section SVG icons (replaces inline width/height 64) --- */
#benefits-2col-counter svg.mr-30 {
	width: clamp(36px, 5vw, 50px);
	height: clamp(36px, 5vw, 50px);
}

/* ============================================================
   MOBILE LAYOUT — max-width: 576px (phones)
   ============================================================ */
@media all and (max-width: 576px) {
	/* Reduce large margins on mobile */
	.mb-50 {
		margin-bottom: 30px !important;
	}
	.mr-30 {
		margin-right: 15px !important;
	}

	/* Counter section: keep icon + text side by side */
	#benefits-2col-counter .d-flex.mb-50 {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}
	#benefits-2col-counter .d-flex.mb-50 svg.mr-30 {
		flex-shrink: 0;
	}

	/* Contact form: reduce padding */
	#contact-inline-form .padding-x2 {
		padding: 20px !important;
	}
}