/* RankWizard — unified SaaS / marketing theme (brand: emerald + blue + indigo) */
:root {
    --rw-emerald: #10b981;
    --rw-emerald-bright: #14d9a0;
    --rw-emerald-dark: #059669;
    --rw-blue: #3b82f6;
    --rw-blue-deep: #2563eb;
    --rw-indigo: #6366f1;
    --rw-violet: #7c3aed;
    --rw-text: #0f172a;
    --rw-text-muted: #64748b;
    --rw-border: rgba(15, 23, 42, 0.08);
    --rw-surface: #ffffff;
    --rw-bg: #f8fafc;
    --rw-radius-sm: 12px;
    --rw-radius: 16px;
    --rw-radius-lg: 22px;
    --rw-radius-xl: 24px;
    --rw-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
    --rw-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
    --rw-shadow-glow: 0 20px 50px rgba(16, 185, 129, 0.25);
    --rw-font: "Inter", system-ui, -apple-system, sans-serif;
    --rw-display: "Montserrat", var(--rw-font);
    --rw-header-h: 72px;
    --rw-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--rw-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--rw-text);
    background: var(--rw-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

/* Background mesh */
.rw-page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(16, 185, 129, 0.14), transparent),
        radial-gradient(ellipse 60% 40% at 90% 0%, rgba(59, 130, 246, 0.12), transparent),
        radial-gradient(ellipse 50% 35% at 80% 100%, rgba(99, 102, 241, 0.1), transparent),
        var(--rw-bg);
}

.rw-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: rw-float 22s ease-in-out infinite;
}

.rw-blob--1 {
    width: 320px;
    height: 320px;
    background: rgba(16, 185, 129, 0.35);
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.rw-blob--2 {
    width: 280px;
    height: 280px;
    background: rgba(59, 130, 246, 0.3);
    top: 40%;
    right: 8%;
    animation-delay: -7s;
}

.rw-blob--3 {
    width: 220px;
    height: 220px;
    background: rgba(99, 102, 241, 0.28);
    bottom: 15%;
    left: 25%;
    animation-delay: -14s;
}

@keyframes rw-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(24px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-16px, 12px) scale(0.98);
    }
}

.rw-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.rw-container {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Header ---------- */
.rw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--rw-header-h);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rw-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: background var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--rw-shadow-sm);
}

.rw-header__inner {
    height: var(--rw-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

/* Логотип + навигация рядом (не по центру экрана) */
.rw-header__start {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1.2vw, 0.85rem);
    flex: 1;
    min-width: 0;
}

.rw-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--rw-display);
    font-weight: 800;
    font-size: 1.35rem;
    text-decoration: none;
    color: var(--rw-text);
    flex-shrink: 0;
    z-index: 2;
}

.rw-logo i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--rw-emerald), var(--rw-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rw-logo:hover {
    opacity: 0.92;
}

/* Навигация сразу после логотипа — desktop */
.rw-nav {
    display: none;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: wrap;
}

.rw-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    color: #334155;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    transition: color var(--rw-transition), background var(--rw-transition);
}

.rw-nav a:hover {
    color: var(--rw-emerald-dark);
    background: rgba(16, 185, 129, 0.1);
}

.rw-nav a.is-active {
    color: var(--rw-emerald-dark);
    background: rgba(16, 185, 129, 0.14);
}

.rw-header__actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    z-index: 2;
}

.rw-link-ghost {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rw-text-muted);
    padding: 0.5rem 0.75rem;
    border-radius: var(--rw-radius-sm);
    transition: color var(--rw-transition), background var(--rw-transition);
}

.rw-link-ghost:hover {
    color: var(--rw-text);
    background: rgba(15, 23, 42, 0.05);
}

/* «Войти» — заметная подсветка */
.rw-link-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--rw-blue-deep);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.42);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset, 0 4px 14px rgba(37, 99, 235, 0.12);
    transition: color var(--rw-transition), background var(--rw-transition), border-color var(--rw-transition), box-shadow var(--rw-transition), transform var(--rw-transition);
}

.rw-link-login:hover {
    color: #1d4ed8;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(99, 102, 241, 0.16));
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7) inset, 0 6px 20px rgba(37, 99, 235, 0.18);
    transform: translateY(-1px);
}

.rw-link-login--on-dark {
    display: inline-flex;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(147, 197, 253, 0.45);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.rw-link-login--on-dark:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.32);
    border-color: rgba(147, 197, 253, 0.65);
}

/* Buttons */
.rw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--rw-radius-sm);
    padding: 0.65rem 1.15rem;
    transition: transform var(--rw-transition), box-shadow var(--rw-transition), background var(--rw-transition), color var(--rw-transition);
    position: relative;
    overflow: hidden;
}

.rw-btn:active {
    transform: scale(0.98);
}

.rw-btn--outline {
    background: var(--rw-surface);
    color: var(--rw-text);
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow-sm);
}

.rw-btn--outline:hover {
    border-color: rgba(16, 185, 129, 0.35);
    color: var(--rw-emerald-dark);
}

.rw-btn--primary {
    background: linear-gradient(135deg, var(--rw-emerald), var(--rw-emerald-bright));
    color: #fff;
    box-shadow: var(--rw-shadow-glow);
}

.rw-btn--primary:hover {
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.35);
    transform: translateY(-1px);
}

.rw-btn--blue {
    background: linear-gradient(135deg, var(--rw-blue-deep), var(--rw-blue));
    color: #fff;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}

.rw-btn--blue:hover {
    transform: translateY(-1px);
}

.rw-btn--lg {
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    border-radius: 14px;
}

.rw-btn--xl {
    padding: 1.05rem 1.75rem;
    font-size: 1.05rem;
    border-radius: 16px;
}

.rw-btn--ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.rw-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.rw-btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.rw-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(15, 23, 42, 0.05);
    border-radius: var(--rw-radius-sm);
    cursor: pointer;
    z-index: 2;
    padding: 0 12px;
}

.rw-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--rw-text);
    border-radius: 2px;
    transition: transform var(--rw-transition), opacity var(--rw-transition);
}

.rw-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.rw-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.rw-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer */
.rw-nav-mobile {
    position: fixed;
    inset: var(--rw-header-h) 0 0 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--rw-transition), visibility var(--rw-transition), transform var(--rw-transition);
    z-index: 999;
}

.rw-nav-mobile.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rw-nav-mobile a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: var(--rw-radius-sm);
}

.rw-nav-mobile a:hover,
.rw-nav-mobile a.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--rw-emerald-bright);
}

.rw-nav-mobile__cta {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rw-nav-mobile__cta .rw-btn {
    width: 100%;
}

@media (min-width: 1024px) {
    .rw-nav {
        display: flex;
    }

    .rw-header__actions {
        display: flex;
    }

    .rw-menu-toggle {
        display: none;
    }

    .rw-nav-mobile {
        display: none !important;
    }

    .rw-header__start {
        flex: 0 1 auto;
    }
}

/* ---------- Sections ---------- */
.rw-section {
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.rw-section--tight {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.rw-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rw-emerald-dark);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.12));
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.rw-h1 {
    font-family: var(--rw-display);
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--rw-text);
    margin-bottom: 1rem;
}

.rw-h2 {
    font-family: var(--rw-display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.rw-lead {
    font-size: 1.08rem;
    color: var(--rw-text-muted);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.rw-gradient-text {
    background: linear-gradient(135deg, var(--rw-emerald-dark), var(--rw-blue-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero */
.rw-hero {
    padding-top: clamp(2rem, 5vw, 3.5rem);
}

.rw-hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 960px) {
    .rw-hero__grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 3rem;
    }
}

.rw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Dashboard mock */
.rw-dash {
    border-radius: var(--rw-radius-xl);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.88));
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.rw-dash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(59, 130, 246, 0.06));
    pointer-events: none;
}

.rw-dash__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.rw-dash__dots {
    display: flex;
    gap: 6px;
}

.rw-dash__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.rw-dash__dots span:nth-child(1) {
    background: #f87171;
}

.rw-dash__dots span:nth-child(2) {
    background: #fbbf24;
}

.rw-dash__dots span:nth-child(3) {
    background: #34d399;
}

.rw-dash__title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rw-dash__body {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 520px) {
    .rw-dash__body {
        grid-template-columns: 1fr 1fr;
    }
}

.rw-kpi {
    background: var(--rw-surface);
    border-radius: var(--rw-radius);
    padding: 1rem 1.1rem;
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow-sm);
    transition: transform var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-kpi:hover {
    transform: translateY(-3px);
    box-shadow: var(--rw-shadow);
}

.rw-kpi__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rw-text-muted);
    margin-bottom: 0.35rem;
}

.rw-kpi__value {
    font-family: var(--rw-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rw-text);
}

.rw-kpi__value--up {
    color: var(--rw-emerald-dark);
}

.rw-chart {
    grid-column: 1 / -1;
    background: var(--rw-surface);
    border-radius: var(--rw-radius);
    border: 1px solid var(--rw-border);
    padding: 1rem;
    min-height: 160px;
}

.rw-chart__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding-top: 0.5rem;
}

.rw-chart__bar {
    flex: 1;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(180deg, var(--rw-blue), var(--rw-indigo));
    opacity: 0.85;
    transform-origin: bottom;
    animation: rw-bar-grow 1s ease forwards;
}

.rw-chart__bar:nth-child(1) {
    height: 45%;
    animation-delay: 0.05s;
}

.rw-chart__bar:nth-child(2) {
    height: 62%;
    animation-delay: 0.1s;
}

.rw-chart__bar:nth-child(3) {
    height: 55%;
    animation-delay: 0.15s;
}

.rw-chart__bar:nth-child(4) {
    height: 78%;
    animation-delay: 0.2s;
}

.rw-chart__bar:nth-child(5) {
    height: 70%;
    animation-delay: 0.25s;
}

.rw-chart__bar:nth-child(6) {
    height: 92%;
    background: linear-gradient(180deg, var(--rw-emerald), var(--rw-emerald-dark));
    animation-delay: 0.3s;
}

@keyframes rw-bar-grow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.rw-positions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rw-chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--rw-emerald-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.rw-chip--blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--rw-blue-deep);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Benefit cards */
.rw-benefits {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .rw-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rw-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rw-card {
    background: var(--rw-surface);
    border-radius: var(--rw-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow-sm);
    transition: transform var(--rw-transition), box-shadow var(--rw-transition), border-color var(--rw-transition);
}

.rw-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rw-shadow);
    border-color: rgba(16, 185, 129, 0.2);
}

.rw-card.rw-reveal.is-visible {
    animation: rw-fade-up 0.65s ease forwards;
}

@keyframes rw-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rw-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.12));
    color: var(--rw-emerald-dark);
}

.rw-card h3 {
    font-family: var(--rw-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.rw-card p {
    font-size: 0.92rem;
    color: var(--rw-text-muted);
}

/* Timeline */
.rw-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.rw-section-head .rw-lead {
    margin-left: auto;
    margin-right: auto;
}

.rw-timeline {
    display: grid;
    gap: 1rem;
    position: relative;
}

@media (min-width: 900px) {
    .rw-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
}

.rw-step {
    position: relative;
    background: var(--rw-surface);
    border-radius: var(--rw-radius-lg);
    padding: 1.35rem 1.1rem;
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow-sm);
    text-align: center;
    transition: transform var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--rw-shadow);
}

.rw-step__num {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rw-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, var(--rw-indigo), var(--rw-blue));
}

.rw-step h3 {
    font-family: var(--rw-display);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.rw-step p {
    font-size: 0.8rem;
    color: var(--rw-text-muted);
    line-height: 1.45;
}

/* Social proof */
.rw-proof {
    border-radius: var(--rw-radius-xl);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--rw-shadow);
}

.rw-proof__stats {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .rw-proof__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rw-stat {
    text-align: center;
    padding: 1rem;
}

.rw-stat__value {
    font-family: var(--rw-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--rw-emerald-bright), var(--rw-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.25rem;
}

.rw-stat__label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

.rw-proof__trust-note {
    text-align: center;
    max-width: 560px;
    margin: -0.25rem auto 1.35rem;
    padding: 0 0.5rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #94a3b8;
    font-style: italic;
}

/* Карусель отзывов — social proof */
.rw-proof-carousel {
    position: relative;
    margin-top: 0.5rem;
    padding: 0 3rem 0.5rem;
}

@media (max-width: 640px) {
    .rw-proof-carousel {
        padding: 0 2.75rem 0.5rem;
    }
}

.rw-proof-carousel__viewport {
    overflow: hidden;
    border-radius: var(--rw-radius-xl);
    margin: 0 auto;
    max-width: 820px;
}

.rw-proof-carousel__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.rw-proof-carousel__track.is-no-transition {
    transition: none;
}

.rw-proof-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-sizing: border-box;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rw-radius-xl);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.rw-proof-slide__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.rw-proof-slide__niche {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.rw-proof-slide__stars {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.88rem;
    letter-spacing: 3px;
    line-height: 1;
}

.rw-proof-slide__stars-f {
    color: #fbbf24;
}

.rw-proof-slide__stars-e {
    color: rgba(148, 163, 184, 0.42);
    letter-spacing: 3px;
}

.rw-proof-slide__metric {
    font-family: var(--rw-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #6ee7b7, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.35rem;
}

.rw-proof-slide__metric-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rw-proof-slide__quote {
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.65;
    color: #e2e8f0;
    margin: 0 0 1.15rem;
    font-style: normal;
}

.rw-proof-slide__quote::before {
    content: "«";
    color: var(--rw-emerald-bright);
    font-weight: 800;
    font-size: 1.2em;
    margin-right: 0.15em;
}

.rw-proof-slide__quote::after {
    content: "»";
    color: var(--rw-emerald-bright);
    font-weight: 800;
    font-size: 1.2em;
    margin-left: 0.1em;
}

.rw-proof-slide__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}

.rw-proof-slide__tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.rw-proof-slide__tag--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.28);
}

.rw-proof-slide__author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rw-proof-slide__name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
}

.rw-proof-slide__role {
    font-size: 0.82rem;
    color: #94a3b8;
}

.rw-proof-carousel__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background var(--rw-transition), border-color var(--rw-transition), transform var(--rw-transition), box-shadow var(--rw-transition);
    z-index: 3;
    backdrop-filter: blur(8px);
}

.rw-proof-carousel__arrow:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.rw-proof-carousel__arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.rw-proof-carousel__arrow--prev {
    left: 0;
}

.rw-proof-carousel__arrow--next {
    right: 0;
}

@media (max-width: 480px) {
    .rw-proof-carousel__arrow {
        width: 40px;
        height: 40px;
    }
}

.rw-proof-carousel__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.35rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.rw-proof-carousel__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.rw-proof-carousel__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: transform var(--rw-transition), background var(--rw-transition), width var(--rw-transition);
}

.rw-proof-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.rw-proof-carousel__dot.is-active {
    background: linear-gradient(135deg, var(--rw-emerald-bright), var(--rw-blue));
    width: 26px;
    border-radius: 999px;
    transform: scaleY(1.1);
}

.rw-proof-carousel__progress {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.rw-proof-carousel__progress span {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--rw-emerald), var(--rw-blue));
}

.rw-proof-carousel__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    transition: color var(--rw-transition), background var(--rw-transition), border-color var(--rw-transition);
}

.rw-proof-carousel__toggle:hover {
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.2);
}

.rw-proof-carousel__toggle.is-paused {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.35);
}

/* CTA band */
.rw-cta-band {
    border-radius: var(--rw-radius-xl);
    padding: clamp(2rem, 5vw, 3.25rem);
    background: linear-gradient(135deg, var(--rw-emerald) 0%, var(--rw-blue-deep) 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.28);
}

.rw-cta-band h2 {
    font-family: var(--rw-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.rw-cta-band p {
    opacity: 0.95;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.rw-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Footer */
.rw-footer {
    margin-top: auto;
    background: #fff;
    border-top: 1px solid var(--rw-border);
    padding: 2.5rem 0;
}

.rw-footer__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.rw-footer__brand p {
    color: var(--rw-text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 280px;
}

.rw-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.rw-footer__nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rw-text-muted);
}

.rw-footer__nav a:hover {
    color: var(--rw-emerald-dark);
}

/* ---------- Tariffs ---------- */
.rw-pricing {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
}

@media (min-width: 900px) {
    .rw-pricing {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rw-price-card {
    background: var(--rw-surface);
    border-radius: var(--rw-radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rw-shadow);
}

.rw-price-card--featured {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    position: relative;
}

.rw-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--rw-emerald), var(--rw-blue));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.rw-price-card h3 {
    font-family: var(--rw-display);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.rw-price-card__amount {
    font-family: var(--rw-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--rw-text);
    margin-bottom: 0.25rem;
}

.rw-price-card__amount span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rw-text-muted);
}

.rw-price-card ul {
    list-style: none;
    margin: 1.25rem 0;
    flex: 1;
}

.rw-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--rw-text-muted);
    margin-bottom: 0.65rem;
}

.rw-price-card li i {
    color: var(--rw-emerald);
    margin-top: 3px;
    flex-shrink: 0;
}

/* AEO / AI Visibility (tariffs premium block) */
.rw-section--aeo {
    padding-top: 0.5rem;
}

.rw-aeo-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.25rem;
}

.rw-aeo-intro__title {
    margin-bottom: 0.65rem;
}

.rw-aeo-intro__subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rw-text);
    line-height: 1.45;
    margin: 0 0 1rem;
}

.rw-aeo-intro__desc {
    font-size: 0.95rem;
    color: var(--rw-text-muted);
    line-height: 1.65;
    margin: 0;
}

.rw-aeo-premium-outer {
    max-width: 420px;
    margin: 0 auto 1.75rem;
}

.rw-aeo-premium-card {
    border-radius: calc(var(--rw-radius-xl) + 4px);
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--rw-violet) 0%,
        var(--rw-indigo) 35%,
        var(--rw-emerald-bright) 70%,
        var(--rw-blue) 100%
    );
    box-shadow:
        0 4px 6px rgba(124, 58, 237, 0.12),
        0 24px 56px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-aeo-premium-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 20px rgba(124, 58, 237, 0.18),
        0 32px 64px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.rw-aeo-premium-card__inner {
    position: relative;
    border-radius: var(--rw-radius-xl);
    padding: 2rem 1.85rem 1.85rem;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.97) 45%,
        rgba(236, 253, 245, 0.55) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.rw-aeo-premium-card__ribbon {
    position: absolute;
    top: -2px;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rw-violet), var(--rw-emerald));
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.rw-aeo-premium-card__name {
    font-family: var(--rw-display);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    background: linear-gradient(135deg, var(--rw-violet), var(--rw-emerald-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rw-aeo-premium-card__price {
    font-family: var(--rw-display);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--rw-text);
    margin: 0 0 0.35rem;
    line-height: 1.15;
}

.rw-aeo-premium-card__price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rw-text-muted);
}

.rw-aeo-premium-card__quota {
    font-size: 0.88rem;
    color: var(--rw-text-muted);
    margin: 0 0 1.25rem;
}

.rw-aeo-premium-card__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
}

.rw-aeo-premium-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--rw-text);
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.rw-aeo-premium-card__list li:last-child {
    margin-bottom: 0;
}

.rw-aeo-premium-card__list li i {
    color: var(--rw-emerald);
    margin-top: 3px;
    flex-shrink: 0;
}

.rw-aeo-premium-card__cta {
    width: 100%;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}

.rw-aeo-upsell {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 1rem 1.25rem 1.15rem;
    border-radius: var(--rw-radius-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.22);
    box-shadow: var(--rw-shadow-sm);
}

.rw-aeo-upsell__text {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--rw-text);
    line-height: 1.45;
}

.rw-aeo-upsell__badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--rw-emerald-dark);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

/* Calculator */
.rw-calc-section {
    border-radius: var(--rw-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.9));
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow);
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.rw-calc-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .rw-calc-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.rw-field {
    margin-bottom: 1rem;
}

.rw-field label,
.rw-field legend {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
    color: #334155;
}

.rw-field select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--rw-border);
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
}

.rw-segmented {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .rw-segmented {
        grid-template-columns: 1fr;
    }
}

.rw-segmented label {
    cursor: pointer;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.65rem 0.4rem;
    border-radius: 12px;
    border: 1px solid var(--rw-border);
    background: #fff;
    position: relative;
}

.rw-segmented input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.rw-segmented input:checked + span {
    display: block;
    border-radius: 10px;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--rw-emerald), var(--rw-blue-deep));
    color: #fff;
}

.rw-segmented span {
    display: block;
    border-radius: 10px;
    padding: 0.5rem;
}

.rw-fixed-term {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px dashed rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.06);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--rw-emerald-dark);
}

.rw-calc-result {
    border-radius: var(--rw-radius-lg);
    padding: 1.5rem;
    background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 55%, #0f766e 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.rw-calc-result__main {
    font-family: var(--rw-display);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
}

.rw-calc-result__sub {
    margin-top: 0.35rem;
    font-weight: 600;
    opacity: 0.95;
}

.rw-calc-result__meta {
    margin-top: 1.1rem;
    font-size: 0.88rem;
    display: grid;
    gap: 0.45rem;
}

.rw-calc-result__meta strong {
    color: #6ee7b7;
}

/* Compare table */
.rw-table-wrap {
    overflow-x: auto;
    border-radius: var(--rw-radius-lg);
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow-sm);
    background: #fff;
}

.rw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.rw-table th,
.rw-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--rw-border);
}

.rw-table th {
    font-weight: 700;
    background: #f8fafc;
}

.rw-table tr:last-child td {
    border-bottom: none;
}

.rw-table .rw-ok {
    color: var(--rw-emerald-dark);
    font-weight: 700;
}

/* FAQ (shared) */
.rw-faq-item {
    border-radius: var(--rw-radius);
    border: 1px solid var(--rw-border);
    background: #fff;
    margin-bottom: 0.65rem;
    overflow: hidden;
    transition: box-shadow var(--rw-transition);
}

.rw-faq-item:hover {
    box-shadow: var(--rw-shadow-sm);
}

.rw-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--rw-text);
}

.rw-faq-q i {
    color: var(--rw-emerald);
    transition: transform var(--rw-transition);
}

.rw-faq-item.is-open .rw-faq-q i {
    transform: rotate(180deg);
}

.rw-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rw-faq-a-inner {
    padding: 0 1.15rem 1.1rem;
    color: var(--rw-text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* FAQ page */
.rw-faq-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.rw-faq-search input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    border-radius: 14px;
    border: 1px solid var(--rw-border);
    font-family: inherit;
    font-size: 1rem;
}

.rw-faq-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rw-text-muted);
}

.rw-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.rw-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--rw-border);
    background: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--rw-transition);
}

.rw-tab:hover,
.rw-tab.is-active {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.08);
    color: var(--rw-emerald-dark);
}

.rw-faq-cat {
    display: none;
}

.rw-faq-cat.is-active {
    display: block;
}

.rw-search-results {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border-radius: var(--rw-radius);
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow);
    max-height: 280px;
    overflow-y: auto;
    z-index: 20;
}

.rw-search-results.is-open {
    display: block;
}

.rw-search-hit {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--rw-border);
    font-size: 0.88rem;
}

.rw-search-hit:hover {
    background: #f8fafc;
}

.rw-search-hit mark {
    background: rgba(16, 185, 129, 0.25);
    padding: 0 2px;
}

/* Contacts */
.rw-contact-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .rw-contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rw-contact-card {
    text-align: center;
}

.rw-form-panel {
    border-radius: var(--rw-radius-xl);
    background: var(--rw-surface);
    border: 1px solid var(--rw-border);
    box-shadow: var(--rw-shadow);
    padding: clamp(1.5rem, 4vw, 2rem);
}

.rw-form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rw-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.rw-input-wrap {
    position: relative;
}

.rw-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rw-text-muted);
    pointer-events: none;
}

.rw-input-wrap textarea + i,
.rw-input-wrap:has(textarea) i {
    top: 1.1rem;
    transform: none;
}

.rw-input-wrap input,
.rw-input-wrap textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.65rem;
    border-radius: 12px;
    border: 1px solid var(--rw-border);
    font-family: inherit;
    font-size: 1rem;
}

.rw-input-wrap textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 0.85rem;
}

/* Legacy form hooks (script.js) */
.form-modern .input-wrapper {
    position: relative;
}

.form-modern .input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rw-text-muted);
}

.form-modern .input-wrapper input,
.form-modern .input-wrapper textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.65rem;
    border-radius: 12px;
    border: 1px solid var(--rw-border);
    font-family: inherit;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--rw-text-muted);
    cursor: pointer;
}

body.rw-menu-open {
    overflow: hidden;
}
