:root {
 --rit-navy-950: #06163d;
 --rit-navy-900: #0a1f4d;
 --rit-navy-800: #10275c;
 --rit-blue: #2563eb;
 --rit-green: #00b67a;
 --rit-green-dark: #009765;
 --rit-text: #0b1640;
 --rit-muted: #65718a;
 --rit-line: rgba(217, 226, 240, 0.85);
 --rit-white: #fff;
 --rit-radius: 8px;
 --rit-shadow: 0 26px 70px rgba(6, 22, 61, 0.22);
 --rit-header-height: 76px;
}

* { box-sizing: border-box; }

/* SCOPED resets — only apply inside the new header, not globally on WHMCS body.
 * Original new-design loaded this as the site-wide CSS; in WHMCS we must NOT
 * touch the global body / button / link rules (Lagom theme sets them).
 */
.rit-header,
.rit-mobile-menu,
.rit-mobile-overlay {
 font-family: "Inter", Arial, sans-serif;
 color: var(--rit-text);
}

.rit-header *,
.rit-mobile-menu *,
.rit-mobile-overlay * {
 box-sizing: border-box;
}

.rit-header a,
.rit-mobile-menu a,
.rit-mobile-overlay a {
 color: inherit;
 text-decoration: none;
}

.rit-header button,
.rit-mobile-menu button,
.rit-mobile-overlay button {
 font: inherit;
 color: inherit;
}

.rit-shell {
 width: min(100% - 350px, 1540px);
 margin: 0 auto;
}

.rit-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1100;
 color: #fff;
 border: 0;
 border-radius: 0;
 overflow: visible;
 background: #06163d;
 box-shadow: none;
}

.rit-utility,
.rit-mainbar {
 overflow: visible;
}

.rit-utility { border-radius: 0; }
.rit-mainbar { border-radius: 0; }

.rit-utility {
 position: relative;
 z-index: 1100;
 border-bottom: 1px solid rgba(255, 255, 255, 0.12);
 background: #04113a;
}

.rit-utility__inner,
.rit-mainbar__inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
}

.rit-utility__inner {
 min-height: 42px;
 font-size: 14px;
 font-weight: 700;
}

.rit-utility__left,
.rit-utility__right {
 display: flex;
 align-items: center;
 gap: 24px;
 min-width: 0;
}

.rit-utility__link,
.rit-currency {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: rgba(255, 255, 255, 0.9);
 white-space: nowrap;
 transition: color .2s ease;
}

.rit-utility__link + .rit-utility__link,
.rit-utility__right .rit-utility__link,
.rit-currency {
 position: relative;
}

.rit-utility__link + .rit-utility__link::before,
.rit-utility__right .rit-utility__link::before,
.rit-currency::before {
 content: "";
 position: absolute;
 left: -13px;
 top: 50%;
 width: 1px;
 height: 18px;
 background: rgba(255, 255, 255, 0.28);
 transform: translateY(-50%);
}

.rit-utility__link:hover,
.rit-currency:hover { color: #fff; }

.rit-utility__link--hot { color: #ffb25b; }

.rit-utility__link--hot svg {
 animation: rit-offer-pulse 1.8s ease-in-out infinite;
}

@keyframes rit-offer-pulse {
 0%, 100% { transform: scale(1); }
 50% { transform: scale(1.15); }
}

.rit-utility svg,
.rit-currency svg,
.rit-nav__item svg,
.rit-client-btn svg,
.rit-menu-card svg {
 width: 1em;
 height: 1em;
 fill: none;
 stroke: currentColor;
 stroke-width: 2;
 stroke-linecap: round;
 stroke-linejoin: round;
}

.rit-utility svg {
 width: 18px;
 height: 18px;
}

.rit-currency {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 border: 1px solid rgba(255, 255, 255, 0.20);
 border-radius: 6px;
 padding: 4px 10px;
 background: rgba(255, 255, 255, 0.06);
 color: #fff;
 font-size: 13px;
 font-weight: 700;
 cursor: pointer;
 transition: background .2s ease, border-color .2s ease;
 appearance: none;
 -webkit-appearance: none;
 background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 6px center;
 background-size: 12px;
 padding-right: 24px;
}

.rit-currency:hover {
 background: rgba(255, 255, 255, 0.12);
 border-color: rgba(255, 255, 255, 0.30);
}

.rit-currency option {
 background: #06163d;
 color: #fff;
}

.rit-currency__flag {
 position: relative;
 display: inline-block;
 width: 20px;
 height: 20px;
 color: transparent;
 background: transparent;
 border-radius: 0;
}

.rit-currency__flag::before {
 content: "";
 position: absolute;
 inset: 2px;
 border: 2px solid currentColor;
 border-radius: 50%;
 color: rgba(255, 255, 255, 0.9);
}

.rit-currency__flag::after {
 content: "";
 position: absolute;
 left: 4px;
 right: 4px;
 top: 9px;
 border-top: 2px solid rgba(255, 255, 255, 0.9);
 box-shadow: 0 -7px 0 -5px rgba(255,255,255,.9), 0 7px 0 -5px rgba(255,255,255,.9);
}

.rit-mainbar {
 position: relative;
 z-index: 1;
 background: #04113a;
 border-bottom: 0;
 transition: background .25s ease, box-shadow .25s ease;
}

.rit-header.is-scrolled .rit-mainbar {
 background: #06163d;
 box-shadow: 0 18px 42px rgba(6, 22, 61, 0.18);
}

.rit-mainbar__inner { min-height: var(--rit-header-height); }

.rit-logo {
 display: inline-flex;
 align-items: center;
 width: 230px;
 flex: 0 0 auto;
}

.rit-logo img {
 display: block;
 width: 180px;
 height: auto;
 filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.rit-nav {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 gap: 26px;
 flex: 0 0 auto;
 margin-left: clamp(0px, 32vw, 240px);
}

@media (max-width: 1440px) {
 .rit-nav { margin-left: clamp(0px, 28vw, 360px); }
}

@media (max-width: 1280px) {
 .rit-nav { margin-left: clamp(0px, 22vw, 280px); gap: 22px; }
}

@media (max-width: 1180px) {
 .rit-nav { margin-left: 200px; gap: 20px; }
}

.rit-nav__item {
 position: relative;
 min-height: 54px;
 padding: 0 0;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 border: 0;
 border-radius: 999px;
 background: transparent;
 color: rgba(255, 255, 255, 0.9);
 font-size: 15px;
 font-weight: 800;
 cursor: pointer;
 transition: background .2s ease, color .2s ease, transform .2s ease;
}

/* Flat nav link variant (no dropdown arrow) — used for Reseller */
.rit-nav__item--link {
 gap: 0;
 cursor: pointer;
}

.rit-nav__item--link:hover {
 color: var(--rit-green);
}

.rit-nav__item svg {
 width: 14px;
 height: 14px;
 transition: transform .24s ease;
}

.rit-nav__item:hover,
.rit-nav__item.is-active {
 color: var(--rit-green);
 background: transparent;
}

.rit-nav__item.is-active {
 box-shadow: none;
}

.rit-nav__item.is-active::after {
 content: "";
 position: absolute;
 left: 10px;
 right: 10px;
 bottom: 3px;
 height: 4px;
 background: var(--rit-green);
 border-radius: 99px;
 box-shadow: 0 8px 18px rgba(0, 182, 122, 0.35);
}

.rit-nav__item.is-active svg { transform: rotate(180deg); }

.rit-actions {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-left: auto;
 flex: 0 0 auto;
}

.rit-client-btn {
 min-height: 46px;
 padding: 0 22px;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 color: #fff;
 background: linear-gradient(135deg, var(--rit-green), #0bcf91);
 border-radius: 8px;
 font-size: 15px;
 font-weight: 900;
 box-shadow: 0 14px 30px rgba(0, 182, 122, 0.28);
 transition: transform .2s ease, box-shadow .2s ease;
}

.rit-client-btn:hover {
 transform: translateY(-1px);
 box-shadow: 0 18px 34px rgba(0, 182, 122, 0.34);
}

.rit-client-btn svg { width: 18px; height: 18px; }

.rit-mobile-toggle {
 display: none;
 width: 42px;
 height: 42px;
 border: 1px solid rgba(255, 255, 255, 0.16);
 border-radius: 999px;
 background: rgba(255, 255, 255, 0.08);
 cursor: pointer;
}

.rit-mobile-toggle span {
 display: block;
 width: 18px;
 height: 2px;
 margin: 4px auto;
 background: #fff;
 border-radius: 999px;
}

.rit-mega {
 /* WHMCS nests the header inside Lagom layouts that may have overflow:hidden
 * or transform/filter creating a containing block. Using position:fixed keeps
 * the mega panel free of any parent clipping.
 * JS sets --rit-mega-top inline based on header.getBoundingClientRect().bottom.
 */
 position: fixed;
 top: var(--rit-mega-top, 100%);
 left: 0;
 right: 0;
 padding: 0;
 min-height: 0;
 pointer-events: none;
 z-index: 999;
}

/* No hover bridge needed — mega menu sits flush below the header (top:
 * var(--rit-mega-top) which is set to header.getBoundingClientRect().bottom).
 * Cursor crosses from nav into mega with no gap. */

[data-rit-header][data-hover-panel] .rit-mega { pointer-events: auto; }

.rit-mega__backdrop {
 position: fixed;
 inset: 0;
 background: rgba(6, 22, 61, 0.28);
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
 transition: opacity .22s ease, visibility .22s ease;
}

.rit-mega.is-open .rit-mega__backdrop {
 opacity: 1;
 visibility: visible;
}

.rit-mega__panel {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 width: auto;
 overflow: hidden;
 opacity: 0;
 visibility: hidden;
 transform: translateY(-8px);
 margin-top: 0;
 color: var(--rit-text);
 background: rgba(246, 251, 255, 0.97);
 border: 1px solid rgba(216, 229, 245, 0.98);
 border-radius: 0;
 box-shadow: 0 30px 80px rgba(5, 18, 49, 0.28);
 backdrop-filter: blur(18px);
 transition: opacity .22s ease, transform .28s ease, visibility 0s linear .22s;
}

/* HTML `hidden` attribute applies display:none — override so CSS transitions work */
.rit-mega__panel[hidden] {
 display: block;
}

.rit-mega__panel.is-active {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
 transition: opacity .22s ease, transform .28s ease, visibility 0s linear 0s;
}

/* CSS-driven hover: show panel matching data-hover-panel on header */
[data-rit-header][data-hover-panel="domains"] .rit-mega__panel[data-menu-panel="domains"],
[data-rit-header][data-hover-panel="hosting"] .rit-mega__panel[data-menu-panel="hosting"],
[data-rit-header][data-hover-panel="servers"] .rit-mega__panel[data-menu-panel="servers"],
[data-rit-header][data-hover-panel="email"] .rit-mega__panel[data-menu-panel="email"] {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
 transition: opacity .22s ease, transform .28s ease, visibility 0s linear 0s;
}

/* Spacer removed — JS sets mega container height to match active panel */

/* Show backdrop when any panel is active via hover */
[data-rit-header][data-hover-panel] .rit-mega__backdrop {
 opacity: 1;
 visibility: visible;
}

/* Active nav item indicator (green underline) — based on hover data attr */
[data-rit-header][data-hover-panel="domains"] .rit-nav__item[data-menu-trigger="domains"],
[data-rit-header][data-hover-panel="hosting"] .rit-nav__item[data-menu-trigger="hosting"],
[data-rit-header][data-hover-panel="servers"] .rit-nav__item[data-menu-trigger="servers"],
[data-rit-header][data-hover-panel="email"] .rit-nav__item[data-menu-trigger="email"] {
 color: var(--rit-green);
}

[data-rit-header][data-hover-panel="domains"] .rit-nav__item[data-menu-trigger="domains"] svg,
[data-rit-header][data-hover-panel="hosting"] .rit-nav__item[data-menu-trigger="hosting"] svg,
[data-rit-header][data-hover-panel="servers"] .rit-nav__item[data-menu-trigger="servers"] svg,
[data-rit-header][data-hover-panel="email"] .rit-nav__item[data-menu-trigger="email"] svg {
 transform: rotate(180deg);
}

.rit-mega__inner {
 width: min(100% - 32px, 1600px);
 margin: 0 auto;
 display: grid;
 grid-template-columns: 240px minmax(0, 1fr) 360px;
 gap: 28px;
 padding: 30px 32px 32px;
}

.rit-mega__rail {
 padding: 18px 0 0;
 align-self: stretch;
 display: flex;
 flex-direction: column;
 gap: 14px;
 background: transparent;
 border: 0;
 border-right: 1px solid rgba(91, 110, 145, 0.23);
 border-radius: 0;
}

.rit-mega__rail-label {
 display: none;
 padding: 8px 10px 6px;
 color: var(--rit-muted);
 font-size: 11px;
 font-weight: 900;
 letter-spacing: .12em;
 text-transform: uppercase;
}

.rit-mega__rail button {
 min-height: 54px;
 width: calc(100% - 26px);
 padding: 0 20px 0 24px;
 border: 0;
 border-radius: 8px;
 text-align: left;
 color: #0a1f4d;
 background: transparent;
 font-size: 18px;
 font-weight: 900;
 cursor: pointer;
}

.rit-mega__rail button {
 display: flex;
 align-items: center;
 gap: 22px;
}

.rit-mega__rail button:hover,
.rit-mega__rail button.is-active {
 color: #069d6c;
 background: rgba(0, 182, 122, 0.12);
 box-shadow: none;
}

.rit-rail-icon {
 position: relative;
 width: 24px;
 height: 24px;
 flex: 0 0 24px;
 color: #50658b;
}

.rit-mega__rail button.is-active .rit-rail-icon,
.rit-mega__rail button:hover .rit-rail-icon { color: #069d6c; }

.rit-rail-icon::before,
.rit-rail-icon::after {
 content: "";
 position: absolute;
 border: 2px solid currentColor;
 border-radius: 5px;
}

.rit-rail-icon--domains::before { inset: 3px; border-radius: 50%; }
.rit-rail-icon--domains::after { left: 3px; right: 3px; top: 14px; border-width: 2px 0 0; border-radius: 0; }
.rit-rail-icon--hosting::before { left: 4px; right: 4px; top: 5px; height: 6px; }
.rit-rail-icon--hosting::after { left: 4px; right: 4px; bottom: 5px; height: 6px; box-shadow: 0 -9px 0 -2px currentColor; }
.rit-rail-icon--reseller::before { left: 3px; top: 5px; width: 10px; height: 10px; border-radius: 50%; }
.rit-rail-icon--reseller::after { right: 3px; top: 5px; width: 10px; height: 10px; border-radius: 50%; box-shadow: -8px 13px 0 -4px currentColor; }
.rit-rail-icon--servers::before { left: 4px; right: 4px; top: 5px; height: 7px; }
.rit-rail-icon--servers::after { left: 4px; right: 4px; bottom: 5px; height: 7px; }
.rit-rail-icon--email::before { inset: 5px 2px; }
.rit-rail-icon--email::after { left: 4px; right: 4px; top: 10px; border-width: 2px 0 0; transform: rotate(20deg); }

.rit-mega__content {
 min-width: 0;
}

.rit-mega__heading {
 display: none;
 margin-bottom: 18px;
}

.rit-mega__heading span {
 color: var(--rit-green);
 font-size: 12px;
 font-weight: 900;
 letter-spacing: .12em;
 text-transform: uppercase;
}

.rit-mega__heading h2 {
 margin: 6px 0 0;
 color: var(--rit-navy-950);
 font-size: 24px;
 line-height: 1.2;
}

.rit-mega__grid {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 grid-auto-rows: max-content;
 align-content: start;
 gap: 0 36px;
}

.rit-menu-card {
 min-height: 96px;
 padding: 0 0 18px;
 display: grid;
 grid-template-columns: 58px minmax(0, 1fr);
 align-items: center;
 gap: 18px;
 background: transparent;
 border: 0;
 border-bottom: 1px solid rgba(91, 110, 145, 0.16);
 border-radius: 0;
 transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.rit-menu-card:hover {
 transform: translateX(4px);
 background: transparent;
 border-color: rgba(0, 182, 122, 0.30);
 box-shadow: none;
}

.rit-menu-card__icon {
 width: 58px;
 height: 58px;
 display: grid;
 place-items: center;
 color: var(--rit-blue);
 background: rgba(37, 99, 235, 0.09);
 border-radius: 8px;
 font-size: 30px;
 box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}

.rit-menu-card:nth-child(2n) .rit-menu-card__icon {
 color: var(--rit-green);
 background: rgba(0, 182, 122, 0.10);
}

.rit-menu-card strong {
 display: block;
 color: var(--rit-navy-950);
 font-size: 18px;
 line-height: 1.25;
}

.rit-menu-card small {
 display: block;
 margin-top: 5px;
 color: var(--rit-muted);
 font-size: 14px;
 line-height: 1.35;
}

.rit-mega-promo {
 position: relative;
 min-height: 292px;
 padding: 26px 28px;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 overflow: hidden;
 color: #fff;
 background:
  radial-gradient(circle at 18% 18%, rgba(0, 182, 122, 0.22), transparent 36%),
  radial-gradient(circle at 78% 40%, rgba(0, 182, 122, 0.22), transparent 32%),
  linear-gradient(145deg, #06163d, #0a2a72);
 border-radius: 14px;
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(6, 22, 61, 0.34);
 isolation: isolate;
}

.rit-mega-promo::before {
 content: "";
 position: absolute;
 inset: -1px;
 border-radius: inherit;
 padding: 1px;
 background: linear-gradient(135deg, rgba(0, 182, 122, 0.5), transparent 40%, transparent 60%, rgba(37, 99, 235, 0.4));
 -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 pointer-events: none;
 z-index: 1;
}

.rit-mega-promo__badge {
 position: relative;
 z-index: 2;
 width: fit-content;
 order: 2;
 top: auto;
 left: auto;
 margin: 0 0 18px;
 padding: 8px 14px;
 color: #d8ffef;
 background: rgba(0, 182, 122, 0.48);
 border-radius: 999px;
 font-size: 13px;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .08em;
}

.rit-mega-promo h3 {
 position: relative;
 z-index: 2;
 order: 1;
 margin: 0 0 12px;
 font-size: 30px;
 line-height: 1.1;
}

.rit-mega-promo p {
 position: relative;
 z-index: 2;
 order: 3;
 margin: 0 0 14px;
 color: rgba(255, 255, 255, 0.72);
 font-size: 14px;
 line-height: 1.5;
}

.rit-mega-promo strong {
 position: relative;
 z-index: 2;
 order: 4;
 display: block;
 margin-bottom: 20px;
 color: #22d38d;
 font-size: 34px;
 line-height: 1;
 letter-spacing: -0.02em;
}

.rit-mega-promo a {
 position: relative;
 z-index: 2;
 order: 5;
 width: fit-content;
 padding: 13px 20px;
 color: #fff;
 background: linear-gradient(135deg, var(--rit-green), #0bcf91);
 border-radius: 8px;
 font-size: 15px;
 font-weight: 900;
 box-shadow: 0 12px 24px rgba(0, 182, 122, 0.34);
 transition: transform .2s ease, box-shadow .2s ease;
}

.rit-mega-promo a:hover {
 transform: translateY(-2px);
 box-shadow: 0 16px 30px rgba(0, 182, 122, 0.42);
}

.rit-demo-hero {
 min-height: 720px;
 padding-top: 520px;
 color: #fff;
 background:
  radial-gradient(circle at 78% 22%, rgba(0, 182, 122, 0.18), transparent 28%),
  radial-gradient(circle at 18% 34%, rgba(37, 99, 235, 0.18), transparent 26%),
  linear-gradient(135deg, rgba(6, 22, 61, 0.96), rgba(8, 27, 73, 0.94)),
  repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px);
}

.rit-demo-hero__badge {
 display: inline-flex;
 margin-bottom: 20px;
 padding: 9px 14px;
 color: #b9ffdf;
 background: rgba(0, 182, 122, 0.12);
 border: 1px solid rgba(0, 182, 122, 0.24);
 border-radius: 999px;
 font-size: 13px;
 font-weight: 900;
}

.rit-demo-hero h1 {
 max-width: 690px;
 margin: 0 0 18px;
 font-size: clamp(42px, 6vw, 76px);
 line-height: 1.02;
 letter-spacing: 0;
}

.rit-demo-hero p {
 max-width: 580px;
 margin: 0;
 color: rgba(255, 255, 255, 0.74);
 font-size: 18px;
 line-height: 1.7;
}

.rit-mobile-menu,
.rit-mobile-overlay {
 display: none;
}

.rit-mobile-menu svg {
 width: 1em;
 height: 1em;
 fill: none;
 stroke: currentColor;
 stroke-width: 2;
 stroke-linecap: round;
 stroke-linejoin: round;
}

@media (max-width: 1100px) {
 .rit-shell { width: min(100% - 200px, 1320px); }
 .rit-nav { display: none; }
 .rit-mobile-toggle { display: inline-block; }
 .rit-mega { display: none; }
 .rit-mobile-menu {
  position: fixed;
  top: 0;
 right: 0;
 bottom: 0;
  z-index: 1200;
  width: min(88vw, 380px);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -20px 0 50px rgba(6, 22, 61, 0.22);
 transform: translateX(105%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
 }
 .rit-mobile-menu.is-open { transform: translateX(0); }
 .rit-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  display: block;
  background: rgba(6, 22, 61, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
 }
 .rit-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
 }
 .rit-mobile-menu__header {
  min-height: 76px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef2f7;
 }
 .rit-mobile-menu__logo img {
  display: block;
  width: 148px;
  height: auto;
 }
 .rit-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #0a1f4d;
  background: #f4f7fb;
  cursor: pointer;
 }
 .rit-mobile-menu__close svg {
  width: 22px;
  height: 22px;
 }
 .rit-mobile-menu__nav {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 12px 0;
 }
 .rit-mobile-menu__section {
  border-bottom: 1px solid #f1f4f8;
 }
 .rit-mobile-menu__trigger,
 .rit-mobile-menu__link {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: #17213d;
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
 }
 .rit-mobile-menu__trigger svg {
  width: 20px;
  height: 20px;
  transition: transform .24s ease;
 }
 .rit-mobile-menu__trigger.is-open svg {
  transform: rotate(180deg);
 }
 .rit-mobile-menu__submenu {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  transition: max-height .32s ease;
 }
 .rit-mobile-menu__submenu.is-open {
  max-height: 420px;
 }
 .rit-mobile-menu__submenu a {
  display: block;
  padding: 13px 34px;
  color: #526179;
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid #eef2f7;
 }
 .rit-mobile-menu__submenu a:hover {
  color: var(--rit-green);
  background: #fff;
 }
 .rit-mobile-menu__footer {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #eef2f7;
 }
 .rit-mobile-menu__btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
 }
 .rit-mobile-menu__btn--outline {
  color: var(--rit-green);
  border: 1px solid var(--rit-green);
 }
 .rit-mobile-menu__btn--primary {
  color: #fff;
  background: var(--rit-green);
 }
}

@media (max-width: 720px) {
 .rit-utility__left { display: none; }
 .rit-utility__inner { justify-content: center; }
 .rit-logo img { width: 148px; }
 .rit-client-btn { display: none; }
 .rit-demo-hero { padding-top: 150px; }
 .rit-menu-card { min-height: 82px; }
 .rit-shell { width: min(100% - 56px, 1320px); }
}
