﻿:root {
    --rb_bg: #172336;
    --rb_bg_2: #22324a;
    --rb_surface: rgba(34, 50, 74, 0.76);
    --rb_surface_strong: #2b3d58;
    --rb_surface_light: #f8fafc;
    --rb_surface_light_text: #0f172a;
    --rb_surface_light_muted: #334155;
    --rb_border: rgba(148, 163, 184, 0.24);
    --rb_text: #f8fafc;
    --rb_text_muted: #e5edf6;
    --rb_primary: #3b82f6;
    --rb_primary_hover: #2563eb;
    --rb_secondary: #22d3ee;
    --rb_glow: rgba(59, 130, 246, 0.35);
    --rb_shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --rb_radius: 22px;
    --rb_container: 1240px;
    --rb-admin-bar-offset: 0px;
    --rb-header-top: var(--rb-admin-bar-offset);
    --rb-header-height: 87px;
    --rb-hero-viewport-height: 100svh;
}

@supports (height: 100dvh) {
    :root {
        --rb-hero-viewport-height: 100dvh;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: calc(100vh - var(--rb-admin-bar-offset));
    display: flex;
    flex-direction: column;
    color: var(--rb_text);
    background:
        radial-gradient(circle at top left, rgba(125, 211, 252, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.18), transparent 34%),
        linear-gradient(180deg, #152133 0%, #172336 45%, #22324a 100%);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

body > .rb-home-content,
body > .rb-page-section {
    flex: 1 0 auto;
}

body.rb-front-page-hero-only {
    overflow-y: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--rb_primary);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: #7cb2ff;
}

.container {
    max-width: var(--rb_container);
}

.custom-logo-link,
.rb-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block;
}

.rb-header {
    position: fixed;
    top: var(--rb-header-top);
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(23, 35, 54, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.admin-bar .rb-header {
    top: var(--rb-header-top);
}

body.admin-bar {
    --rb-admin-bar-offset: 32px;
    --rb-header-top: var(--rb-admin-bar-offset);
}

@media(max-width: 782px) {
    body.admin-bar {
        --rb-admin-bar-offset: 46px;
        --rb-header-top: var(--rb-admin-bar-offset);
    }
}

body:not(.rb-front-page) {
    padding-top: var(--rb-header-height);
}

body.rb-front-page .rb-header {
    top: var(--rb-header-top);
    margin-top: 0;
    background: rgba(23, 35, 54, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.admin-bar.rb-front-page .rb-header {
    top: var(--rb-header-top);
    margin-top: 0;
}

.rb-header.is-scrolled,
.rb-header.is-menu-open {
    background: rgba(23, 35, 54, 0.92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    border-bottom-color: rgba(125, 211, 252, 0.14);
}

.rb-header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rb-text-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--rb_text);
}

.rb-navbar {
    align-items: center;
    justify-content: flex-end;
}

.rb-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rb-menu li {
    margin: 0;
}

.rb-menu a {
    color: rgba(248, 250, 252, 0.88);
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

.rb-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rb_primary), #7dd3fc);
    transition: width 0.25s ease;
}

.rb-menu a:hover::after,
.rb-menu .current-menu-item > a::after,
.rb-menu .current_page_item > a::after {
    width: 100%;
}

.rb-mobile-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rb-mobile-toggle:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(125, 211, 252, 0.24);
}

.rb-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.rb-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rb-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.rb-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.rb-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    --rb-hero-shift-x: 0px;
    --rb-hero-shift-y: 0px;
}

.rb-front-page .rb-hero {
    min-height: calc(var(--rb-hero-viewport-height) - var(--rb-admin-bar-offset));
}

.rb-front-page-hero-only .rb-hero {
    height: calc(var(--rb-hero-viewport-height) - var(--rb-admin-bar-offset));
    min-height: 0;
}

.rb-hero.is-without-image {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 26%),
        linear-gradient(120deg, #0a1220 0%, #0c1730 52%, #132342 100%);
}

.rb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.20), transparent 28%),
        linear-gradient(90deg, rgba(5, 8, 15, 0.84) 0%, rgba(5, 8, 15, 0.58) 45%, rgba(5, 8, 15, 0.76) 100%);
    z-index: 1;
}

.rb-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(8, 16, 28, 0) 0%, rgba(8, 16, 28, 0.95) 100%);
    z-index: 1;
}

.rb-hero-overlay {
    position: absolute;
    inset: 0;
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,1));
    z-index: 1;
    transform: translate3d(calc(var(--rb-hero-shift-x) * 0.35), calc(var(--rb-hero-shift-y) * 0.35), 0);
}

.rb-hero .container {
    position: relative;
    z-index: 2;
}

.rb-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    align-items: center;
    gap: 40px;
}

.rb-hero-content {
    max-width: 760px;
    padding: 118px 0 140px;
}

.rb-front-page .rb-hero-content {
    padding-top: clamp(152px, 18vh, 220px);
    padding-bottom: 148px;
}

.rb-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--rb_text_muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rb-hero-kicker::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rb_primary), #22d3ee);
    box-shadow: 0 0 20px var(--rb_glow);
}

.rb-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.rb-hero p {
    max-width: 680px;
    margin: 0 0 34px;
    color: var(--rb_text_muted);
    font-size: 19px;
    line-height: 1.75;
}

.rb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.rb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rb-btn:hover {
    transform: none;
}

.rb-btn-primary {
    color: #fff;
    border: 1px solid rgba(147, 197, 253, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, #60a5fa 0%, var(--rb_primary) 45%, #1d4ed8 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 14px 30px rgba(29, 78, 216, 0.28),
        0 0 0 1px rgba(96, 165, 250, 0.08);
}

.rb-btn-primary:hover {
    color: #fff;
    border-color: rgba(191, 219, 254, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05)),
        linear-gradient(135deg, #7cc0ff 0%, #3b82f6 42%, var(--rb_primary_hover) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 18px 36px rgba(37, 99, 235, 0.34),
        0 0 24px rgba(59, 130, 246, 0.18);
}

.rb-btn-primary:focus-visible {
    color: #fff;
    outline: none;
    border-color: rgba(191, 219, 254, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 18px 36px rgba(37, 99, 235, 0.3),
        0 0 0 0.28rem rgba(96, 165, 250, 0.2);
}

.rb-btn-secondary {
    color: var(--rb_text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rb-btn-secondary:hover {
    color: #fff;
    border-color: rgba(125, 211, 252, 0.35);
    background: rgba(59, 130, 246, 0.1);
}

.rb-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rb-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(10, 18, 32, 0.52);
    color: rgba(248, 250, 252, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.rb-badge-chip::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rb_secondary), var(--rb_primary));
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.rb-hero-panel {
    position: relative;
    align-self: center;
    margin-bottom: 0;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        rgba(8, 16, 28, 0.72);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.rb-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, rgba(34, 211, 238, 0) 72%);
    pointer-events: none;
}

.rb-panel-topline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(248, 250, 252, 0.88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rb-panel-signal {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    animation: rb-pulse 2s infinite;
}

.rb-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.rb-metric-item {
    padding: 16px 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.rb-metric-item strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.rb-metric-item span {
    color: rgba(203, 213, 225, 0.78);
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rb-panel-story {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.rb-panel-story p {
    margin: 0;
    color: var(--rb_text_muted);
    font-size: 15px;
    line-height: 1.75;
}

.rb-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rb-panel-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(248, 250, 252, 0.92);
    font-size: 14px;
    line-height: 1.6;
}

.rb-panel-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(125, 211, 252, 0.35);
    background: radial-gradient(circle, rgba(34, 211, 238, 0.95) 0%, rgba(34, 211, 238, 0.15) 55%, transparent 56%);
}

.rb-scroll-hint {
    position: absolute;
    right: 32px;
    bottom: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(248, 250, 252, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rb-scroll-hint span {
    position: relative;
    width: 26px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.rb-scroll-hint span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%);
    animation: rb-scroll 1.8s infinite;
}

.rb-home-content {
    position: relative;
    z-index: 2;
    margin-top: -72px;
    padding-bottom: 40px;
}

.rb-front-page .rb-home-content > *:first-child {
    position: relative;
    margin-top: 0;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.rb-front-page .rb-home-content > *:first-child::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0), rgba(34, 211, 238, 0.35), rgba(59, 130, 246, 0));
    pointer-events: none;
}

.rb-home-content > * {
    margin: 0;
}

.rb-home-content .alignfull {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.rb-home-content .alignwide,
.rb-page-content .alignwide {
    max-width: calc(var(--rb_container) + 120px);
}

.rb-page-section {
    padding: 80px 0;
}

.rb-content-card {
    position: relative;
    padding: 38px;
    border: 1px solid var(--rb_border);
    border-radius: var(--rb_radius);
    background: var(--rb_surface);
    box-shadow: var(--rb_shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.rb-content-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.65), rgba(34, 211, 238, 0));
}

.rb-page-title {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 16px;
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1;
    letter-spacing: -0.048em;
    font-weight: 800;
    text-wrap: balance;
}

.rb-page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rb-primary), var(--rb-secondary));
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.28);
}

.rb-post-title {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.15;
}

.rb-page-content,
.rb-home-content {
    color: var(--rb_text_muted);
    font-size: 17px;
    line-height: 1.8;
}

.rb-page-content h1,
.rb-page-content h2,
.rb-page-content h3,
.rb-page-content h4,
.rb-page-content h5,
.rb-page-content h6,
.rb-home-content h1,
.rb-home-content h2,
.rb-home-content h3,
.rb-home-content h4,
.rb-home-content h5,
.rb-home-content h6,
.rb-page-content .wp-block-heading,
.rb-home-content .wp-block-heading {
    color: var(--rb_text);
    margin-top: 0;
    margin-bottom: 0.8em;
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 800;
    text-wrap: balance;
}

.rb-page-content h2,
.rb-home-content h2,
.rb-page-content h2.wp-block-heading,
.rb-home-content h2.wp-block-heading {
    font-size: clamp(28px, 2.6vw, 38px);
    margin-top: 0.5em;
    margin-bottom: 0.55em;
}

.rb-page-content h3,
.rb-home-content h3,
.rb-page-content h3.wp-block-heading,
.rb-home-content h3.wp-block-heading {
    font-size: clamp(24px, 2.3vw, 32px);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.rb-page-content h4,
.rb-home-content h4,
.rb-page-content h4.wp-block-heading,
.rb-home-content h4.wp-block-heading {
    font-size: clamp(20px, 1.8vw, 26px);
    margin-top: 0.5em;
    margin-bottom: 0.45em;
}

.rb-page-content p:last-child,
.rb-home-content p:last-child {
    margin-bottom: 0;
}

.rb-page-content .wp-block-button__link,
.rb-home-content .wp-block-button__link {
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.rb-page-content .wp-block-button.is-style-outline .wp-block-button__link,
.rb-home-content .wp-block-button.is-style-outline .wp-block-button__link {
    box-shadow: none;
}

.rb-page-content .wp-block-image img,
.rb-page-content .wp-block-cover,
.rb-page-content .wp-block-group,
.rb-home-content .wp-block-image img,
.rb-home-content .wp-block-cover,
.rb-home-content .wp-block-group {
    border-radius: 18px;
}

.rb-page-content .wp-block-group,
.rb-home-content .wp-block-group {
    overflow: hidden;
}

.rb-page-content .wp-block-quote,
.rb-page-content .wp-block-pullquote,
.rb-home-content .wp-block-quote,
.rb-home-content .wp-block-pullquote {
    border-left: 4px solid var(--rb_primary);
    padding-left: 20px;
    color: var(--rb_text);
}

.rb-page-content .wp-block-columns,
.rb-home-content .wp-block-columns {
    margin-bottom: 1.75rem;
}

.rb-page-content > .wp-block-group.alignwide:first-child,
.rb-home-content > .wp-block-group.alignwide:first-child {
    position: relative;
}

.rb-page-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child,
.rb-home-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child {
    max-width: 760px;
    margin-bottom: 48px !important;
}

.rb-page-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child p,
.rb-home-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child p {
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.85;
    color: rgba(226, 232, 240, 0.88);
}

.rb-page-content .wp-block-columns.alignwide,
.rb-home-content .wp-block-columns.alignwide {
    gap: 24px;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column {
    display: flex;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(13, 22, 38, 0.82) !important;
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group::before,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rb_primary), var(--rb_secondary));
    opacity: 0.55;
    transition: opacity 0.25s ease;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group:hover,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group:hover {
    border-color: rgba(96, 165, 250, 0.34);
    box-shadow: none;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group:hover::before,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group:hover::before {
    opacity: 1;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group h3,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group h3 {
    margin-bottom: 12px;
    font-size: clamp(24px, 2.4vw, 28px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #f8fafc !important;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group p,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group p {
    color: #fff !important;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h1,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h2,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h3,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h4,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h5,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h6,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h1,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h2,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h3,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h4,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h5,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color h6 {
    color: #f8fafc !important;
}

.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color p,
.rb-page-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color li,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color p,
.rb-home-content .wp-block-columns.alignwide > .wp-block-column > .wp-block-group.has-white-background-color li {
    color: rgba(226, 232, 240, 0.78) !important;
}

.rb-page-content .wp-block-group.alignwide.has-contrast-background-color,
.rb-home-content .wp-block-group.alignwide.has-contrast-background-color {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(12, 23, 48, 0.98), rgba(9, 18, 31, 0.98)) !important;
    border: 1px solid rgba(125, 211, 252, 0.16);
    box-shadow: none;
}

.rb-page-content .wp-block-group.alignwide.has-contrast-background-color::before,
.rb-home-content .wp-block-group.alignwide.has-contrast-background-color::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.28;
    pointer-events: none;
}

.rb-page-content .wp-block-group.alignwide.has-contrast-background-color > *,
.rb-home-content .wp-block-group.alignwide.has-contrast-background-color > * {
    position: relative;
    z-index: 1;
}

.rb-page-content .wp-block-group.alignwide.has-contrast-background-color h4,
.rb-home-content .wp-block-group.alignwide.has-contrast-background-color h4 {
    margin-bottom: 12px;
    font-size: clamp(22px, 2vw, 28px);
}

.rb-page-content .rb-about-intro,
.rb-home-content .rb-about-intro {
    position: relative;
    overflow: hidden;
    padding: 32px !important;
    margin-bottom: 28px !important;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(12, 23, 48, 0.96), rgba(9, 18, 31, 0.94)) !important;
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.24);
}

.rb-page-content .rb-about-intro::before,
.rb-home-content .rb-about-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.22;
    pointer-events: none;
}

.rb-page-content .rb-about-intro > *,
.rb-home-content .rb-about-intro > * {
    position: relative;
    z-index: 1;
}

.rb-page-content .rb-about-intro p,
.rb-home-content .rb-about-intro p {
    color: rgba(226, 232, 240, 0.84) !important;
    font-size: 17px;
    line-height: 1.85;
}

.rb-page-content .rb-about-stats,
.rb-home-content .rb-about-stats {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    align-items: stretch;
}

.rb-page-content .rb-about-stats .wp-block-column > .wp-block-group,
.rb-home-content .rb-about-stats .wp-block-column > .wp-block-group {
    height: 100%;
    padding: 24px !important;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(13, 22, 38, 0.78) !important;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.24);
}

.rb-page-content .rb-about-stats p,
.rb-home-content .rb-about-stats p {
    color: rgba(226, 232, 240, 0.72) !important;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
}

.rb-page-content .rb-about-note,
.rb-home-content .rb-about-note {
    padding: 24px 28px !important;
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    border-left: 4px solid var(--rb_primary);
    border-radius: 18px;
    background: rgba(10, 18, 32, 0.62) !important;
    box-shadow: 0 16px 38px rgba(2, 6, 23, 0.18);
}

.rb-page-content .rb-about-note p,
.rb-home-content .rb-about-note p {
    color: rgba(226, 232, 240, 0.82) !important;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
}

.rb-page-content .rb-about-worklist,
.rb-home-content .rb-about-worklist {
    padding: 28px !important;
    margin-top: 0 !important;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04) !important;
}

.rb-page-content .rb-about-worklist p,
.rb-home-content .rb-about-worklist p {
    font-size: 17px;
    line-height: 1.8;
}

.rb-page-content .rb-about-worklist p:first-child,
.rb-home-content .rb-about-worklist p:first-child {
    color: rgba(226, 232, 240, 0.72) !important;
}

.rb-page-content .rb-about-worklist p:last-child,
.rb-home-content .rb-about-worklist p:last-child {
    margin-bottom: 0;
    color: rgba(248, 250, 252, 0.92);
    font-weight: 600;
}

.rb-page-content .wp-block-group[style*="margin-top:56px"],
.rb-home-content .wp-block-group[style*="margin-top:56px"] {
    margin-top: 72px !important;
}

.rb-page-content .wp-block-group[style*="margin-top:56px"] h2,
.rb-home-content .wp-block-group[style*="margin-top:56px"] h2,
.rb-page-content .wp-block-group[style*="margin-top:56px"] h2.wp-block-heading,
.rb-home-content .wp-block-group[style*="margin-top:56px"] h2.wp-block-heading {
    margin-bottom: 10px;
    font-size: clamp(28px, 2.6vw, 38px);
    letter-spacing: -0.04em;
    font-weight: 800;
}

.rb-page-content .wp-block-gallery.has-nested-images,
.rb-home-content .wp-block-gallery.has-nested-images {
    margin-top: 28px;
}

.rb-page-content .wp-block-cover,
.rb-home-content .wp-block-cover,
.rb-page-content .wp-block-group.has-background,
.rb-home-content .wp-block-group.has-background {
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.rb-page-content .wp-block-table table,
.rb-home-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.rb-page-content .wp-block-table th,
.rb-page-content .wp-block-table td,
.rb-home-content .wp-block-table th,
.rb-home-content .wp-block-table td {
    padding: 14px 16px;
    border-color: rgba(148, 163, 184, 0.14);
}

.rb-page-content .wp-block-table tr:nth-child(even) td,
.rb-home-content .wp-block-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.rb-page-content ul li::marker,
.rb-page-content ol li::marker,
.rb-home-content ul li::marker,
.rb-home-content ol li::marker {
    color: var(--rb_secondary);
}

.rb-page-content .has-white-background-color,
.rb-page-content .has-base-background-color,
.rb-home-content .has-white-background-color,
.rb-home-content .has-base-background-color,
.rb-page-content .has-background[style*="background-color: rgb(255, 255, 255)"],
.rb-home-content .has-background[style*="background-color: rgb(255, 255, 255)"] {
    color: var(--rb_surface_light_text) !important;
}

.rb-page-content .has-white-background-color h1,
.rb-page-content .has-white-background-color h2,
.rb-page-content .has-white-background-color h3,
.rb-page-content .has-white-background-color h4,
.rb-page-content .has-white-background-color h5,
.rb-page-content .has-white-background-color h6,
.rb-page-content .has-base-background-color h1,
.rb-page-content .has-base-background-color h2,
.rb-page-content .has-base-background-color h3,
.rb-page-content .has-base-background-color h4,
.rb-page-content .has-base-background-color h5,
.rb-page-content .has-base-background-color h6,
.rb-home-content .has-white-background-color h1,
.rb-home-content .has-white-background-color h2,
.rb-home-content .has-white-background-color h3,
.rb-home-content .has-white-background-color h4,
.rb-home-content .has-white-background-color h5,
.rb-home-content .has-white-background-color h6,
.rb-home-content .has-base-background-color h1,
.rb-home-content .has-base-background-color h2,
.rb-home-content .has-base-background-color h3,
.rb-home-content .has-base-background-color h4,
.rb-home-content .has-base-background-color h5,
.rb-home-content .has-base-background-color h6 {
    color: var(--rb_surface_light_text) !important;
}

.rb-page-content .has-white-background-color p,
.rb-page-content .has-white-background-color li,
.rb-page-content .has-base-background-color p,
.rb-page-content .has-base-background-color li,
.rb-home-content .has-white-background-color p,
.rb-home-content .has-white-background-color li,
.rb-home-content .has-base-background-color p,
.rb-home-content .has-base-background-color li {
    color: var(--rb_surface_light_muted) !important;
}

.rb-page-content .has-white-background-color a,
.rb-page-content .has-base-background-color a,
.rb-home-content .has-white-background-color a,
.rb-home-content .has-base-background-color a {
    color: var(--rb_primary) !important;
}

.rb-gallery-slider {
    position: relative;
    margin: 2rem 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.rb-gallery-viewport {
    overflow: hidden;
    border-radius: 18px;
}

.rb-gallery-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.rb-gallery-slide {
    min-width: 100%;
    margin: 0 !important;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.16), transparent 40%),
        rgba(5, 8, 15, 0.92);
}

.rb-gallery-slide figure,
.rb-gallery-slide .wp-block-image {
    width: 100%;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-gallery-slider.has-nested-images figure.wp-block-image:not(#individual-image) a,
.rb-gallery-slider.has-nested-images figure.wp-block-image:not(#individual-image) img {
    flex: 0 1 auto !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.rb-gallery-slide img {
    width: auto !important;
    max-width: 100%;
    height: min(72vh, 820px);
    max-height: 820px;
    aspect-ratio: auto !important;
    object-fit: contain;
    display: block;
    border-radius: 18px;
}

.rb-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
        rgba(7, 12, 22, 0.66);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.24);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rb-gallery-arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    border-top: 2px solid rgba(255,255,255,0.9);
    border-right: 2px solid rgba(255,255,255,0.9);
}

.rb-gallery-arrow.prev::before {
    transform: rotate(-135deg) translate(-1px, 1px);
}

.rb-gallery-arrow.next::before {
    transform: rotate(45deg) translate(-1px, 1px);
}

.rb-gallery-arrow:hover {
    background:
        linear-gradient(180deg, rgba(125, 211, 252, 0.18), rgba(59, 130, 246, 0.08)),
        rgba(7, 12, 22, 0.84);
    border-color: rgba(125, 211, 252, 0.24);
    box-shadow: 0 22px 42px rgba(2, 6, 23, 0.3);
}

.rb-gallery-arrow.prev {
    left: 28px;
}

.rb-gallery-arrow.next {
    right: 28px;
}

.rb-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 4px;
    margin: 0 auto;
}

.rb-gallery-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 8px;
    overflow: visible;
}

.rb-gallery-dot {
    width: 11px;
    height: 11px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.26);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rb-gallery-dot.active {
    background: var(--rb_primary);
    transform: scale(1.15);
}

.rb-footer {
    margin-top: auto;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 15, 0.45);
}

.rb-footer-inner {
    text-align: center;
}

.rb-footer p {
    margin: 0;
    color: rgba(203, 213, 225, 0.82);
    font-size: 14px;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rb-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes rb-scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    70% {
        transform: translate(-50%, 12px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 16px);
        opacity: 0;
    }
}

@media(max-width: 991px) {
    .rb-header-inner {
        min-height: 76px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .rb-navbar {
        width: 100%;
        padding-top: 12px;
    }

    .rb-navbar.collapse:not(.show) {
        display: none !important;
    }

    .rb-navbar.collapse.show {
        display: block;
    }

    .rb-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 0 10px;
    }

    .rb-menu a::after {
        bottom: -5px;
    }

    .rb-hero {
        min-height: auto;
    }

    .rb-front-page .rb-hero {
        min-height: calc(var(--rb-hero-viewport-height) - var(--rb-admin-bar-offset));
    }

    .rb-hero-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rb-hero-content {
        padding: 88px 0 24px;
    }

    .rb-front-page .rb-hero-content {
        padding-top: 132px;
        padding-bottom: 104px;
    }

    .rb-hero-panel {
        margin-bottom: 88px;
    }

    .rb-scroll-hint {
        right: 24px;
        bottom: 22px;
    }

    .rb-home-content {
        margin-top: -48px;
    }

    .rb-page-content .wp-block-columns.alignwide,
    .rb-home-content .wp-block-columns.alignwide {
        gap: 20px;
    }
}

@media(max-width: 767px) {
    .custom-logo {
        width: 56px;
        height: 56px;
    }

    .rb-header-inner {
        gap: 14px;
    }

    .rb-hero-content {
        padding: 76px 0 12px;
    }

    .rb-front-page .rb-hero-content {
        padding-top: calc(var(--rb-header-height) + 24px);
        padding-bottom: 40px;
    }

    .rb-front-page-hero-only .rb-hero-content {
        padding-top: calc(var(--rb-header-height) + 16px);
        padding-bottom: 24px;
    }

    .rb-hero h1 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .rb-hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .rb-page-content,
    .rb-home-content,
    .rb-page-content p,
    .rb-home-content p,
    .rb-page-content li,
    .rb-home-content li {
        font-size: 16px;
        line-height: 1.75;
    }

    .rb-hero-actions,
    .rb-hero-badges {
        gap: 10px;
    }

    .rb-btn {
        width: 100%;
    }

    .rb-hero-panel {
        justify-self: stretch;
        margin-bottom: 74px;
        padding: 22px;
        border-radius: 22px;
    }

    .rb-hero-metrics {
        grid-template-columns: 1fr;
    }

    .rb-scroll-hint {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .rb-home-content {
        margin-top: -28px;
    }

    .rb-front-page .rb-home-content > *:first-child {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .rb-page-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child,
    .rb-home-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child {
        margin-bottom: 32px !important;
    }

    .rb-content-card {
        padding: 24px;
        border-radius: 18px;
    }

    .rb-page-content .rb-about-intro,
    .rb-home-content .rb-about-intro,
    .rb-page-content .rb-about-worklist,
    .rb-home-content .rb-about-worklist,
    .rb-page-content .rb-about-note,
    .rb-home-content .rb-about-note {
        padding: 22px !important;
    }

    .rb-page-content .rb-about-intro p,
    .rb-home-content .rb-about-intro p,
    .rb-page-content .rb-about-stats p,
    .rb-home-content .rb-about-stats p,
    .rb-page-content .rb-about-note p,
    .rb-home-content .rb-about-note p,
    .rb-page-content .rb-about-worklist p,
    .rb-home-content .rb-about-worklist p,
    .rb-page-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child p,
    .rb-home-content > .wp-block-group.alignwide:first-child > .wp-block-group:first-child p {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    .rb-page-content .rb-about-intro,
    .rb-home-content .rb-about-intro,
    .rb-page-content .rb-about-stats,
    .rb-home-content .rb-about-stats,
    .rb-page-content .rb-about-note,
    .rb-home-content .rb-about-note {
        margin-bottom: 22px !important;
    }

    .rb-page-title {
        margin-bottom: 24px;
        padding-bottom: 14px;
        font-size: clamp(26px, 5.8vw, 34px);
    }

    .rb-page-title::after {
        width: 68px;
        height: 3px;
    }

    .rb-page-section {
        padding: 16px 0 48px;
    }

    .rb-page-content h2,
    .rb-home-content h2,
    .rb-page-content h2.wp-block-heading,
    .rb-home-content h2.wp-block-heading {
        font-size: clamp(24px, 5vw, 30px);
    }

    .rb-page-content h3,
    .rb-home-content h3,
    .rb-page-content h3.wp-block-heading,
    .rb-home-content h3.wp-block-heading {
        font-size: clamp(21px, 4.4vw, 26px);
    }

    .rb-page-content h4,
    .rb-home-content h4,
    .rb-page-content h4.wp-block-heading,
    .rb-home-content h4.wp-block-heading {
        font-size: clamp(18px, 3.8vw, 22px);
    }

    .rb-gallery-slider {
        padding: 0;
    }

    .rb-gallery-arrow {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .rb-gallery-arrow::before {
        width: 10px;
        height: 10px;
    }

    .rb-gallery-arrow.prev {
        left: 16px;
    }

    .rb-gallery-arrow.next {
        right: 16px;
    }

    .rb-gallery-slide img {
        height: min(34vh, 280px) !important;
        max-height: 400px !important;
    }

    .rb-gallery-meta {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 782px) {
    body.admin-bar .rb-header,
    body.admin-bar.rb-front-page .rb-header {
        margin-top: 0;
    }

    .wpcf7 form {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .wpcf7 form .form-control {
        min-height: 52px;
        padding: 13px 16px;
        border-radius: 16px;
    }
}

.wpcf7 {
    position: relative;
}

.wpcf7 form {
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(125, 211, 252, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(18, 28, 47, 0.72);
    box-shadow: var(--rb_shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.wpcf7 form .hidden-fields-container {
    display: none;
}

.wpcf7 form p {
    margin: 0;
}

.wpcf7 form .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 form .form-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--rb_text);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.wpcf7 form input.form-control,
.wpcf7 form textarea.form-control,
.wpcf7 form .wpcf7-form-control.form-control {
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    color: var(--rb_text);
    background: rgba(8, 16, 28, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.wpcf7 form textarea.form-control,
.wpcf7 form textarea.wpcf7-form-control.form-control {
    min-height: 148px;
    resize: vertical;
}

.wpcf7 form input.wpcf7-submit {
    min-height: 54px;
    border: 0;
}

.wpcf7 form input.form-control::placeholder,
.wpcf7 form textarea.form-control::placeholder {
    color: rgba(203, 213, 225, 0.7);
}

.wpcf7 form input.form-control:hover,
.wpcf7 form textarea.form-control:hover {
    border-color: rgba(125, 211, 252, 0.28);
    background: rgba(11, 18, 32, 0.82);
}

.wpcf7 form input.form-control:focus,
.wpcf7 form textarea.form-control:focus {
    color: var(--rb_text);
    border-color: rgba(59, 130, 246, 0.72);
    background: rgba(11, 18, 32, 0.92);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.16), 0 12px 30px rgba(2, 6, 23, 0.22);
    transform: translateY(-1px);
}

.wpcf7 form .wpcf7-spinner {
    display: none;
    margin: 14px 0 0 12px;
    vertical-align: middle;
}

.wpcf7 form.submitting .wpcf7-spinner {
    display: inline-block;
}

.wpcf7 form .wpcf7-spinner::before {
    background-color: var(--rb_secondary);
}

.wpcf7 form .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #fda4af;
    font-size: 0.9rem;
    font-weight: 600;
}

.wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 1px solid rgba(251, 146, 60, 0.35);
    color: #fed7aa;
    background: rgba(124, 45, 18, 0.22);
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #bbf7d0;
    background: rgba(20, 83, 45, 0.22);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
    background: rgba(127, 29, 29, 0.24);
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
