@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
--ruya-navy: #08225c;
--ruya-navy-dark: #04163d;
--ruya-navy-soft: #123574;
--ruya-orange: #ffaf28;
--ruya-pink: #f61067;
--ruya-magenta: #c91fc7;
--ruya-white: #ffffff;
--ruya-bg: #f7f8fc;
--ruya-surface: #eef1f7;
--ruya-text: #12203f;
--ruya-muted: #65708a;
--ruya-border: rgba(8, 34, 92, 0.12);
--ruya-gradient: linear-gradient(
120deg,
var(--ruya-orange) 0%,
var(--ruya-pink) 55%,
var(--ruya-magenta) 100%
);
--ruya-radius-sm: 14px;
--ruya-radius-md: 24px;
--ruya-radius-lg: 36px;
--ruya-shadow: 0 24px 70px rgba(5, 23, 61, 0.12);
--ruya-container: 1180px;
--ruya-transition: 0.35s cubic-bezier(.2,.7,.2,1);
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: var(--ruya-white);
color: var(--ruya-text);
overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
font-family: 'Almarai', sans-serif;
}

.ruya-site-part {
position: relative;
width: 100%;
box-sizing: border-box;
}

.ruya-site-part[dir="ltr"],
.ruya-site-part[dir="ltr"] button,
.ruya-site-part[dir="ltr"] input,
.ruya-site-part[dir="ltr"] textarea,
.ruya-site-part[dir="ltr"] select {
font-family: 'Manrope', sans-serif;
}

.ruya-site-part *,
.ruya-site-part *::before,
.ruya-site-part *::after,
.ruya-header *,
.ruya-footer *,
.ruya-footer *::before,
.ruya-footer *::after {
box-sizing: border-box;
}

.ruya-site-part img,
.ruya-header img,
.ruya-footer img {
display: block;
max-width: 100%;
}

.ruya-site-part a,
.ruya-header a,
.ruya-footer a {
color: inherit;
text-decoration: none;
}

.ruya-container {
width: min(calc(100% - 40px), var(--ruya-container));
margin-inline: auto;
}

.ruya-gradient-text {
display: block;
color: transparent;
background: var(--ruya-gradient);
-webkit-background-clip: text;
background-clip: text;
}

.ruya-section-label {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 18px;
color: var(--ruya-navy);
font-size: 13px;
font-weight: 800;
letter-spacing: .04em;
}

.ruya-section-label::before {
content: "";
width: 26px;
height: 2px;
border-radius: 999px;
background: var(--ruya-gradient);
}

.ruya-section-label--light {
color: rgba(255,255,255,.8);
}

.ruya-section-title {
margin: 0;
color: var(--ruya-navy);
font-size: clamp(34px, 5vw, 64px);
line-height: 1.25;
letter-spacing: -.04em;
font-weight: 800;
}

.ruya-section-title--light {
color: var(--ruya-white);
}

.ruya-section-intro {
max-width: 520px;
margin: 0;
color: var(--ruya-muted);
font-size: 17px;
line-height: 2;
}

.ruya-section-intro--light {
color: rgba(255,255,255,.68);
}

.ruya-section-intro--center {
margin-inline: auto;
text-align: center;
}

.ruya-section-head {
display: grid;
grid-template-columns: 1.15fr .85fr;
gap: 70px;
align-items: end;
margin-bottom: 70px;
}

.ruya-section-head--center {
display: block;
max-width: 780px;
margin: 0 auto 70px;
text-align: center;
}

.ruya-section-head--dark {
position: relative;
z-index: 2;
}

.ruya-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
min-height: 54px;
padding: 0 24px;
border-radius: 999px;
font-size: 14px;
font-weight: 800;
transition:
transform var(--ruya-transition),
box-shadow var(--ruya-transition),
background var(--ruya-transition);
}

.ruya-button svg {
width: 20px;
height: 20px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-button:hover {
transform: translateY(-3px);
}

.ruya-button--primary,
.ruya-button--gradient {
color: var(--ruya-white);
background: var(--ruya-gradient);
box-shadow: 0 16px 38px rgba(240, 15, 104, .25);
}

.ruya-button--secondary {
color: var(--ruya-navy);
background: rgba(255,255,255,.88);
border: 1px solid var(--ruya-border);
}

.ruya-button--outline-light {
color: var(--ruya-white);
border: 1px solid rgba(255,255,255,.25);
background: rgba(255,255,255,.05);
}

.ruya-reveal {
opacity: 1;
transform: none;
}

/* HEADER */

.ruya-header {
position: sticky;
top: 0;
z-index: 1000;
width: 100%;
direction: rtl;
background: rgba(255,255,255,.88);
border-bottom: 1px solid rgba(8,34,92,.08);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}

.ruya-header-inner {
width: min(calc(100% - 40px), var(--ruya-container));
min-height: 82px;
margin-inline: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
}

.ruya-header-brand {
display: inline-flex;
align-items: center;
gap: 12px;
min-width: 210px;
}

.ruya-header-brand img {
width: 56px;
height: 56px;
object-fit: contain;
}

.ruya-header-brand-copy {
display: flex;
flex-direction: column;
gap: 3px;
}

.ruya-header-brand-copy strong {
color: var(--ruya-navy);
font-size: 15px;
font-weight: 800;
}

.ruya-header-brand-copy small {
color: var(--ruya-muted);
font-size: 9px;
font-weight: 700;
}

.ruya-desktop-nav {
display: flex;
align-items: center;
gap: 25px;
}

.ruya-nav-link {
position: relative;
color: var(--ruya-muted);
font-size: 12px;
font-weight: 700;
white-space: nowrap;
transition: color var(--ruya-transition);
}

.ruya-nav-link::after {
content: "";
position: absolute;
right: 0;
bottom: -12px;
width: 0;
height: 2px;
border-radius: 99px;
background: var(--ruya-gradient);
transition: width var(--ruya-transition);
}

.ruya-nav-link:hover,
.ruya-nav-link.is-active {
color: var(--ruya-navy);
}

.ruya-nav-link:hover::after,
.ruya-nav-link.is-active::after {
width: 100%;
}

.ruya-header-actions {
display: flex;
align-items: center;
gap: 10px;
}

.ruya-language-button,
.ruya-menu-button {
border: 0;
cursor: pointer;
}

.ruya-language-button {
width: 48px;
height: 42px;
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 5px;
color: var(--ruya-navy);
background: var(--ruya-surface);
}

.ruya-language-button span {
font-family: 'Manrope', sans-serif;
font-size: 11px;
font-weight: 800;
}

.ruya-language-button svg {
width: 15px;
height: 15px;
fill: none;
stroke: currentColor;
stroke-width: 1.6;
}

.ruya-header-cta {
min-height: 42px;
padding: 0 18px;
border-radius: 999px;
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--ruya-white);
background: var(--ruya-navy);
font-size: 11px;
font-weight: 800;
}

.ruya-header-cta svg {
width: 17px;
height: 17px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
}

.ruya-menu-button {
display: none;
width: 44px;
height: 42px;
border-radius: 50%;
background: var(--ruya-navy);
align-items: center;
justify-content: center;
flex-direction: column;
gap: 6px;
}

.ruya-menu-button span {
width: 18px;
height: 2px;
background: white;
border-radius: 99px;
}

.ruya-mobile-menu {
background: var(--ruya-white);
border-top: 1px solid var(--ruya-border);
padding: 22px;
}

.ruya-mobile-nav {
display: grid;
gap: 4px;
}

.ruya-mobile-link {
display: block;
padding: 13px 10px;
color: var(--ruya-navy);
font-size: 14px;
font-weight: 700;
border-bottom: 1px solid var(--ruya-border);
}

.ruya-mobile-cta {
display: flex;
justify-content: center;
margin-top: 18px;
padding: 15px 20px;
border-radius: 999px;
color: white;
background: var(--ruya-gradient);
font-size: 13px;
font-weight: 800;
}

/* HERO */

.ruya-hero {
min-height: calc(100vh - 82px);
padding: 90px 0 55px;
overflow: hidden;
background:
radial-gradient(circle at 15% 20%, rgba(246,16,103,.09), transparent 32%),
radial-gradient(circle at 85% 55%, rgba(255,175,40,.13), transparent 35%),
linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.ruya-hero-bg,
.ruya-services-bg,
.ruya-patent-bg,
.ruya-contact-bg {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}

.ruya-hero-grid {
position: absolute;
inset: 0;
opacity: .32;
background-image:
linear-gradient(rgba(8,34,92,.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(8,34,92,.035) 1px, transparent 1px);
background-size: 44px 44px;
mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.ruya-hero-orb {
position: absolute;
width: 420px;
height: 420px;
border-radius: 50%;
filter: blur(80px);
opacity: .14;
}

.ruya-hero-orb--one {
top: -170px;
right: -120px;
background: var(--ruya-pink);
}

.ruya-hero-orb--two {
left: -160px;
bottom: -200px;
background: var(--ruya-orange);
}

.ruya-hero-inner {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1.08fr .92fr;
align-items: center;
gap: 80px;
}

.ruya-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 24px;
color: var(--ruya-navy);
font-size: 13px;
font-weight: 700;
}

.ruya-eyebrow-dot {
width: 9px;
height: 9px;
border-radius: 50%;
background: var(--ruya-gradient);
box-shadow: 0 0 0 7px rgba(246,16,103,.08);
}

.ruya-hero-title {
margin: 0 0 28px;
color: var(--ruya-navy);
font-size: clamp(48px, 6vw, 82px);
font-weight: 800;
line-height: 1.18;
letter-spacing: -.055em;
}

.ruya-hero-title > span {
display: block;
}

.ruya-hero-text {
max-width: 650px;
margin: 0;
color: var(--ruya-muted);
font-size: 18px;
line-height: 2;
}

.ruya-hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 34px;
}

.ruya-hero-trust {
display: flex;
flex-wrap: wrap;
gap: 28px;
margin-top: 34px;
}

.ruya-hero-trust-item {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--ruya-navy);
font-size: 12px;
font-weight: 700;
}

.ruya-hero-trust-icon {
width: 31px;
height: 31px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(8,34,92,.07);
}

.ruya-hero-trust-icon svg {
width: 17px;
height: 17px;
fill: none;
stroke: var(--ruya-navy);
stroke-width: 1.7;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-hero-visual {
position: relative;
min-height: 560px;
display: flex;
align-items: center;
justify-content: center;
}

.ruya-hero-card {
position: relative;
width: min(100%, 430px);
min-height: 480px;
padding: 38px;
border-radius: var(--ruya-radius-lg);
background: rgba(255,255,255,.78);
border: 1px solid rgba(255,255,255,.75);
box-shadow: var(--ruya-shadow);
backdrop-filter: blur(18px);
}

.ruya-hero-logo-wrap {
position: relative;
height: 330px;
display: flex;
align-items: center;
justify-content: center;
}

.ruya-hero-logo-wrap img {
position: relative;
z-index: 2;
width: 260px;
height: 260px;
object-fit: contain;
}

.ruya-hero-logo-glow {
position: absolute;
width: 230px;
height: 230px;
border-radius: 50%;
background: var(--ruya-gradient);
opacity: .13;
filter: blur(35px);
}

.ruya-hero-card-copy {
padding-top: 18px;
border-top: 1px solid var(--ruya-border);
}

.ruya-hero-card-copy small,
.ruya-hero-card-copy strong {
display: block;
}

.ruya-hero-card-copy small {
margin-bottom: 6px;
color: var(--ruya-muted);
font-size: 12px;
}

.ruya-hero-card-copy strong {
color: var(--ruya-navy);
font-size: 21px;
}

.ruya-floating-badge {
position: absolute;
z-index: 4;
min-width: 220px;
padding: 17px 19px;
border-radius: 18px;
display: flex;
align-items: center;
gap: 13px;
color: var(--ruya-navy);
background: rgba(255,255,255,.95);
box-shadow: 0 18px 45px rgba(5,23,61,.13);
}

.ruya-floating-badge--patent {
top: 45px;
right: -30px;
}

.ruya-floating-badge--consulting {
bottom: 55px;
left: -48px;
}

.ruya-floating-badge-number,
.ruya-floating-badge-icon {
width: 42px;
height: 42px;
flex: 0 0 auto;
border-radius: 13px;
display: flex;
align-items: center;
justify-content: center;
color: white;
background: var(--ruya-gradient);
font-family: 'Manrope', sans-serif;
font-size: 13px;
font-weight: 800;
}

.ruya-floating-badge-icon svg {
width: 22px;
height: 22px;
fill: none;
stroke: white;
stroke-width: 1.7;
}

.ruya-floating-badge small,
.ruya-floating-badge strong {
display: block;
}

.ruya-floating-badge small {
margin-bottom: 4px;
color: var(--ruya-muted);
font-size: 10px;
}

.ruya-floating-badge strong {
font-size: 12px;
}

/* TRUST */

.ruya-trust-section {
position: relative;
z-index: 4;
padding: 0 0 60px;
background: var(--ruya-bg);
}

.ruya-trust-strip {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-radius: var(--ruya-radius-md);
overflow: hidden;
background: var(--ruya-navy);
box-shadow: 0 22px 60px rgba(5,23,61,.16);
}

.ruya-trust-card {
position: relative;
min-height: 178px;
padding: 28px;
display: flex;
gap: 16px;
color: white;
border-inline-end: 1px solid rgba(255,255,255,.11);
}

.ruya-trust-card:last-child {
border-inline-end: 0;
}

.ruya-trust-card--highlight {
background: linear-gradient(145deg, rgba(255,175,40,.17), rgba(246,16,103,.15));
}

.ruya-trust-number {
flex: 0 0 auto;
color: var(--ruya-orange);
font-family: 'Manrope', sans-serif;
font-size: 12px;
font-weight: 800;
}

.ruya-trust-copy strong {
display: block;
margin-bottom: 10px;
font-size: 14px;
line-height: 1.65;
}

.ruya-trust-copy p {
margin: 0;
color: rgba(255,255,255,.62);
font-size: 11px;
line-height: 1.8;
}

/* ABOUT */

.ruya-about,
.ruya-process,
.ruya-sectors,
.ruya-philosophy {
padding: 110px 0;
background: var(--ruya-white);
}

.ruya-about-grid {
display: grid;
grid-template-columns: 1.25fr .75fr .75fr;
gap: 24px;
}

.ruya-about-story,
.ruya-about-card {
position: relative;
min-height: 350px;
padding: 34px;
border: 1px solid var(--ruya-border);
border-radius: var(--ruya-radius-md);
background: var(--ruya-white);
overflow: hidden;
}

.ruya-about-story {
display: flex;
flex-direction: column;
justify-content: space-between;
color: white;
background:
linear-gradient(145deg, rgba(8,34,92,.97), rgba(4,22,61,.98));
box-shadow: var(--ruya-shadow);
}

.ruya-about-story::after {
content: "";
position: absolute;
width: 240px;
height: 240px;
left: -80px;
bottom: -100px;
border-radius: 50%;
background: var(--ruya-gradient);
opacity: .14;
filter: blur(15px);
}

.ruya-about-story-index,
.ruya-about-card-number,
.ruya-service-number,
.ruya-process-number,
.ruya-sector-number,
.ruya-philosophy-number {
font-family: 'Manrope', sans-serif;
font-size: 12px;
font-weight: 800;
}

.ruya-about-story-index {
color: var(--ruya-orange);
}

.ruya-about-story-text {
position: relative;
z-index: 2;
margin: 55px 0;
font-size: 21px;
line-height: 2;
font-weight: 700;
}

.ruya-about-signature {
position: relative;
z-index: 2;
display: flex;
align-items: center;
gap: 15px;
}

.ruya-about-signature-line {
width: 42px;
height: 2px;
background: var(--ruya-gradient);
}

.ruya-about-signature strong,
.ruya-about-signature small {
display: block;
}

.ruya-about-signature strong {
margin-bottom: 5px;
font-size: 13px;
}

.ruya-about-signature small {
color: rgba(255,255,255,.6);
font-size: 10px;
}

.ruya-about-card {
transition:
transform var(--ruya-transition),
box-shadow var(--ruya-transition),
border-color var(--ruya-transition);
}

.ruya-about-card:hover {
transform: translateY(-8px);
border-color: rgba(246,16,103,.3);
box-shadow: var(--ruya-shadow);
}

.ruya-about-card-top,
.ruya-service-card-top {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 70px;
}

.ruya-about-card-number,
.ruya-service-number {
color: var(--ruya-pink);
}

.ruya-about-card-icon,
.ruya-service-icon {
width: 52px;
height: 52px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ruya-navy);
background: var(--ruya-surface);
}

.ruya-about-card-icon svg,
.ruya-service-icon svg {
width: 25px;
height: 25px;
fill: none;
stroke: currentColor;
stroke-width: 1.6;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-about-card h3 {
margin: 0 0 16px;
color: var(--ruya-navy);
font-size: 24px;
}

.ruya-about-card p {
margin: 0;
color: var(--ruya-muted);
font-size: 14px;
line-height: 2;
}

/* SERVICES */

.ruya-services-intro {
padding: 110px 0 55px;
overflow: hidden;
color: white;
background: var(--ruya-navy-dark);
}

.ruya-services-pattern,
.ruya-patent-pattern,
.ruya-contact-pattern {
position: absolute;
inset: 0;
opacity: .16;
background-image:
linear-gradient(45deg, rgba(255,255,255,.06) 25%, transparent 25%),
linear-gradient(-45deg, rgba(255,255,255,.06) 25%, transparent 25%);
background-size: 70px 70px;
}

.ruya-services-orb,
.ruya-patent-orb,
.ruya-contact-orb {
position: absolute;
width: 440px;
height: 440px;
border-radius: 50%;
filter: blur(100px);
opacity: .18;
}

.ruya-services-orb--one,
.ruya-contact-orb--one {
top: -160px;
right: -130px;
background: var(--ruya-pink);
}

.ruya-services-orb--two,
.ruya-contact-orb--two {
left: -160px;
bottom: -190px;
background: var(--ruya-orange);
}

.ruya-services-summary {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(5, 1fr);
border-top: 1px solid rgba(255,255,255,.12);
border-bottom: 1px solid rgba(255,255,255,.12);
}

.ruya-services-summary-item {
min-height: 130px;
padding: 26px 20px;
border-inline-end: 1px solid rgba(255,255,255,.1);
}

.ruya-services-summary-item:last-child {
border-inline-end: 0;
}

.ruya-services-summary-item span {
display: block;
margin-bottom: 25px;
color: var(--ruya-orange);
font-family: 'Manrope', sans-serif;
font-size: 11px;
font-weight: 800;
}

.ruya-services-summary-item strong {
font-size: 13px;
line-height: 1.7;
}

.ruya-services-details {
padding: 60px 0 110px;
background: var(--ruya-navy-dark);
}

.ruya-services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px;
}

.ruya-service-card {
padding: 34px;
border-radius: var(--ruya-radius-md);
border: 1px solid rgba(255,255,255,.11);
color: white;
background: rgba(255,255,255,.05);
transition:
transform var(--ruya-transition),
background var(--ruya-transition),
border-color var(--ruya-transition);
}

.ruya-service-card:hover {
transform: translateY(-7px);
border-color: rgba(255,175,40,.28);
background: rgba(255,255,255,.08);
}

.ruya-service-card--wide {
grid-column: 1 / -1;
}

.ruya-service-card-top {
margin-bottom: 34px;
}

.ruya-service-icon {
color: white;
background: rgba(255,255,255,.09);
}

.ruya-service-card h3 {
margin: 0 0 15px;
font-size: 25px;
line-height: 1.5;
}

.ruya-service-card > p {
margin: 0 0 25px;
color: rgba(255,255,255,.63);
font-size: 14px;
line-height: 1.9;
}

.ruya-service-card ul {
margin: 0;
padding: 0;
list-style: none;
display: grid;
gap: 13px;
}

.ruya-service-list-columns {
grid-template-columns: repeat(2, 1fr);
}

.ruya-service-card li {
position: relative;
padding-inline-start: 22px;
color: rgba(255,255,255,.86);
font-size: 13px;
line-height: 1.7;
}

.ruya-service-card li::before {
content: "";
position: absolute;
top: .7em;
inset-inline-start: 0;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--ruya-gradient);
}

/* PROCESS */

.ruya-process {
background: var(--ruya-bg);
}

.ruya-process-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.ruya-process-card {
position: relative;
min-height: 270px;
padding: 30px;
border-radius: var(--ruya-radius-md);
background: white;
border: 1px solid var(--ruya-border);
overflow: hidden;
transition:
transform var(--ruya-transition),
box-shadow var(--ruya-transition);
}

.ruya-process-card:hover {
transform: translateY(-7px);
box-shadow: var(--ruya-shadow);
}

.ruya-process-card--accent {
color: white;
background: var(--ruya-navy);
}

.ruya-process-number {
display: inline-flex;
margin-bottom: 65px;
color: var(--ruya-pink);
}

.ruya-process-card--accent .ruya-process-number {
color: var(--ruya-orange);
}

.ruya-process-card h3 {
margin: 0 0 14px;
color: var(--ruya-navy);
font-size: 21px;
}

.ruya-process-card--accent h3 {
color: white;
}

.ruya-process-card p {
margin: 0;
color: var(--ruya-muted);
font-size: 13px;
line-height: 1.9;
}

.ruya-process-card--accent p {
color: rgba(255,255,255,.68);
}

/* PATENT */

.ruya-patent {
padding: 110px 0;
overflow: hidden;
color: white;
background:
linear-gradient(135deg, var(--ruya-navy-dark), var(--ruya-navy));
}

.ruya-patent-orb--one {
top: -160px;
left: -130px;
background: var(--ruya-magenta);
}

.ruya-patent-orb--two {
right: -180px;
bottom: -200px;
background: var(--ruya-orange);
}

.ruya-patent-inner {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: .85fr 1.15fr;
align-items: center;
gap: 90px;
}

.ruya-patent-visual {
position: relative;
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
}

.ruya-patent-document {
width: 330px;
min-height: 430px;
padding: 30px;
border-radius: 18px;
transform: rotate(-4deg);
color: var(--ruya-navy);
background: linear-gradient(145deg, #fff, #edf0f6);
box-shadow: 0 35px 90px rgba(0,0,0,.28);
}

.ruya-patent-document-code {
font-family: 'Manrope', sans-serif;
font-size: 11px;
font-weight: 800;
letter-spacing: .12em;
}

.ruya-patent-seal {
width: 180px;
height: 180px;
margin: 58px auto 40px;
}

.ruya-patent-seal svg {
width: 100%;
height: 100%;
fill: none;
stroke: var(--ruya-pink);
stroke-width: 2;
}

.ruya-patent-document-lines {
display: grid;
gap: 12px;
}

.ruya-patent-document-lines span {
height: 7px;
border-radius: 99px;
background: rgba(8,34,92,.12);
}

.ruya-patent-document-lines .is-short {
width: 58%;
}

.ruya-patent-badge {
position: absolute;
right: 5px;
bottom: 45px;
padding: 18px 22px;
border-radius: 18px;
color: var(--ruya-navy);
background: white;
box-shadow: var(--ruya-shadow);
}

.ruya-patent-badge strong,
.ruya-patent-badge small {
display: block;
}

.ruya-patent-badge strong {
margin-bottom: 5px;
color: var(--ruya-pink);
font-family: 'Manrope', sans-serif;
}

.ruya-patent-badge small {
font-size: 11px;
font-weight: 700;
}

.ruya-patent-text {
margin: 30px 0;
color: rgba(255,255,255,.72);
font-size: 17px;
line-height: 2;
}

.ruya-patent-points {
display: grid;
gap: 17px;
}

.ruya-patent-point {
display: flex;
align-items: flex-start;
gap: 13px;
}

.ruya-patent-point-icon {
width: 28px;
height: 28px;
flex: 0 0 auto;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
background: var(--ruya-gradient);
}

.ruya-patent-point-icon svg {
width: 15px;
height: 15px;
fill: none;
stroke: currentColor;
stroke-width: 2;
}

.ruya-patent-point p {
margin: 2px 0 0;
color: rgba(255,255,255,.8);
font-size: 13px;
line-height: 1.8;
}

/* SECTORS */

.ruya-sector-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1px solid var(--ruya-border);
border-inline-start: 1px solid var(--ruya-border);
}

.ruya-sector-card {
position: relative;
min-height: 210px;
padding: 27px;
display: flex;
flex-direction: column;
justify-content: space-between;
border-inline-end: 1px solid var(--ruya-border);
border-bottom: 1px solid var(--ruya-border);
transition:
color var(--ruya-transition),
background var(--ruya-transition);
}

.ruya-sector-card:hover,
.ruya-sector-card--accent {
color: white;
background: var(--ruya-navy);
}

.ruya-sector-number {
color: var(--ruya-pink);
}

.ruya-sector-card:hover .ruya-sector-number,
.ruya-sector-card--accent .ruya-sector-number {
color: var(--ruya-orange);
}

.ruya-sector-card h3 {
margin: 0;
color: var(--ruya-navy);
font-size: 19px;
line-height: 1.65;
}

.ruya-sector-card:hover h3,
.ruya-sector-card--accent h3 {
color: white;
}

/* ENGAGEMENT */

.ruya-engagement {
padding: 110px 0;
color: white;
background: var(--ruya-navy-dark);
}

.ruya-engagement-grid {
display: grid;
grid-template-columns: 1.1fr .85fr .55fr;
gap: 22px;
align-items: stretch;
}

.ruya-engagement-wide,
.ruya-engagement-portrait {
position: relative;
margin: 0;
overflow: hidden;
border-radius: var(--ruya-radius-md);
}

.ruya-engagement-wide img,
.ruya-engagement-portrait img {
width: 100%;
height: 100%;
object-fit: cover;
}

.ruya-engagement-wide {
min-height: 560px;
}

.ruya-engagement-story {
padding: 35px;
border-radius: var(--ruya-radius-md);
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.1);
}

.ruya-engagement-kicker {
display: inline-flex;
margin-bottom: 25px;
color: var(--ruya-orange);
font-size: 12px;
font-weight: 800;
}

.ruya-engagement-story h3 {
margin: 0 0 25px;
font-size: 26px;
line-height: 1.55;
}

.ruya-engagement-story p {
margin: 0 0 17px;
color: rgba(255,255,255,.68);
font-size: 13px;
line-height: 1.95;
}

.ruya-engagement-portrait {
min-height: 560px;
}

.ruya-engagement-caption {
position: absolute;
inset-inline: 16px;
bottom: 16px;
padding: 16px;
border-radius: 15px;
background: rgba(4,22,61,.84);
backdrop-filter: blur(12px);
}

.ruya-engagement-caption strong,
.ruya-engagement-caption small {
display: block;
}

.ruya-engagement-caption strong {
margin-bottom: 5px;
font-size: 13px;
}

.ruya-engagement-caption small {
color: rgba(255,255,255,.6);
font-size: 10px;
}

/* PHILOSOPHY */

.ruya-philosophy {
background: var(--ruya-bg);
}

.ruya-philosophy-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.ruya-philosophy-card {
min-height: 350px;
padding: 34px;
border-radius: var(--ruya-radius-md);
border: 1px solid var(--ruya-border);
background: white;
}

.ruya-philosophy-card--values {
color: white;
background: var(--ruya-navy);
}

.ruya-philosophy-number {
display: block;
margin-bottom: 75px;
color: var(--ruya-pink);
}

.ruya-philosophy-card--values .ruya-philosophy-number {
color: var(--ruya-orange);
}

.ruya-philosophy-card h3 {
margin: 0 0 18px;
color: var(--ruya-navy);
font-size: 27px;
}

.ruya-philosophy-card--values h3 {
color: white;
}

.ruya-philosophy-card p {
margin: 0;
color: var(--ruya-muted);
font-size: 14px;
line-height: 2;
}

.ruya-values-grid {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.ruya-values-grid span {
padding: 10px 13px;
border-radius: 999px;
color: rgba(255,255,255,.88);
background: rgba(255,255,255,.09);
font-size: 11px;
font-weight: 700;
}

/* CONTACT */

.ruya-contact {
padding: 120px 0;
overflow: hidden;
color: white;
background: var(--ruya-navy-dark);
}

.ruya-contact-panel {
position: relative;
z-index: 2;
max-width: 980px;
margin-inline: auto;
padding: 72px 60px;
text-align: center;
border-radius: var(--ruya-radius-lg);
border: 1px solid rgba(255,255,255,.13);
background:
radial-gradient(
circle at 20% 20%,
rgba(246,16,103,.13),
transparent 32%
),
radial-gradient(
circle at 80% 80%,
rgba(255,175,40,.12),
transparent 34%
),
rgba(255,255,255,.045);
}

.ruya-contact-panel .ruya-section-label {
justify-content: center;
}

.ruya-contact-panel .ruya-section-title {
max-width: 820px;
margin-inline: auto;
}

.ruya-contact-description {
max-width: 670px;
margin: 28px auto 0;
color: rgba(255,255,255,.68);
font-size: 16px;
line-height: 2;
}

.ruya-contact-actions {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 13px;
margin-top: 34px;
}

/* FOOTER */

.ruya-footer {
padding: 72px 0 28px;
color: white;
background: #020d26;
direction: rtl;
}

.ruya-footer-main {
display: grid;
grid-template-columns: 1.35fr .7fr 1fr .8fr;
gap: 60px;
align-items: start;
}

.ruya-footer-company {
max-width: 390px;
}

.ruya-footer-brand {
display: flex;
align-items: center;
gap: 15px;
}

.ruya-footer-brand img {
width: 72px;
height: 72px;
object-fit: contain;
}

.ruya-footer-brand strong,
.ruya-footer-brand span {
display: block;
}

.ruya-footer-brand strong {
margin-bottom: 5px;
font-size: 17px;
}

.ruya-footer-brand span {
color: rgba(255,255,255,.52);
font-size: 10px;
}

.ruya-footer-company > p {
margin: 24px 0;
color: rgba(255,255,255,.5);
font-size: 12px;
line-height: 2;
}

.ruya-footer-column h3 {
margin: 8px 0 25px;
color: white;
font-size: 14px;
font-weight: 800;
}

.ruya-footer-nav {
display: grid;
gap: 14px;
}

.ruya-footer-nav a {
width: fit-content;
color: rgba(255,255,255,.58);
font-size: 11px;
font-weight: 700;
transition: color var(--ruya-transition);
}

.ruya-footer-nav a:hover {
color: white;
}

.ruya-footer-contact,
.ruya-footer-locations {
display: grid;
gap: 20px;
}

.ruya-footer-contact a,
.ruya-footer-locations > div {
display: block;
}

.ruya-footer-contact small,
.ruya-footer-contact strong,
.ruya-footer-locations small,
.ruya-footer-locations strong {
display: block;
}

.ruya-footer-contact small,
.ruya-footer-locations small {
margin-bottom: 7px;
color: rgba(255,255,255,.42);
font-size: 9px;
}

.ruya-footer-contact strong,
.ruya-footer-locations strong {
color: rgba(255,255,255,.82);
font-size: 11px;
line-height: 1.7;
}

.ruya-footer-socials {
display: flex;
gap: 9px;
}

.ruya-footer-socials a {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255,255,255,.12);
transition:
background var(--ruya-transition),
border-color var(--ruya-transition),
transform var(--ruya-transition);
}

.ruya-footer-socials a:hover {
transform: translateY(-3px);
border-color: transparent;
background: var(--ruya-gradient);
}

.ruya-footer-socials svg {
width: 18px;
height: 18px;
fill: none;
stroke: white;
stroke-width: 1.7;
}

.ruya-footer-divider {
height: 1px;
margin: 55px 0 24px;
background: rgba(255,255,255,.1);
}

.ruya-footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 25px;
}

.ruya-footer-bottom p {
margin: 0;
color: rgba(255,255,255,.4);
font-size: 10px;
line-height: 1.7;
}

.ruya-back-to-top {
display: inline-flex;
align-items: center;
gap: 9px;
color: rgba(255,255,255,.65);
font-size: 11px;
font-weight: 700;
}

.ruya-back-to-top svg {
width: 17px;
height: 17px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
}

.ruya-floating-whatsapp {
position: fixed;
z-index: 1200;
right: 22px;
bottom: 22px;
min-height: 50px;
padding: 0 18px;
border-radius: 999px;
display: flex;
align-items: center;
gap: 9px;
color: white;
background: #1dbf73;
box-shadow: 0 16px 38px rgba(29,191,115,.3);
font-size: 12px;
font-weight: 800;
}

.ruya-floating-whatsapp svg {
width: 22px;
height: 22px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
}

@media (max-width: 1100px) {
.ruya-footer-main {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 767px) {
.ruya-contact {
padding: 75px 0;
}

.ruya-contact-panel {
padding: 45px 24px;
}

.ruya-contact-actions {
flex-direction: column;
}

.ruya-footer {
padding-top: 55px;
}

.ruya-footer-main {
grid-template-columns: 1fr;
gap: 38px;
}

.ruya-footer-company {
max-width: none;
}

.ruya-footer-bottom {
flex-direction: column;
align-items: flex-start;
}
}

/* =========================================================
FOUNDER
========================================================= */

.ruya-founder {
padding: 110px 0;
background: var(--ruya-white);
}

.ruya-founder-layout {
display: grid;
grid-template-columns: .82fr 1.18fr;
gap: 75px;
align-items: stretch;
}

/* Portrait now follows the height of the text column */
.ruya-founder-portrait {
position: relative;
top: auto;
margin: 0;
min-height: 0;
height: 100%;
overflow: hidden;
border-radius: 34px;
background: var(--ruya-surface);
box-shadow: var(--ruya-shadow);
}

.ruya-founder-portrait img {
width: 100%;
height: 100%;
min-height: 100%;
object-fit: cover;
object-position: center 42%;
}

.ruya-founder-portrait figcaption {
position: absolute;
right: 18px;
left: 18px;
bottom: 18px;
padding: 18px;
border-radius: 18px;
color: white;
background: rgba(4,22,61,.84);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
}

.ruya-founder-portrait strong,
.ruya-founder-portrait span {
display: block;
}

.ruya-founder-portrait strong {
margin-bottom: 6px;
font-size: 16px;
}

.ruya-founder-portrait span {
color: rgba(255,255,255,.62);
font-size: 11px;
}

.ruya-founder-content {
min-width: 0;
}

.ruya-founder-role {
margin: 25px 0;
color: var(--ruya-pink);
font-size: 14px;
font-weight: 800;
line-height: 1.9;
}

.ruya-founder-copy {
display: grid;
gap: 16px;
}

.ruya-founder-copy p {
margin: 0;
color: var(--ruya-muted);
font-size: 15px;
line-height: 2;
}

.ruya-founder-award {
margin-top: 30px;
padding: 25px;
display: flex;
align-items: flex-start;
gap: 18px;
border-radius: 22px;
color: white;
background: var(--ruya-navy);
}

.ruya-founder-award-year {
flex: 0 0 auto;
color: var(--ruya-orange);
font-family: 'Manrope', sans-serif;
font-size: 25px;
font-weight: 800;
}

.ruya-founder-award small,
.ruya-founder-award strong {
display: block;
}

.ruya-founder-award small {
margin-bottom: 7px;
color: var(--ruya-orange);
font-size: 10px;
font-weight: 800;
}

.ruya-founder-award strong {
font-size: 18px;
line-height: 1.6;
}

.ruya-founder-award p {
margin: 8px 0 0;
color: rgba(255,255,255,.65);
font-size: 12px;
line-height: 1.8;
}

.ruya-founder-memberships {
display: flex;
flex-wrap: wrap;
gap: 9px;
margin-top: 24px;
}

.ruya-founder-memberships span,
.ruya-founder-expertise span {
padding: 11px 14px;
border-radius: 999px;
color: var(--ruya-navy);
background: var(--ruya-surface);
font-size: 11px;
font-weight: 700;
}

.ruya-founder-expertise {
margin-top: 55px;
padding-top: 30px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
border-top: 1px solid var(--ruya-border);
}

.ruya-founder-quote {
max-width: 900px;
margin: 55px auto 0;
padding: 38px;
text-align: center;
border-radius: 28px;
color: white;
background:
linear-gradient(135deg, var(--ruya-navy), var(--ruya-navy-dark));
}

.ruya-founder-quote p {
margin: 0;
font-size: 21px;
font-weight: 700;
line-height: 2;
}

.ruya-founder-quote cite {
display: block;
margin-top: 17px;
color: var(--ruya-orange);
font-size: 11px;
font-style: normal;
font-weight: 800;
}

/* =========================================================
MILESTONES
========================================================= */

.ruya-milestones {
padding: 110px 0;
color: white;
background: var(--ruya-navy-dark);
}

.ruya-slider {
position: relative;
}

.ruya-slider-track {
position: relative;
min-height: 0;
}

.ruya-slide {
display: none;
overflow: hidden;
border-radius: 30px;
background: var(--ruya-navy);
}

.ruya-slide.is-active {
display: grid;
grid-template-columns: 1.35fr .65fr;
}

.ruya-slide img {
width: 100%;
height: 100%;
min-height: 560px;
object-fit: cover;
}

.ruya-slide-caption {
padding: 45px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}

.ruya-slide-caption > span {
margin-bottom: auto;
color: var(--ruya-orange);
font-family: 'Manrope', sans-serif;
font-size: 13px;
font-weight: 800;
}

.ruya-slide-caption strong {
font-size: 27px;
line-height: 1.55;
}

.ruya-slide-caption p {
margin: 15px 0 0;
color: rgba(255,255,255,.63);
font-size: 13px;
line-height: 1.9;
}

.ruya-slider-controls {
margin-top: 24px;
display: flex;
justify-content: center;
align-items: center;
gap: 18px;
}

.ruya-slider-button {
width: 45px;
height: 45px;
border: 1px solid rgba(255,255,255,.18);
border-radius: 50%;
color: white;
background: transparent;
cursor: pointer;
}

.ruya-slider-dots {
display: flex;
gap: 8px;
}

.ruya-slider-dots button {
width: 8px;
height: 8px;
padding: 0;
border: 0;
border-radius: 99px;
background: rgba(255,255,255,.28);
cursor: pointer;
}

.ruya-slider-dots button.is-active {
width: 28px;
background: var(--ruya-gradient);
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

.ruya-founder,
.ruya-milestones {
padding: 75px 0;
}

.ruya-founder-layout {
grid-template-columns: 1fr;
gap: 42px;
}

.ruya-founder-portrait {
height: clamp(420px, 118vw, 560px);
min-height: 0;
}

.ruya-founder-portrait img {
width: 100%;
height: 100%;
min-height: 0;
object-fit: cover;
object-position: center 38%;
}

.ruya-founder-portrait figcaption {
right: 14px;
left: 14px;
bottom: 14px;
padding: 15px;
}

.ruya-founder-quote {
padding: 27px 22px;
}

.ruya-founder-quote p {
font-size: 17px;
}

.ruya-slide.is-active {
display: block;
}

.ruya-slide img {
display: block;
width: 100%;
height: auto;
min-height: 0;
object-fit: contain;
}

.ruya-slide-caption {
padding: 25px;
}

.ruya-slide-caption > span {
margin-bottom: 22px;
}

.ruya-slide-caption strong {
font-size: 21px;
}

}

/* =========================================================
PREMIUM AUTOMATIC MILESTONES SLIDER
========================================================= */

.ruya-milestones {
padding: 110px 0;
overflow: hidden;
color: var(--ruya-white);
background: var(--ruya-navy-dark);
}

.ruya-milestones-slider {
position: relative;
}

.ruya-milestones-stage {
position: relative;
min-height: 590px;
overflow: hidden;
border: 1px solid rgba(255,255,255,.11);
border-radius: 34px;
background: var(--ruya-navy);
box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.ruya-milestone-slide {
position: absolute;
inset: 0;
display: grid;
grid-template-columns: 1.45fr .55fr;
opacity: 0;
visibility: hidden;
transform: scale(.985);
transition:
opacity .7s ease,
transform .8s cubic-bezier(.22,.72,.22,1),
visibility .7s;
}

.ruya-milestone-slide.is-active {
z-index: 2;
opacity: 1;
visibility: visible;
transform: scale(1);
}

.ruya-milestone-image {
position: relative;
min-width: 0;
overflow: hidden;
}

.ruya-milestone-image::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background:
linear-gradient(
90deg,
transparent 65%,
rgba(8,34,92,.28) 100%
);
}

.ruya-milestone-image img {
width: 100%;
height: 100%;
min-height: 590px;
object-fit: cover;
object-position: center;
transition: transform 7s linear;
}

.ruya-milestone-slide.is-active
.ruya-milestone-image img {
transform: scale(1.035);
}

.ruya-milestone-content {
position: relative;
z-index: 2;
padding: 52px 48px;
display: flex;
flex-direction: column;
justify-content: center;
background:
radial-gradient(
circle at 100% 0%,
rgba(246,16,103,.13),
transparent 38%
),
var(--ruya-navy);
}

.ruya-milestone-index {
position: absolute;
top: 35px;
inset-inline-end: 40px;
color: var(--ruya-orange);
font-family: 'Manrope', sans-serif;
font-size: 12px;
font-weight: 800;
}

.ruya-milestone-content small {
display: block;
margin-bottom: 17px;
color: var(--ruya-orange);
font-size: 11px;
font-weight: 800;
}

.ruya-milestone-content h3 {
margin: 0;
color: var(--ruya-white);
font-size: clamp(25px, 2.6vw, 40px);
line-height: 1.55;
font-weight: 800;
}

.ruya-milestone-content p {
margin: 22px 0 0;
color: rgba(255,255,255,.64);
font-size: 13px;
line-height: 2;
}

.ruya-milestone-arrow {
position: absolute;
z-index: 8;
top: 50%;
width: 48px;
height: 48px;
padding: 0;
border: 1px solid rgba(255,255,255,.22);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--ruya-white);
background: rgba(4,22,61,.62);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transform: translateY(-50%);
cursor: pointer;
transition:
transform .3s ease,
background .3s ease,
border-color .3s ease;
}

.ruya-milestone-arrow:hover {
border-color: transparent;
background: var(--ruya-gradient);
transform: translateY(-50%) scale(1.08);
}

.ruya-milestone-arrow svg {
width: 21px;
height: 21px;
fill: none;
stroke: currentColor;
stroke-width: 1.9;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-milestone-prev {
left: 20px;
}

.ruya-milestone-next {
right: 20px;
}

.ruya-milestone-progress {
margin-top: 24px;
display: flex;
align-items: center;
justify-content: center;
gap: 18px;
}

.ruya-milestone-dots {
display: flex;
align-items: center;
gap: 8px;
}

.ruya-milestone-dots button {
width: 8px;
height: 8px;
padding: 0;
border: 0;
border-radius: 99px;
background: rgba(255,255,255,.28);
cursor: pointer;
transition:
width .3s ease,
background .3s ease;
}

.ruya-milestone-dots button.is-active {
width: 29px;
background: var(--ruya-gradient);
}

.ruya-milestone-timer {
width: 75px;
height: 2px;
overflow: hidden;
border-radius: 99px;
background: rgba(255,255,255,.15);
}

.ruya-milestone-timer span {
display: block;
width: 0;
height: 100%;
border-radius: inherit;
background: var(--ruya-gradient);
}

.ruya-milestone-timer.is-running span {
animation: ruyaMilestoneTimer 5s linear forwards;
}

@keyframes ruyaMilestoneTimer {
from {
width: 0;
}

to {
width: 100%;
}
}

/* MOBILE */

@media (max-width: 767px) {

.ruya-milestones {
padding: 75px 0;
}

.ruya-milestones-stage {
min-height: 0;
overflow: visible;
border-radius: 25px;
}

.ruya-milestone-slide {
position: relative;
inset: auto;
display: none;
grid-template-columns: 1fr;
opacity: 1;
visibility: visible;
transform: none;
}

.ruya-milestone-slide.is-active {
display: block;
}

.ruya-milestone-image::after {
display: none;
}

.ruya-milestone-image img {
display: block;
width: 100%;
height: auto;
min-height: 0;
object-fit: contain;
transform: none !important;
}

.ruya-milestone-content {
min-height: 265px;
padding: 31px 25px;
justify-content: center;
}

.ruya-milestone-index {
position: static;
display: block;
margin-bottom: 24px;
}

.ruya-milestone-content h3 {
font-size: 23px;
}

.ruya-milestone-content p {
font-size: 12px;
}

.ruya-milestone-arrow {
top: auto;
bottom: 18px;
width: 43px;
height: 43px;
transform: none;
}

.ruya-milestone-arrow:hover {
transform: none;
}

.ruya-milestone-prev {
left: 18px;
}

.ruya-milestone-next {
right: 18px;
}

.ruya-milestone-progress {
margin-top: 20px;
}

}

/* COMPACT PATENT LEADERSHIP STATEMENT */

.ruya-patent-leadership {
width: fit-content;
max-width: 100%;
margin: 26px 0 30px;
padding: 15px 18px;
display: flex;
align-items: center;
gap: 14px;
border-radius: 16px;
border: 1px solid rgba(255,255,255,.16);
background: rgba(255,255,255,.07);
}

.ruya-patent-leadership-mark {
width: 42px;
height: 42px;
flex: 0 0 auto;
border-radius: 13px;
display: flex;
align-items: center;
justify-content: center;
color: white;
background: var(--ruya-gradient);
font-family: 'Manrope', sans-serif;
font-size: 12px;
font-weight: 800;
}

.ruya-patent-leadership small,
.ruya-patent-leadership strong {
display: block;
}

.ruya-patent-leadership small {
margin-bottom: 5px;
color: var(--ruya-orange);
font-size: 10px;
font-weight: 800;
}

.ruya-patent-leadership strong {
max-width: 610px;
color: white;
font-size: 16px;
line-height: 1.75;
}

@media (max-width: 767px) {
.ruya-patent-leadership {
align-items: flex-start;
padding: 14px;
}

.ruya-patent-leadership strong {
font-size: 14px;
}
}

/* =========================================================
STRATEGIC BRIDGE — MAIN STYLES
========================================================= */

.ruya-bridge {
position: relative;
padding: 115px 0;
overflow: hidden;
background:
radial-gradient(
circle at 50% 42%,
rgba(246,16,103,.055),
transparent 34%
),
var(--ruya-white);
}

.ruya-bridge-layout {
display: grid;
grid-template-columns: minmax(0,1fr) 150px minmax(0,1fr);
gap: 34px;
align-items: stretch;
}

.ruya-bridge-panel {
position: relative;
min-width: 0;
padding: 38px;
overflow: hidden;
border: 1px solid var(--ruya-border);
border-radius: 30px;
background: var(--ruya-white);
box-shadow: 0 22px 65px rgba(4,22,61,.08);
}

.ruya-bridge-panel::before {
content: "";
position: absolute;
top: 0;
inset-inline-start: 0;
width: 100%;
height: 4px;
background: var(--ruya-gradient);
}

.ruya-bridge-panel--banks {
color: white;
border-color: transparent;
background:
radial-gradient(
circle at 100% 0%,
rgba(246,16,103,.15),
transparent 35%
),
var(--ruya-navy);
box-shadow: 0 28px 75px rgba(4,22,61,.22);
}

.ruya-bridge-panel-top {
margin-bottom: 32px;
display: flex;
align-items: center;
justify-content: space-between;
}

.ruya-bridge-number {
color: var(--ruya-pink);
font-family: 'Manrope', sans-serif;
font-size: 13px;
font-weight: 800;
}

.ruya-bridge-panel--banks .ruya-bridge-number {
color: var(--ruya-orange);
}

.ruya-bridge-icon {
width: 52px;
height: 52px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ruya-navy);
background: var(--ruya-surface);
}

.ruya-bridge-panel--banks .ruya-bridge-icon {
color: white;
background: rgba(255,255,255,.1);
}

.ruya-bridge-icon svg {
width: 24px;
height: 24px;
fill: none;
stroke: currentColor;
stroke-width: 1.6;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-bridge-kicker {
display: block;
margin-bottom: 14px;
color: var(--ruya-pink);
font-size: 11px;
font-weight: 800;
}

.ruya-bridge-panel--banks .ruya-bridge-kicker {
color: var(--ruya-orange);
}

.ruya-bridge-panel h3 {
margin: 0;
color: var(--ruya-navy);
font-size: clamp(24px,2.2vw,34px);
line-height: 1.55;
}

.ruya-bridge-panel--banks h3 {
color: white;
}

.ruya-bridge-panel > p {
margin: 19px 0 0;
color: var(--ruya-muted);
font-size: 13px;
line-height: 2;
}

.ruya-bridge-panel--banks > p {
color: rgba(255,255,255,.64);
}

.ruya-bridge-list {
margin: 31px 0 0;
padding: 26px 0 0;
display: grid;
gap: 15px;
border-top: 1px solid var(--ruya-border);
list-style: none;
}

.ruya-bridge-panel--banks .ruya-bridge-list {
border-color: rgba(255,255,255,.12);
}

.ruya-bridge-list li {
display: flex;
align-items: flex-start;
gap: 12px;
}

.ruya-bridge-list li > span {
width: 7px;
height: 7px;
flex: 0 0 7px;
margin-top: 10px;
border-radius: 50%;
background: var(--ruya-gradient);
}

.ruya-bridge-list p {
margin: 0;
color: var(--ruya-navy);
font-size: 12px;
font-weight: 700;
line-height: 1.8;
}

.ruya-bridge-panel--banks .ruya-bridge-list p {
color: rgba(255,255,255,.84);
}

/* =========================================================
STRATEGIC BRIDGE — CENTRE, STATEMENT & RESPONSIVE
========================================================= */

.ruya-bridge-centre {
min-height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.ruya-bridge-centre-line {
width: 1px;
flex: 1;
min-height: 70px;
background:
linear-gradient(
to bottom,
transparent,
rgba(8,34,92,.2),
transparent
);
}

.ruya-bridge-centre-mark {
width: 145px;
padding: 25px 15px;
border: 1px solid var(--ruya-border);
border-radius: 24px;
text-align: center;
background: var(--ruya-white);
box-shadow: 0 18px 50px rgba(4,22,61,.09);
}

.ruya-bridge-centre-logo {
width: 78px;
height: 78px;
margin: 0 auto 14px;
display: block;
}

.ruya-bridge-centre-logo img {
width: 100%;
height: 100%;
object-fit: contain;
}

.ruya-bridge-centre-mark strong,
.ruya-bridge-centre-mark small {
display: block;
}

.ruya-bridge-centre-mark strong {
color: var(--ruya-navy);
font-size: 14px;
}

.ruya-bridge-centre-mark small {
margin-top: 10px;
color: var(--ruya-muted);
font-size: 8px;
font-weight: 700;
line-height: 1.8;
}

.ruya-bridge-statement {
max-width: 980px;
margin: 65px auto 0;
display: grid;
grid-template-columns: 1fr minmax(0,720px) 1fr;
gap: 25px;
align-items: center;
}

.ruya-bridge-statement-line {
height: 1px;
background:
linear-gradient(
90deg,
transparent,
var(--ruya-border)
);
}

.ruya-bridge-statement-line:last-child {
background:
linear-gradient(
90deg,
var(--ruya-border),
transparent
);
}

.ruya-bridge-statement p {
margin: 0;
color: var(--ruya-navy);
text-align: center;
font-size: clamp(18px,2vw,25px);
font-weight: 800;
line-height: 1.9;
}

/* TABLET */

@media (max-width: 1024px) {

.ruya-bridge-layout {
grid-template-columns: 1fr 90px 1fr;
gap: 20px;
}

.ruya-bridge-panel {
padding: 28px;
}

.ruya-bridge-centre-mark {
width: 100px;
padding: 20px 8px;
}

.ruya-bridge-centre-logo {
width: 58px;
height: 58px;
}

.ruya-bridge-centre-mark strong {
font-size: 11px;
}

.ruya-bridge-centre-mark small {
font-size: 7px;
}

}

/* MOBILE */

@media (max-width: 767px) {

.ruya-bridge {
padding: 75px 0;
}

.ruya-bridge-layout {
grid-template-columns: 1fr;
gap: 25px;
}

.ruya-bridge-panel {
padding: 27px 24px;
border-radius: 24px;
}

.ruya-bridge-panel h3 {
font-size: 24px;
}

.ruya-bridge-centre {
min-height: 170px;
flex-direction: row;
}

.ruya-bridge-centre-line {
width: auto;
height: 1px;
min-height: 0;
flex: 1;
background:
linear-gradient(
90deg,
transparent,
rgba(8,34,92,.2)
);
}

.ruya-bridge-centre-line:last-child {
background:
linear-gradient(
90deg,
rgba(8,34,92,.2),
transparent
);
}

.ruya-bridge-centre-mark {
width: 135px;
margin: 0 12px;
}

.ruya-bridge-centre-logo {
width: 68px;
height: 68px;
}

.ruya-bridge-statement {
margin-top: 45px;
grid-template-columns: 1fr;
}

.ruya-bridge-statement-line {
display: none;
}

.ruya-bridge-statement p {
font-size: 18px;
}

}

/* =========================================================
SERVICE DETAILS — ALL ITEMS ALWAYS VISIBLE
========================================================= */

.ruya-service-card--expandable {
display: block;
}

.ruya-service-extra {
display: block !important;
opacity: 1 !important;
overflow: visible !important;
margin-top: 0;
}

.ruya-service-extra > ul {
min-height: 0;
margin-top: 12px;
}

.ruya-service-toggle {
display: none !important;
}

@media (max-width: 767px) {

.ruya-service-extra > ul {
margin-top: 10px;
}

}

/* =========================================================
FEATURED ACHIEVEMENTS
========================================================= */

.ruya-featured-achievements {
padding: 110px 0;
background: var(--ruya-white);
}

.ruya-featured-achievements-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
}

.ruya-featured-achievement-card {
overflow: hidden;
border: 1px solid var(--ruya-border);
border-radius: 30px;
background: var(--ruya-white);
box-shadow: 0 24px 70px rgba(4,22,61,.09);
}

.ruya-featured-achievement-card--institutional {
color: white;
border-color: transparent;
background: var(--ruya-navy);
box-shadow: 0 28px 75px rgba(4,22,61,.22);
}

.ruya-featured-achievement-image {
position: relative;
overflow: hidden;
aspect-ratio: 8 / 5;
}

.ruya-featured-achievement-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center;
transition: transform .8s cubic-bezier(.22,.72,.22,1);
}

.ruya-featured-achievement-card:hover
.ruya-featured-achievement-image img {
transform: scale(1.035);
}

.ruya-featured-achievement-badge {
position: absolute;
top: 18px;
inset-inline-end: 18px;
padding: 10px 14px;
border-radius: 999px;
color: white;
background: rgba(4,22,61,.84);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
font-size: 10px;
font-weight: 800;
}

.ruya-featured-achievement-card--institutional
.ruya-featured-achievement-badge {
background: var(--ruya-gradient);
}

.ruya-featured-achievement-content {
padding: 30px;
}

.ruya-featured-achievement-kicker {
display: block;
margin-bottom: 13px;
color: var(--ruya-pink);
font-size: 10px;
font-weight: 800;
line-height: 1.6;
}

.ruya-featured-achievement-card--institutional
.ruya-featured-achievement-kicker {
color: var(--ruya-orange);
}

.ruya-featured-achievement-content h3 {
margin: 0;
color: var(--ruya-navy);
font-size: clamp(23px, 2.2vw, 32px);
line-height: 1.55;
}

.ruya-featured-achievement-card--institutional
.ruya-featured-achievement-content h3 {
color: white;
}

.ruya-featured-achievement-content p {
margin: 18px 0 0;
color: var(--ruya-muted);
font-size: 13px;
line-height: 2;
}

.ruya-featured-achievement-card--institutional
.ruya-featured-achievement-content p {
color: rgba(255,255,255,.65);
}

.ruya-featured-achievement-meta {
margin-top: 24px;
padding-top: 22px;
display: flex;
flex-wrap: wrap;
gap: 9px;
border-top: 1px solid var(--ruya-border);
}

.ruya-featured-achievement-card--institutional
.ruya-featured-achievement-meta {
border-color: rgba(255,255,255,.12);
}

.ruya-featured-achievement-meta span {
padding: 10px 13px;
border-radius: 999px;
color: var(--ruya-navy);
background: var(--ruya-surface);
font-size: 10px;
font-weight: 800;
}

.ruya-featured-achievement-card--institutional
.ruya-featured-achievement-meta span {
color: white;
background: rgba(255,255,255,.09);
}

/* TABLET */

@media (max-width: 1024px) {

.ruya-featured-achievements-grid {
gap: 22px;
}

.ruya-featured-achievement-content {
padding: 26px;
}

}

/* MOBILE */

@media (max-width: 767px) {

.ruya-featured-achievements {
padding: 75px 0;
}

.ruya-featured-achievements-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.ruya-featured-achievement-card {
border-radius: 24px;
}

.ruya-featured-achievement-content {
padding: 24px 22px;
}

.ruya-featured-achievement-content h3 {
font-size: 23px;
}

.ruya-featured-achievement-content p {
font-size: 12px;
}

.ruya-featured-achievement-badge {
top: 13px;
inset-inline-end: 13px;
padding: 9px 12px;
}

}

/* FEATURED ACHIEVEMENTS — ARABIC TITLE AND WIDTH FIX */

.ruya-featured-achievements {
overflow: hidden;
}

.ruya-featured-achievements .ruya-section-head,
.ruya-featured-achievements .ruya-section-head-main,
.ruya-featured-achievements .ruya-section-intro {
min-width: 0;
}

html[dir="rtl"]
.ruya-featured-achievements
.ruya-section-title {
max-width: 100%;
overflow: visible !important;
padding-bottom: .22em !important;
font-size: clamp(48px, 5.3vw, 76px) !important;
line-height: 1.25 !important;
}

html[dir="rtl"]
.ruya-featured-achievements
.ruya-section-title > span {
display: block;
overflow: visible !important;
line-height: 1.25 !important;
padding-bottom: .08em !important;
}

html[dir="rtl"]
.ruya-featured-achievements
.ruya-section-title .ruya-gradient-text {
padding-bottom: .16em !important;
}

.ruya-featured-achievements-grid {
grid-template-columns:
minmax(0, 1fr)
minmax(0, 1fr);
}

.ruya-featured-achievement-card {
min-width: 0;
}

/* TABLET */

@media (max-width: 1024px) {

html[dir="rtl"]
.ruya-featured-achievements
.ruya-section-title {
font-size: clamp(43px, 6vw, 62px) !important;
}

}

/* MOBILE */

@media (max-width: 767px) {

html[dir="rtl"]
.ruya-featured-achievements
.ruya-section-title {
font-size: clamp(36px, 10.5vw, 48px) !important;
line-height: 1.3 !important;
padding-bottom: .25em !important;
}

html[dir="rtl"]
.ruya-featured-achievements
.ruya-section-title > span {
line-height: 1.3 !important;
}

.ruya-featured-achievements-grid {
grid-template-columns: minmax(0, 1fr);
}

}

/* =========================================================
WORK WITH BANKS — MAIN
========================================================= */

.ruya-bank-work {
position: relative;
padding: 110px 0;
overflow: hidden;
background:
radial-gradient(
circle at 12% 15%,
rgba(255,175,40,.08),
transparent 28%
),
radial-gradient(
circle at 88% 72%,
rgba(246,16,103,.06),
transparent 30%
),
var(--ruya-surface);
}

.ruya-bank-work-grid {
display: grid;
grid-template-columns: repeat(2,minmax(0,1fr));
gap: 22px;
}

.ruya-bank-work-card {
position: relative;
min-width: 0;
padding: 30px;
overflow: hidden;
border: 1px solid var(--ruya-border);
border-radius: 26px;
background: var(--ruya-white);
box-shadow: 0 18px 55px rgba(4,22,61,.07);
transition:
transform .35s ease,
box-shadow .35s ease,
border-color .35s ease;
}

.ruya-bank-work-card:hover {
transform: translateY(-5px);
border-color: rgba(246,16,103,.2);
box-shadow: 0 26px 65px rgba(4,22,61,.11);
}

.ruya-bank-work-card::before {
content: "";
position: absolute;
top: 0;
inset-inline-start: 0;
width: 100%;
height: 3px;
background: var(--ruya-gradient);
}

.ruya-bank-work-card--accent {
border-color: transparent;
color: white;
background:
radial-gradient(
circle at 100% 0%,
rgba(246,16,103,.17),
transparent 40%
),
var(--ruya-navy);
box-shadow: 0 25px 65px rgba(4,22,61,.2);
}

.ruya-bank-work-card--dark {
border-color: transparent;
color: white;
background:
linear-gradient(
145deg,
var(--ruya-navy),
var(--ruya-navy-dark)
);
box-shadow: 0 25px 65px rgba(4,22,61,.22);
}

.ruya-bank-work-card-top {
margin-bottom: 24px;
display: flex;
align-items: center;
justify-content: space-between;
}

.ruya-bank-work-number {
color: var(--ruya-pink);
font-family: 'Manrope', sans-serif;
font-size: 12px;
font-weight: 800;
}

.ruya-bank-work-card--accent .ruya-bank-work-number,
.ruya-bank-work-card--dark .ruya-bank-work-number {
color: var(--ruya-orange);
}

.ruya-bank-work-icon {
width: 48px;
height: 48px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ruya-navy);
background: var(--ruya-surface);
}

.ruya-bank-work-card--accent .ruya-bank-work-icon,
.ruya-bank-work-card--dark .ruya-bank-work-icon {
color: white;
background: rgba(255,255,255,.1);
}

.ruya-bank-work-icon svg {
width: 23px;
height: 23px;
fill: none;
stroke: currentColor;
stroke-width: 1.65;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-bank-work-card h3 {
margin: 0;
color: var(--ruya-navy);
font-size: clamp(21px,1.9vw,28px);
line-height: 1.55;
}

.ruya-bank-work-card--accent h3,
.ruya-bank-work-card--dark h3 {
color: white;
}

.ruya-bank-work-card p {
margin: 16px 0 0;
color: var(--ruya-muted);
font-size: 13px;
line-height: 2;
}

.ruya-bank-work-card--accent p,
.ruya-bank-work-card--dark p {
color: rgba(255,255,255,.67);
}

/* =========================================================
WORK WITH BANKS — STATEMENT & RESPONSIVE
========================================================= */

.ruya-bank-work-statement {
max-width: 980px;
margin: 48px auto 0;
padding: 28px 32px;
display: flex;
align-items: center;
gap: 22px;
border-radius: 24px;
color: white;
background:
radial-gradient(
circle at 100% 0%,
rgba(246,16,103,.15),
transparent 32%
),
var(--ruya-navy-dark);
box-shadow: 0 25px 70px rgba(4,22,61,.2);
}

.ruya-bank-work-statement-icon {
width: 58px;
height: 58px;
flex: 0 0 58px;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
color: white;
background: var(--ruya-gradient);
}

.ruya-bank-work-statement-icon svg {
width: 27px;
height: 27px;
fill: none;
stroke: currentColor;
stroke-width: 1.6;
stroke-linecap: round;
stroke-linejoin: round;
}

.ruya-bank-work-statement small,
.ruya-bank-work-statement strong {
display: block;
}

.ruya-bank-work-statement small {
margin-bottom: 8px;
color: var(--ruya-orange);
font-size: 10px;
font-weight: 800;
}

.ruya-bank-work-statement strong {
color: white;
font-size: clamp(17px,1.8vw,23px);
line-height: 1.8;
}

/* TABLET */

@media (max-width: 1024px) {

.ruya-bank-work-grid {
gap: 18px;
}

.ruya-bank-work-card {
padding: 25px;
}

.ruya-bank-work-card h3 {
font-size: 22px;
}

}

/* MOBILE */

@media (max-width: 767px) {

.ruya-bank-work {
padding: 75px 0;
}

.ruya-bank-work-grid {
grid-template-columns: 1fr;
gap: 18px;
}

.ruya-bank-work-card {
padding: 24px 22px;
border-radius: 22px;
}

.ruya-bank-work-card h3 {
font-size: 22px;
}

.ruya-bank-work-card p {
font-size: 12px;
}

.ruya-bank-work-statement {
margin-top: 35px;
padding: 24px 21px;
align-items: flex-start;
border-radius: 22px;
}

.ruya-bank-work-statement-icon {
width: 48px;
height: 48px;
flex-basis: 48px;
border-radius: 15px;
}

.ruya-bank-work-statement strong {
font-size: 16px;
}

}

@media (max-width: 1100px) {

.ruya-desktop-nav {
gap: 16px;
}

.ruya-nav-link {
font-size: 11px;
}

.ruya-header-brand-copy {
display: none;
}

.ruya-header-brand {
min-width: auto;
}

.ruya-hero-inner {
grid-template-columns: 1fr 1fr;
gap: 45px;
}

.ruya-hero-title {
font-size: clamp(46px, 6vw, 68px);
}

.ruya-floating-badge--patent {
right: -10px;
}

.ruya-floating-badge--consulting {
left: -10px;
}

.ruya-about-grid {
grid-template-columns: 1fr 1fr;
}

.ruya-about-story {
grid-column: 1 / -1;
}

.ruya-services-summary {
grid-template-columns: repeat(3, 1fr);
}

.ruya-services-summary-item:nth-child(3) {
border-inline-end: 0;
}

.ruya-services-summary-item:nth-child(n+4) {
border-top: 1px solid rgba(255,255,255,.1);
}

.ruya-process-grid {
grid-template-columns: repeat(2, 1fr);
}

.ruya-sector-grid {
grid-template-columns: repeat(2, 1fr);
}

.ruya-engagement-grid {
grid-template-columns: 1fr 1fr;
}

.ruya-engagement-wide {
grid-column: 1 / -1;
min-height: 500px;
}

.ruya-engagement-portrait {
min-height: 520px;
}

.ruya-philosophy-grid {
grid-template-columns: 1fr;
}

.ruya-philosophy-card {
min-height: auto;
}

.ruya-philosophy-number {
margin-bottom: 40px;
}

.ruya-contact-panel {
grid-template-columns: 1fr;
gap: 50px;
}

.ruya-footer-top {
grid-template-columns: 1fr;
}

.ruya-footer-nav {
justify-content: flex-start;
}
}

@media (max-width: 767px) {

.ruya-container {
width: min(calc(100% - 28px), var(--ruya-container));
}

.ruya-header-inner {
width: min(calc(100% - 24px), var(--ruya-container));
min-height: 70px;
}

.ruya-header-brand img {
width: 48px;
height: 48px;
}

.ruya-desktop-nav,
.ruya-header-cta {
display: none;
}

.ruya-menu-button {
display: flex;
}

.ruya-language-button {
width: 44px;
height: 40px;
}

.ruya-section-head {
grid-template-columns: 1fr;
gap: 24px;
margin-bottom: 45px;
}

.ruya-section-head--center {
margin-bottom: 45px;
}

.ruya-section-title {
font-size: clamp(31px, 9vw, 45px);
line-height: 1.35;
}

.ruya-section-intro {
font-size: 14px;
line-height: 1.9;
}

.ruya-about,
.ruya-process,
.ruya-sectors,
.ruya-philosophy,
.ruya-patent,
.ruya-engagement,
.ruya-contact {
padding: 75px 0;
}

.ruya-services-intro {
padding: 75px 0 40px;
}

.ruya-services-details {
padding: 40px 0 75px;
}

.ruya-hero {
min-height: auto;
padding: 65px 0 45px;
}

.ruya-hero-inner {
grid-template-columns: 1fr;
gap: 55px;
}

.ruya-hero-title {
font-size: clamp(42px, 12vw, 59px);
line-height: 1.22;
}

.ruya-hero-text {
font-size: 15px;
line-height: 1.95;
}

.ruya-hero-actions {
flex-direction: column;
align-items: stretch;
}

.ruya-button {
width: 100%;
}

.ruya-hero-trust {
flex-direction: column;
gap: 14px;
}

.ruya-hero-visual {
min-height: 430px;
}

.ruya-hero-card {
width: 100%;
min-height: 390px;
padding: 26px;
}

.ruya-hero-logo-wrap {
height: 270px;
}

.ruya-hero-logo-wrap img {
width: 210px;
height: 210px;
}

.ruya-floating-badge {
min-width: 175px;
padding: 13px 14px;
}

.ruya-floating-badge--patent {
top: 10px;
right: 4px;
}

.ruya-floating-badge--consulting {
bottom: 18px;
left: 4px;
}

.ruya-floating-badge strong {
font-size: 10px;
}

.ruya-trust-section {
padding-bottom: 45px;
}

.ruya-trust-strip {
grid-template-columns: 1fr;
}

.ruya-trust-card {
min-height: auto;
border-inline-end: 0;
border-bottom: 1px solid rgba(255,255,255,.1);
}

.ruya-trust-card:last-child {
border-bottom: 0;
}

.ruya-about-grid,
.ruya-services-grid,
.ruya-process-grid,
.ruya-sector-grid,
.ruya-engagement-grid,
.ruya-philosophy-grid {
grid-template-columns: 1fr;
}

.ruya-about-story,
.ruya-service-card--wide,
.ruya-engagement-wide {
grid-column: auto;
}

.ruya-about-story,
.ruya-about-card {
min-height: auto;
}

.ruya-about-story-text {
margin: 35px 0;
font-size: 17px;
}

.ruya-about-card-top {
margin-bottom: 38px;
}

.ruya-services-summary {
grid-template-columns: 1fr;
}

.ruya-services-summary-item {
min-height: auto;
border-inline-end: 0;
border-top: 1px solid rgba(255,255,255,.1);
}

.ruya-services-summary-item:first-child {
border-top: 0;
}

.ruya-services-summary-item span {
margin-bottom: 10px;
}

.ruya-service-list-columns {
grid-template-columns: 1fr;
}

.ruya-process-card {
min-height: auto;
}

.ruya-process-number {
margin-bottom: 40px;
}

.ruya-patent-inner {
grid-template-columns: 1fr;
gap: 55px;
}

.ruya-patent-visual {
min-height: 430px;
}

.ruya-patent-document {
width: min(90%, 290px);
min-height: 380px;
}

.ruya-patent-seal {
width: 145px;
height: 145px;
}

.ruya-patent-badge {
right: 0;
bottom: 28px;
}

.ruya-sector-grid {
border-top: 1px solid var(--ruya-border);
}

.ruya-sector-card {
min-height: 150px;
}

.ruya-engagement-wide,
.ruya-engagement-portrait {
min-height: auto;
aspect-ratio: 3 / 4;
}

.ruya-engagement-story {
padding: 26px;
}

.ruya-engagement-story h3 {
font-size: 22px;
}

.ruya-philosophy-card {
padding: 28px;
}

.ruya-contact-panel {
padding: 28px;
gap: 40px;
}

.ruya-contact-actions {
flex-direction: column;
}

.ruya-contact-item {
align-items: flex-start;
}

.ruya-contact-item strong {
overflow-wrap: anywhere;
}

.ruya-footer-top {
gap: 28px;
}

.ruya-footer-nav {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.ruya-footer-bottom {
flex-direction: column;
align-items: flex-start;
}

.ruya-floating-whatsapp {
right: 14px;
bottom: 14px;
min-width: 50px;
width: 50px;
padding: 0;
justify-content: center;
}

.ruya-floating-whatsapp span {
display: none;
}

}

@media (max-width: 420px) {

.ruya-hero-title {
font-size: 40px;
}

.ruya-floating-badge {
min-width: 160px;
}

.ruya-patent-document {
transform: rotate(-2deg);
}

}

.ruya-js-enabled .ruya-reveal {
opacity: 0;
transform: translateY(28px);
transition:
opacity .8s cubic-bezier(.2,.7,.2,1),
transform .8s cubic-bezier(.2,.7,.2,1);
}

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

.ruya-menu-button.is-open span:first-child {
transform: translateY(4px) rotate(45deg);
}

.ruya-menu-button.is-open span:last-child {
transform: translateY(-4px) rotate(-45deg);
}

.ruya-menu-button span {
transition: transform .3s ease;
}

.ruya-site-part[dir="ltr"],
.ruya-header[dir="ltr"],
.ruya-footer[dir="ltr"] {
text-align: left;
}

.ruya-site-part[dir="rtl"],
.ruya-header[dir="rtl"],
.ruya-footer[dir="rtl"] {
text-align: right;
}

@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}

.ruya-js-enabled .ruya-reveal {
opacity: 1;
transform: none;
transition: none;
}

*,
*::before,
*::after {
animation-duration: .01ms !important;
animation-iteration-count: 1 !important;
transition-duration: .01ms !important;
}
}

/* =========================================================
REVERSIBLE STACKED SECTION TRANSITIONS
========================================================= */

.ruya-trust-section,
.ruya-about,
.ruya-services-intro,
.ruya-process,
.ruya-patent,
.ruya-sectors,
.ruya-engagement,
.ruya-philosophy,
.ruya-contact {
position: relative;
overflow: hidden;
margin-top: -42px;
border-radius: 42px 42px 0 0;
will-change: transform, opacity;
}

/* Layer order */
.ruya-trust-section {
z-index: 3;
}

.ruya-about {
z-index: 4;
}

.ruya-services-intro {
z-index: 5;
}

.ruya-process {
z-index: 6;
}

.ruya-patent {
z-index: 7;
}

.ruya-sectors {
z-index: 8;
}

.ruya-engagement {
z-index: 9;
}

.ruya-philosophy {
z-index: 10;
}

.ruya-contact {
z-index: 11;
}

/*
Before JavaScript finishes its initial check,
sections stay visible. This prevents animations
from replaying during a normal page reload.
*/
html:not(.ruya-sections-ready)
.ruya-stack-section {
opacity: 1;
transform: translateY(0);
}

/* Active reversible animation system */
html.ruya-sections-ready
.ruya-stack-section {
opacity: 0;
transform: translateY(72px);

transition:
transform 0.9s cubic-bezier(.22, .72, .22, 1),
opacity 0.65s ease;
}

html.ruya-sections-ready
.ruya-stack-section.ruya-section-in-view {
opacity: 1;
transform: translateY(0);
}

/* Mobile */
@media (max-width: 767px) {

.ruya-trust-section,
.ruya-about,
.ruya-services-intro,
.ruya-process,
.ruya-patent,
.ruya-sectors,
.ruya-engagement,
.ruya-philosophy,
.ruya-contact {
margin-top: -26px;
border-radius: 26px 26px 0 0;
}

html.ruya-sections-ready
.ruya-stack-section {
transform: translateY(44px);

transition:
transform 0.72s cubic-bezier(.22, .72, .22, 1),
opacity 0.5s ease;
}

html.ruya-sections-ready
.ruya-stack-section.ruya-section-in-view {
transform: translateY(0);
}

}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

html.ruya-sections-ready
.ruya-stack-section,
html.ruya-sections-ready
.ruya-stack-section.ruya-section-in-view {
opacity: 1;
transform: none;
transition: none;
}

}

/* =========================================================
HEADER + HERO + ARABIC TITLE FIXES
========================================================= */

/* Remove header consultation button */
.ruya-header-cta {
display: none !important;
}

.ruya-header-actions {
gap: 8px;
}

/* Navigation underline only on hover */
.ruya-nav-link::after {
width: 0 !important;
}

.ruya-nav-link.is-active::after {
width: 0 !important;
}

.ruya-nav-link:hover::after {
width: 100% !important;
}

.ruya-nav-link.is-active {
color: var(--ruya-muted);
}

.ruya-nav-link:hover {
color: var(--ruya-navy);
}

/* Fixed smart header */
.ruya-header {
position: fixed !important;
top: 0;
right: 0;
left: 0;
z-index: 9999;
width: 100%;
transform: translateY(0);
transition:
transform .35s cubic-bezier(.22,.75,.22,1),
box-shadow .3s ease,
background .3s ease;
will-change: transform;
}

.ruya-header.ruya-header-hidden {
transform: translateY(-110%);
}

.ruya-header.ruya-header-scrolled {
background: rgba(255,255,255,.94);
box-shadow: 0 10px 30px rgba(4,22,61,.10);
}

/* Space below fixed header */
.ruya-hero {
padding-top: 172px !important;
}

@media (max-width: 767px) {
.ruya-hero {
padding-top: 130px !important;
}
}

/* Fix Arabic clipping in hero */
.ruya-hero-content,
.ruya-hero-title,
.ruya-hero-title > span,
.ruya-hero-title .ruya-gradient-text {
overflow: visible !important;
}

.ruya-hero-title {
line-height: 1.28 !important;
padding-bottom: .18em !important;
}

.ruya-hero-title > span {
display: block;
line-height: 1.28 !important;
padding-bottom: .08em !important;
}

.ruya-hero-title .ruya-gradient-text {
padding-bottom: .16em !important;
}

/* Fix Arabic clipping in engagement title */
.ruya-engagement,
.ruya-engagement .ruya-container,
.ruya-engagement .ruya-section-head,
.ruya-engagement .ruya-section-head-main,
.ruya-engagement .ruya-section-title,
.ruya-engagement .ruya-section-title > span,
.ruya-engagement .ruya-gradient-text {
overflow: visible !important;
}

.ruya-engagement .ruya-section-title {
line-height: 1.34 !important;
padding-bottom: .24em !important;
}

.ruya-engagement .ruya-section-title > span {
display: block;
line-height: 1.34 !important;
padding-bottom: .08em !important;
}

.ruya-engagement .ruya-section-title .ruya-gradient-text {
padding-bottom: .22em !important;
}

/* =========================================================
DYNAMIC CARD HIGHLIGHTS
Default highlight moves to the currently hovered card
========================================================= */

/* ---------- PROCESS ---------- */

.ruya-process-card {
transition:
transform var(--ruya-transition),
box-shadow var(--ruya-transition),
background var(--ruya-transition),
color var(--ruya-transition),
border-color var(--ruya-transition);
}

.ruya-process-card:hover {
color: var(--ruya-white);
background: var(--ruya-navy);
border-color: var(--ruya-navy);
}

.ruya-process-card:hover h3 {
color: var(--ruya-white);
}

.ruya-process-card:hover p {
color: rgba(255, 255, 255, 0.68);
}

.ruya-process-card:hover .ruya-process-number {
color: var(--ruya-orange);
}

/* Remove default blue when another process card is hovered */
.ruya-process-grid:hover
.ruya-process-card--accent:not(:hover) {
color: var(--ruya-text);
background: var(--ruya-white);
border-color: var(--ruya-border);
}

.ruya-process-grid:hover
.ruya-process-card--accent:not(:hover) h3 {
color: var(--ruya-navy);
}

.ruya-process-grid:hover
.ruya-process-card--accent:not(:hover) p {
color: var(--ruya-muted);
}

.ruya-process-grid:hover
.ruya-process-card--accent:not(:hover)
.ruya-process-number {
color: var(--ruya-pink);
}

/* ---------- SECTORS ---------- */

/* Remove default blue from sector 08 when another sector is hovered */
.ruya-sector-grid:hover
.ruya-sector-card--accent:not(:hover) {
color: var(--ruya-text);
background: var(--ruya-white);
}

.ruya-sector-grid:hover
.ruya-sector-card--accent:not(:hover) h3 {
color: var(--ruya-navy);
}

.ruya-sector-grid:hover
.ruya-sector-card--accent:not(:hover)
.ruya-sector-number {
color: var(--ruya-pink);
}

/* ---------- VISION / MISSION / VALUES ---------- */

.ruya-philosophy-card {
transition:
transform var(--ruya-transition),
box-shadow var(--ruya-transition),
background var(--ruya-transition),
color var(--ruya-transition),
border-color var(--ruya-transition);
}

.ruya-philosophy-card:hover {
color: var(--ruya-white);
background: var(--ruya-navy);
border-color: var(--ruya-navy);
transform: translateY(-7px);
box-shadow: var(--ruya-shadow);
}

.ruya-philosophy-card:hover h3 {
color: var(--ruya-white);
}

.ruya-philosophy-card:hover p {
color: rgba(255, 255, 255, 0.68);
}

.ruya-philosophy-card:hover
.ruya-philosophy-number {
color: var(--ruya-orange);
}

/* Restore the values pills when its card is hovered */
.ruya-philosophy-card:hover .ruya-values-grid span {
color: rgba(255, 255, 255, 0.88);
background: rgba(255, 255, 255, 0.09);
}

/* Remove default blue from Values when another card is hovered */
.ruya-philosophy-grid:hover
.ruya-philosophy-card--values:not(:hover) {
color: var(--ruya-text);
background: var(--ruya-white);
border-color: var(--ruya-border);
}

.ruya-philosophy-grid:hover
.ruya-philosophy-card--values:not(:hover) h3 {
color: var(--ruya-navy);
}

.ruya-philosophy-grid:hover
.ruya-philosophy-card--values:not(:hover)
.ruya-philosophy-number {
color: var(--ruya-pink);
}

.ruya-philosophy-grid:hover
.ruya-philosophy-card--values:not(:hover)
.ruya-values-grid span {
color: var(--ruya-navy);
background: var(--ruya-surface);
}

/* ---------- TOUCH DEVICES ---------- */

/*
Phones do not have reliable hover.
Keep the original default emphasis without sticky hover states.
*/
@media (hover: none) {
.ruya-process-card:hover,
.ruya-philosophy-card:hover {
transform: none;
}
}

/* =========================================================
ENGLISH HERO — CORRECTED LAYOUT
========================================================= */

body.ruya-language-en .ruya-hero-inner {
grid-template-columns: 1.08fr .92fr;
gap: 80px;
}

/* English heading only */
body.ruya-language-en .ruya-hero-title {
max-width: 650px;
font-size: clamp(48px, 5.1vw, 76px) !important;
line-height: 1.13 !important;
letter-spacing: -.05em;
padding-bottom: .12em !important;
}

body.ruya-language-en .ruya-hero-title > span {
display: block;
line-height: 1.13 !important;
padding-bottom: .06em !important;
}

body.ruya-language-en .ruya-hero-title .ruya-gradient-text {
max-width: 650px;
padding-bottom: .09em !important;
}

body.ruya-language-en .ruya-hero-text {
max-width: 650px;
font-size: 17px;
line-height: 1.9;
}

/* =========================================================
MOVE COMPLETE VISUAL HIGHER
========================================================= */

body.ruya-language-en .ruya-hero-visual {
min-height: 560px;
transform: translateY(-38px);
}

/* Main white card keeps Arabic dimensions */
body.ruya-language-en .ruya-hero-card {
width: min(100%, 430px);
min-height: 480px;
padding: 38px;
}

body.ruya-language-en .ruya-hero-logo-wrap {
height: 330px;
}

body.ruya-language-en .ruya-hero-logo-wrap img {
width: 260px;
height: 260px;
}

body.ruya-language-en .ruya-hero-card-copy {
min-height: 0;
padding: 18px 0 0;
direction: ltr;
text-align: left;
}

body.ruya-language-en .ruya-hero-card-copy small {
margin-bottom: 6px;
font-size: 12px;
line-height: 1.5;
}

body.ruya-language-en .ruya-hero-card-copy strong {
max-width: none;
font-size: 21px;
line-height: 1.4;
}

/* =========================================================
ENGLISH FLOATING BOXES
========================================================= */

body.ruya-language-en .ruya-floating-badge {
min-width: 245px;
max-width: 245px;
padding: 17px 19px;

display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 13px;

direction: ltr;
text-align: left;
}

/* Explicitly keep icon/number on the left */
body.ruya-language-en .ruya-floating-badge-number,
body.ruya-language-en .ruya-floating-badge-icon {
order: 1;
width: 42px;
height: 42px;
flex: 0 0 42px;
}

/* Text stays on the right */
body.ruya-language-en .ruya-floating-badge > div {
order: 2;
min-width: 0;
flex: 1;
}

/* Top patent box */
body.ruya-language-en .ruya-floating-badge--patent {
top: 28px;
right: -30px;
left: auto;
}

/* Bottom consulting box */
body.ruya-language-en .ruya-floating-badge--consulting {
bottom: 72px;
left: -48px;
right: auto;
}

body.ruya-language-en .ruya-floating-badge small {
display: block;
margin-bottom: 4px;
font-size: 9px;
line-height: 1.35;
}

body.ruya-language-en .ruya-floating-badge strong {
display: block;
font-size: 11px;
line-height: 1.4;
}

/* Buttons */
body.ruya-language-en .ruya-hero-actions .ruya-button {
width: auto;
white-space: nowrap;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1100px) {

body.ruya-language-en .ruya-hero-inner {
grid-template-columns: 1fr 1fr;
gap: 45px;
}

body.ruya-language-en .ruya-hero-title {
font-size: clamp(44px, 5.5vw, 64px) !important;
}

body.ruya-language-en .ruya-hero-visual {
transform: translateY(-24px);
}

body.ruya-language-en .ruya-floating-badge--patent {
right: -10px;
}

body.ruya-language-en .ruya-floating-badge--consulting {
left: -10px;
}

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

body.ruya-language-en .ruya-hero-inner {
grid-template-columns: 1fr;
gap: 48px;
}

body.ruya-language-en .ruya-hero-title {
max-width: none;
font-size: clamp(38px, 10.7vw, 52px) !important;
line-height: 1.1 !important;
letter-spacing: -.04em;
}

body.ruya-language-en .ruya-hero-title > span {
line-height: 1.1 !important;
}

body.ruya-language-en .ruya-hero-text {
max-width: none;
font-size: 15px;
line-height: 1.85;
}

body.ruya-language-en .ruya-hero-visual {
min-height: 430px;
transform: translateY(-18px);
}

body.ruya-language-en .ruya-hero-card {
width: 100%;
min-height: 390px;
padding: 26px;
}

body.ruya-language-en .ruya-hero-logo-wrap {
height: 270px;
}

body.ruya-language-en .ruya-hero-logo-wrap img {
width: 210px;
height: 210px;
}

body.ruya-language-en .ruya-hero-card-copy {
padding-top: 18px;
}

body.ruya-language-en .ruya-hero-card-copy small {
font-size: 10px;
}

body.ruya-language-en .ruya-hero-card-copy strong {
font-size: 16px;
}

body.ruya-language-en .ruya-floating-badge {
min-width: 190px;
max-width: 190px;
padding: 13px 14px;
gap: 10px;
}

body.ruya-language-en .ruya-floating-badge-number,
body.ruya-language-en .ruya-floating-badge-icon {
width: 38px;
height: 38px;
flex-basis: 38px;
}

body.ruya-language-en .ruya-floating-badge--patent {
top: 5px;
right: 3px;
left: auto;
}

body.ruya-language-en .ruya-floating-badge--consulting {
bottom: 28px;
left: 3px;
right: auto;
}

body.ruya-language-en .ruya-floating-badge small {
font-size: 8px;
}

body.ruya-language-en .ruya-floating-badge strong {
font-size: 9px;
}

body.ruya-language-en .ruya-hero-actions .ruya-button {
width: 100%;
white-space: normal;
}

}

/* ENGLISH HERO — FINAL FORCED FIX */

html[dir="ltr"] .ruya-hero-visual {
top: -44px !important;
}

/* Mirror floating boxes for English */
html[dir="ltr"] .ruya-floating-badge--patent {
top: 24px !important;
left: -30px !important;
right: auto !important;
}

html[dir="ltr"] .ruya-floating-badge--consulting {
bottom: 42px !important;
right: -48px !important;
left: auto !important;
}

/* English box content: icon left, text right */
html[dir="ltr"] .ruya-floating-badge {
direction: ltr !important;
text-align: left !important;
flex-direction: row !important;
justify-content: flex-start !important;
}

html[dir="ltr"] .ruya-floating-badge-number,
html[dir="ltr"] .ruya-floating-badge-icon {
order: 0 !important;
flex: 0 0 42px !important;
}

html[dir="ltr"] .ruya-floating-badge > div {
order: 1 !important;
flex: 1 !important;
min-width: 0 !important;
}

/* Mobile English */
@media (max-width: 767px) {
html[dir="ltr"] .ruya-hero-visual {
top: -24px !important;
}

html[dir="ltr"] .ruya-floating-badge--patent {
top: 4px !important;
left: 4px !important;
right: auto !important;
}

html[dir="ltr"] .ruya-floating-badge--consulting {
bottom: 14px !important;
right: 4px !important;
left: auto !important;
}
}
@media (max-width: 767px) {

.ruya-hero-visual {
display: none !important;
}

}
/* MULTI-PAGE HOSTED WEBSITE */
body { min-height: 100vh; }
.ruya-page-main { padding-top: 82px; }
.ruya-page-main > section:first-child {
  margin-top: 0 !important;
  border-radius: 0 !important;
}
.ruya-nav-link.is-active { color: var(--ruya-navy) !important; }
.ruya-nav-link.is-active::after { width: 100% !important; }
.ruya-page-banner {
  padding: 72px 0 54px;
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(246,16,103,.18), transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(255,175,40,.16), transparent 30%),
    var(--ruya-navy-dark);
}
.ruya-page-banner h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.25;
}
.ruya-page-banner p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.9;
}
@media (max-width: 767px) {
  .ruya-page-main { padding-top: 70px; }
  .ruya-page-banner { padding: 52px 0 42px; }
}


/* =========================================================
   MULTI-PAGE LANGUAGE DIRECTION FIX
========================================================= */
html[dir="ltr"] .ruya-header,
html[dir="ltr"] .ruya-footer {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] .ruya-header,
html[dir="rtl"] .ruya-footer {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="ltr"] .ruya-desktop-nav,
html[dir="ltr"] .ruya-mobile-nav,
html[dir="ltr"] .ruya-footer-main,
html[dir="ltr"] .ruya-footer-bottom {
  direction: ltr !important;
}

html[dir="rtl"] .ruya-desktop-nav,
html[dir="rtl"] .ruya-mobile-nav,
html[dir="rtl"] .ruya-footer-main,
html[dir="rtl"] .ruya-footer-bottom {
  direction: rtl !important;
}

/* Work with Banks — all cards white by default, blue on hover */
.ruya-bank-work-card--accent,
.ruya-bank-work-card--dark {
  color: var(--ruya-text);
  border-color: var(--ruya-border);
  background: var(--ruya-white);
  box-shadow: 0 18px 55px rgba(4,22,61,.07);
}
.ruya-bank-work-card--accent h3,
.ruya-bank-work-card--dark h3 { color: var(--ruya-navy); }
.ruya-bank-work-card--accent p,
.ruya-bank-work-card--dark p { color: var(--ruya-muted); }
.ruya-bank-work-card--accent .ruya-bank-work-number,
.ruya-bank-work-card--dark .ruya-bank-work-number { color: var(--ruya-pink); }
.ruya-bank-work-card--accent .ruya-bank-work-icon,
.ruya-bank-work-card--dark .ruya-bank-work-icon {
  color: var(--ruya-navy);
  background: var(--ruya-surface);
}
.ruya-bank-work-card:hover {
  color: var(--ruya-white);
  border-color: transparent;
  background: radial-gradient(circle at 100% 0%, rgba(246,16,103,.16), transparent 40%), var(--ruya-navy);
  box-shadow: 0 26px 65px rgba(4,22,61,.20);
}
.ruya-bank-work-card:hover h3 { color: var(--ruya-white); }
.ruya-bank-work-card:hover p { color: rgba(255,255,255,.68); }
.ruya-bank-work-card:hover .ruya-bank-work-number { color: var(--ruya-orange); }
.ruya-bank-work-card:hover .ruya-bank-work-icon { color: var(--ruya-white); background: rgba(255,255,255,.10); }

/* Services — white card on hover */
.ruya-services-details .ruya-service-card:hover {
  color: var(--ruya-navy);
  background: var(--ruya-white);
  border-color: var(--ruya-white);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.ruya-services-details .ruya-service-card:hover h3 { color: var(--ruya-navy); }
.ruya-services-details .ruya-service-card:hover > p { color: var(--ruya-muted); }
.ruya-services-details .ruya-service-card:hover li { color: var(--ruya-text); }
.ruya-services-details .ruya-service-card:hover .ruya-service-number { color: var(--ruya-pink); }
.ruya-services-details .ruya-service-card:hover .ruya-service-icon { color: var(--ruya-navy); background: var(--ruya-surface); }

@media (hover: none) {
  .ruya-bank-work-card:hover {
    color: var(--ruya-text); border-color: var(--ruya-border); background: var(--ruya-white);
    box-shadow: 0 18px 55px rgba(4,22,61,.07); transform: none;
  }
  .ruya-bank-work-card:hover h3 { color: var(--ruya-navy); }
  .ruya-bank-work-card:hover p { color: var(--ruya-muted); }
  .ruya-bank-work-card:hover .ruya-bank-work-number { color: var(--ruya-pink); }
  .ruya-bank-work-card:hover .ruya-bank-work-icon { color: var(--ruya-navy); background: var(--ruya-surface); }

  .ruya-services-details .ruya-service-card:hover {
    color: var(--ruya-white); background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.11); box-shadow: none; transform: none;
  }
  .ruya-services-details .ruya-service-card:hover h3 { color: var(--ruya-white); }
  .ruya-services-details .ruya-service-card:hover > p { color: rgba(255,255,255,.63); }
  .ruya-services-details .ruya-service-card:hover li { color: rgba(255,255,255,.86); }
  .ruya-services-details .ruya-service-card:hover .ruya-service-icon { color: var(--ruya-white); background: rgba(255,255,255,.09); }
}
