@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    --black: #030303;
    --panel: rgba(10, 10, 14, 0.82);
    --panel-strong: rgba(14, 14, 18, 0.94);
    --text: #ffffff;
    --muted: #aaaaaf;

    --yellow: #ffd400;
    --yellow-strong: #ffb800;
    --yellow-soft: rgba(255, 212, 0, 0.24);

    --blue: #14a8ff;
    --blue-soft: rgba(20, 168, 255, 0.24);

    --red: #ef233c;
    --red-soft: rgba(239, 35, 60, 0.18);

    --border: rgba(255,255,255,0.12);
    --error: #ff4d4d;
    --success: #22c55e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--black);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.92)),
        radial-gradient(circle at 18% 12%, rgba(20,168,255,0.12), transparent 30%),
        radial-gradient(circle at 82% 10%, rgba(255,212,0,0.12), transparent 28%),
        radial-gradient(circle at 50% 92%, rgba(239,35,60,0.10), transparent 38%);
}

.rv-bg {
    position: fixed;
    inset: 0;
    z-index: -9;
    pointer-events: none;
    overflow: hidden;
}

.rv-stars {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1.3px),
        radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1.3px);
    background-size: 96px 96px, 148px 148px;
    background-position: 0 0, 38px 52px;
    animation: starDrift 42s linear infinite;
}

@keyframes starDrift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100px);
    }
}

.rv-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.55;
}

.rv-glow-blue {
    width: 460px;
    height: 280px;
    left: -120px;
    top: 100px;
    background: rgba(20,168,255,0.25);
}

.rv-glow-yellow {
    width: 520px;
    height: 250px;
    right: -120px;
    top: 80px;
    background: rgba(255,212,0,0.22);
}

.rv-glow-red {
    width: 680px;
    height: 320px;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(239,35,60,0.16);
}

.rv-wire {
    position: fixed;
    z-index: -7;
    pointer-events: none;
    width: 340px;
    height: 130px;
    opacity: 0.42;
    filter: blur(0.35px) saturate(0.9);
}

.rv-wire-left {
    left: -78px;
    top: 21%;
    transform: rotate(-6deg);
}

.rv-wire-right {
    right: -78px;
    top: 57%;
    transform: scaleX(-1) rotate(-6deg);
}

.rv-wire::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 0;
    width: 245px;
    height: 30px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(45, 54, 68, 0.75) 0%, rgba(4, 7, 12, 0.82) 48%, rgba(30, 37, 48, 0.72) 100%);
    box-shadow:
        inset 0 4px 8px rgba(255,255,255,0.04),
        0 16px 34px rgba(0,0,0,0.42);
}

.rv-wire::after {
    content: "";
    position: absolute;
    left: 225px;
    top: 41px;
    width: 62px;
    height: 44px;
    background:
        linear-gradient(90deg, rgba(89, 45, 12, 0.75), rgba(190, 108, 35, 0.8), rgba(244, 184, 94, 0.84), rgba(106, 54, 16, 0.75));
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    box-shadow:
        0 0 16px rgba(255, 184, 0, 0.16),
        inset 0 0 12px rgba(0,0,0,0.28);
}

.rv-wire-spark,
.rv-wire-spark-alt {
    position: absolute;
    left: 280px;
    top: 62px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
        0 0 8px rgba(255,255,255,0.9),
        0 0 18px rgba(255,212,0,0.72),
        0 0 34px rgba(20,168,255,0.52),
        0 0 58px rgba(255,212,0,0.28);
    animation: sparkCore 0.72s infinite steps(2);
}

.rv-wire-spark {
    filter: drop-shadow(0 0 16px rgba(255,212,0,0.42));
}

.rv-wire-spark-alt {
    left: 286px;
    top: 58px;
    opacity: 0.7;
    animation: sparkCoreAlt 1.15s infinite steps(2);
}

.rv-wire-spark::before,
.rv-wire-spark::after,
.rv-wire-spark-alt::before,
.rv-wire-spark-alt::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    height: 2px;
    border-radius: 999px;
    transform-origin: left center;
}

.rv-wire-spark::before {
    width: 82px;
    background:
        linear-gradient(90deg, #ffffff, var(--blue), transparent);
    transform: rotate(-26deg);
    box-shadow:
        0 0 8px rgba(255,255,255,0.75),
        0 0 18px rgba(20,168,255,0.72);
    animation: sparkBranchA 0.72s infinite steps(2);
}

.rv-wire-spark::after {
    width: 72px;
    background:
        linear-gradient(90deg, #ffffff, var(--yellow), transparent);
    transform: rotate(24deg);
    box-shadow:
        0 0 8px rgba(255,255,255,0.75),
        0 0 18px rgba(255,212,0,0.72);
    animation: sparkBranchB 0.72s infinite steps(2);
}

.rv-wire-spark-alt::before {
    width: 48px;
    background:
        linear-gradient(90deg, #ffffff, #9ee8ff, transparent);
    transform: rotate(-8deg);
    box-shadow:
        0 0 8px rgba(255,255,255,0.75),
        0 0 16px rgba(20,168,255,0.58);
    animation: sparkBranchC 1.15s infinite steps(2);
}

.rv-wire-spark-alt::after {
    width: 54px;
    background:
        linear-gradient(90deg, #ffffff, #ffe766, transparent);
    transform: rotate(42deg);
    box-shadow:
        0 0 8px rgba(255,255,255,0.65),
        0 0 16px rgba(255,212,0,0.58);
    animation: sparkBranchD 1.15s infinite steps(2);
}

@keyframes sparkCore {
    0%, 100% {
        opacity: 0.25;
        transform: scale(0.7);
    }

    35% {
        opacity: 1;
        transform: scale(1.18);
    }

    70% {
        opacity: 0.42;
        transform: scale(0.86);
    }
}

@keyframes sparkCoreAlt {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }

    48% {
        opacity: 0.85;
        transform: scale(1);
    }

    60% {
        opacity: 0.28;
        transform: scale(0.76);
    }
}

@keyframes sparkBranchA {
    0%, 100% {
        opacity: 0.15;
        width: 30px;
        transform: rotate(-18deg);
    }

    45% {
        opacity: 1;
        width: 86px;
        transform: rotate(-30deg);
    }
}

@keyframes sparkBranchB {
    0%, 100% {
        opacity: 0.12;
        width: 26px;
        transform: rotate(16deg);
    }

    45% {
        opacity: 0.95;
        width: 76px;
        transform: rotate(27deg);
    }
}

@keyframes sparkBranchC {
    0%, 100% {
        opacity: 0;
        width: 18px;
        transform: rotate(-4deg);
    }

    52% {
        opacity: 0.82;
        width: 52px;
        transform: rotate(-12deg);
    }
}

@keyframes sparkBranchD {
    0%, 100% {
        opacity: 0;
        width: 18px;
        transform: rotate(28deg);
    }

    52% {
        opacity: 0.78;
        width: 58px;
        transform: rotate(45deg);
    }
}

.rv-nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(10,10,14,0.86), rgba(3,3,3,0.75));
    backdrop-filter: blur(14px);
    box-shadow:
        0 18px 50px rgba(0,0,0,0.48),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.rv-brand {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.rv-brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: uppercase;
}

.rv-brand-title span {
    color: var(--yellow);
    text-shadow: 0 0 12px rgba(255,212,0,0.26);
}

.rv-brand-subtitle {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.rv-nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.rv-nav-links a {
    position: relative;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
    transition: 0.25s ease;
}

.rv-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--red));
    box-shadow: 0 0 14px var(--yellow);
    transition: 0.25s ease;
}

.rv-nav-links a:hover {
    color: #fff;
}

.rv-nav-links a:hover::after {
    width: 100%;
}

.rv-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: white;
}

.rv-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 24px 90px;
    overflow: hidden;
}

.rv-hero-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    text-align: center;
}

.rv-top-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.rv-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    opacity: 0.7;
}

.rv-line-white-1 {
    top: 40px;
    left: 29%;
    width: 90px;
    background: rgba(255,255,255,0.8);
    transform: rotate(-20deg);
}

.rv-line-white-2 {
    top: 58px;
    right: 10%;
    width: 100px;
    background: rgba(255,255,255,0.5);
    transform: rotate(-20deg);
}

.rv-line-yellow-1 {
    top: 67px;
    right: 0;
    width: 290px;
    background: rgba(255,212,0,0.55);
    box-shadow: 0 0 14px rgba(255,212,0,0.25);
}

.rv-line-yellow-2 {
    top: 84px;
    right: 200px;
    width: 130px;
    background: rgba(255,212,0,0.35);
    transform: rotate(22deg);
}

.rv-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,212,0,0.28);
    background: rgba(255,212,0,0.08);
    color: #ffe979;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rv-chip svg {
    width: 18px;
    height: 18px;
}

.rv-hero h1 {
    margin: 0 auto;
    max-width: 1200px;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.94;
    letter-spacing: -0.04em;
    font-weight: 700;
    text-transform: uppercase;
    color: #f4f4f4;
    text-shadow: 0 10px 28px rgba(0,0,0,0.72);
}

.rv-hero h1 span {
    display: block;
    margin-top: 10px;
    color: var(--yellow);
    text-shadow:
        0 0 14px rgba(255,212,0,0.45),
        0 0 38px rgba(255,184,0,0.24);
}

.rv-hero-lead {
    max-width: 850px;
    margin: 28px auto 0;
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

.rv-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.rv-btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.rv-btn svg {
    width: 19px;
    height: 19px;
}

.rv-btn-primary {
    color: #0a0a0a;
    background: linear-gradient(135deg, #fff16a, var(--yellow) 36%, var(--yellow-strong) 100%);
    box-shadow:
        0 0 26px rgba(255,212,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.55);
}

.rv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 44px rgba(255,212,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.55);
}

.rv-btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
}

.rv-btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(20,168,255,0.45);
    box-shadow: 0 0 24px rgba(20,168,255,0.12);
}

.rv-section {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 92px 0;
    position: relative;
}

.rv-section-head {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.rv-section-head-left {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.rv-section-head p,
.rv-kicker {
    margin: 0 0 10px;
    color: var(--yellow);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.rv-section-head h2,
.rv-contact-info h2 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

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

.rv-card {
    grid-column: span 4;
    position: relative;
    min-height: 285px;
    padding: 32px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        radial-gradient(circle at top right, rgba(255,212,0,0.08), transparent 36%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 28px 70px rgba(0,0,0,0.48),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    transition: 0.28s ease;
}

.rv-card::before {
    content: "";
    position: absolute;
    left: -40%;
    top: 0;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--blue), transparent);
    opacity: 0.85;
    transition: 0.55s ease;
}

.rv-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,212,0,0.34);
    box-shadow:
        0 34px 90px rgba(0,0,0,0.58),
        0 0 24px rgba(255,212,0,0.08);
}

.rv-card:hover::before {
    left: 70%;
}

.rv-card-large {
    grid-column: span 7;
}

.rv-card-accent {
    grid-column: span 5;
    background:
        linear-gradient(145deg, rgba(239,35,60,0.14), rgba(255,255,255,0.02)),
        radial-gradient(circle at top right, rgba(255,212,0,0.10), transparent 36%);
}

.rv-card-hot {
    background:
        linear-gradient(145deg, rgba(255,212,0,0.12), rgba(255,255,255,0.02)),
        radial-gradient(circle at top right, rgba(20,168,255,0.08), transparent 36%);
}

.rv-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--yellow);
    background: rgba(255,212,0,0.09);
    border: 1px solid rgba(255,212,0,0.24);
    box-shadow: 0 0 18px rgba(255,212,0,0.08);
}

.rv-card-icon svg {
    width: 28px;
    height: 28px;
}

.rv-card h3 {
    margin: 0 0 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.rv-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.rv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.rv-tags span {
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.76);
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.rv-panel {
    position: relative;
    border-radius: 32px;
    padding: 42px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        radial-gradient(circle at top right, rgba(20,168,255,0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255,212,0,0.08), transparent 34%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 90px rgba(0,0,0,0.52);
    overflow: hidden;
}

.rv-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,0.03) 48%, transparent 56%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 56px);
}

.rv-why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.rv-why-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(0,0,0,0.26);
    border: 1px solid rgba(255,255,255,0.10);
}

.rv-why-item-wide {
    grid-column: span 2;
}

.rv-why-item svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: var(--yellow);
    filter: drop-shadow(0 0 12px rgba(255,212,0,0.22));
}

.rv-why-item h3 {
    margin: 0 0 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
}

.rv-why-item p {
    margin: 0;
    color: var(--muted);
}

.rv-contact-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
}

.rv-contact-info,
.rv-contact-form-wrap {
    position: relative;
    z-index: 1;
}

.rv-contact-lead {
    margin: 22px 0 32px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.rv-contact-list {
    display: grid;
    gap: 15px;
}

.rv-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.10);
    transition: 0.22s ease;
}

.rv-contact-row:hover {
    transform: translateX(5px);
    border-color: rgba(255,212,0,0.34);
    box-shadow: 0 0 24px rgba(255,212,0,0.08);
}

.rv-contact-row span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--yellow);
    background: rgba(255,212,0,0.08);
    border: 1px solid rgba(255,212,0,0.22);
}

.rv-contact-row span svg {
    width: 22px;
    height: 22px;
}

.rv-contact-row small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.48);
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rv-contact-row strong {
    display: block;
    font-size: 18px;
    word-break: break-word;
}

.rv-form {
    display: grid;
    gap: 14px;
}

.rv-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rv-form input,
.rv-form select,
.rv-form textarea {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    padding: 0 17px;
    color: #fff;
    background: rgba(0,0,0,0.34);
    border: 1px solid rgba(255,255,255,0.13);
    outline: none;
    font: inherit;
    transition: 0.22s ease;
}

.rv-form textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 17px;
}

.rv-form select option {
    color: #111;
}

.rv-form input::placeholder,
.rv-form textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

.rv-form input:focus,
.rv-form select:focus,
.rv-form textarea:focus {
    border-color: rgba(255,212,0,0.58);
    box-shadow:
        0 0 0 4px rgba(255,212,0,0.08),
        0 0 26px rgba(255,212,0,0.08);
}

.rv-form .input-error {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.10);
}

.rv-form button {
    min-height: 58px;
    border: 0;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #080808;
    background: linear-gradient(135deg, #fff16a, var(--yellow) 36%, var(--yellow-strong) 100%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: 0.22s ease;
    box-shadow: 0 0 28px rgba(255,212,0,0.20);
}

.rv-form button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(255,212,0,0.32);
}

.rv-form button:disabled {
    cursor: not-allowed;
    color: rgba(255,255,255,0.38);
    background: rgba(255,255,255,0.10);
    box-shadow: none;
}

.rv-form p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.42);
}

.rv-form-status {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.hidden {
    display: none !important;
}

.status-error {
    display: block;
    color: #ffe2e2;
    background: rgba(255, 77, 77, 0.18);
    border: 1px solid rgba(255, 77, 77, 0.65);
}

.status-success {
    display: block;
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.55);
}

.status-loading {
    display: block;
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
}

.rv-footer {
    padding: 56px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.30);
}

.rv-footer-brand {
    margin-bottom: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rv-footer-brand span {
    color: var(--yellow);
}

.rv-footer p {
    margin: 0;
    color: rgba(255,255,255,0.44);
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .rv-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-card,
    .rv-card-large,
    .rv-card-accent {
        grid-column: span 1;
    }

    .rv-contact-panel {
        grid-template-columns: 1fr;
    }

    .rv-wire {
        opacity: 0.26;
        filter: blur(0.8px) saturate(0.75);
    }

    .rv-wire-left {
        left: -140px;
    }

    .rv-wire-right {
        right: -140px;
    }
}

@media (max-width: 820px) {
    .rv-mobile-toggle {
        display: grid;
    }

    .rv-nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(8,8,10,0.96);
        box-shadow: 0 22px 60px rgba(0,0,0,0.55);
    }

    .rv-nav-links.is-open {
        display: flex;
    }

    .rv-nav-links a {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .rv-nav-links a::after {
        display: none;
    }

    .rv-nav-links a:hover {
        background: rgba(255,255,255,0.05);
    }

    .rv-wire {
        opacity: 0.18;
        transform-origin: center;
    }

    .rv-wire-left {
        left: -170px;
    }

    .rv-wire-right {
        right: -170px;
        transform: scaleX(-1) rotate(-6deg);
    }

    .rv-top-lines {
        display: none;
    }

    .rv-panel {
        padding: 28px;
        border-radius: 26px;
    }
}

@media (max-width: 640px) {
    .rv-services-grid,
    .rv-why-grid,
    .rv-form-grid {
        grid-template-columns: 1fr;
    }

    .rv-card,
    .rv-card-large,
    .rv-card-accent,
    .rv-why-item-wide {
        grid-column: span 1;
    }

    .rv-card {
        min-height: auto;
        padding: 26px;
        border-radius: 24px;
    }

    .rv-hero {
        min-height: auto;
        padding: 132px 18px 68px;
    }

    .rv-hero-actions {
        align-items: stretch;
    }

    .rv-btn {
        width: 100%;
    }

    .rv-section {
        padding: 70px 0;
    }

    .rv-section-head {
        text-align: left;
    }

    .rv-contact-row {
        align-items: flex-start;
    }

    .rv-contact-row strong {
        font-size: 16px;
    }

    .rv-wire {
        display: none;
    }

    .rv-footer p {
        font-size: 12px;
        letter-spacing: 0.14em;
    }
	
	.rv-footer-legal {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    color: rgba(255,255,255,0.34);
    font-size: 12px;
    line-height: 1.6;
}

.rv-footer-legal a {
    color: rgba(255,255,255,0.46);
    text-decoration: none;
    transition: 0.2s ease;
}

.rv-footer-legal a:hover {
    color: var(--yellow);
}

.rv-footer-separator {
    color: rgba(255,255,255,0.24);
    margin: 0 6px;
}

@media (max-width: 640px) {
    .rv-footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 11px;
    }
}
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}