:root {
    --rt-font-body: "Poppins", "Segoe UI", Arial, sans-serif;
    --rt-font-display: "Poppins", "Segoe UI", Arial, sans-serif;
    --rt-green: #21b15a;
    --rt-green-dark: #149149;
    --rt-red: #de2828;
    --rt-red-dark: #c51c1c;
    --rt-ink: #1f2740;
    --rt-text: #5c667b;
    --rt-muted: #8b93a4;
    --rt-border: #e8edf4;
    --rt-surface: #ffffff;
    --rt-surface-soft: #fbfcfe;
    --rt-shadow: 0 22px 60px rgba(31, 39, 64, 0.08);
    --rt-radius: 28px;
    --rt-container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.rt-page {
    margin: 0;
    font-family: var(--rt-font-body);
    color: var(--rt-ink);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(33, 177, 90, 0.07), transparent 28%),
        radial-gradient(circle at top right, rgba(222, 40, 40, 0.06), transparent 24%),
        #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font: inherit;
}

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.rt-container {
    width: min(calc(100% - 32px), var(--rt-container));
    margin: 0 auto;
}

.rt-topbar {
    background: linear-gradient(90deg, #4bb767, #3aa95a);
    color: #fff;
    font-size: 14px;
}

.rt-topbar-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rt-topbar-list,
.rt-socials,
.rt-topbar-item {
    display: flex;
    align-items: center;
}

.rt-topbar-list {
    gap: 26px;
    flex-wrap: wrap;
}

.rt-topbar-item {
    gap: 10px;
    color: rgba(255, 255, 255, 0.96);
}

.rt-topbar-item svg {
    font-size: 16px;
    flex: 0 0 auto;
}

.rt-socials {
    gap: 16px;
}

.rt-socials a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    opacity: 0.95;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.rt-socials a:hover,
.rt-footer-socials a:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.rt-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 237, 244, 0.9);
}

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

.rt-brand {
    flex: 0 0 auto;
}

.rt-brand img {
    width: clamp(82px, 7.2vw, 112px);
}

.rt-nav-shell {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rt-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.rt-nav a {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rt-font-display);
    color: var(--rt-ink);
    transition: color 0.2s ease;
}

.rt-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rt-green), #80d89a);
    opacity: 0;
    transform: scaleX(0.4);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.rt-nav a:hover,
.rt-nav a.is-active {
    color: var(--rt-green-dark);
}

.rt-nav a:hover::after,
.rt-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Industries Dropdown */
.rt-nav-dropdown {
    position: relative;
}

.rt-nav-dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rt-font-display);
    color: var(--rt-ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rt-nav-dropdown-toggle:hover {
    color: var(--rt-green-dark);
}

.rt-chevron-icon {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.rt-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid var(--rt-border);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(31, 39, 64, 0.08);
    padding: 10px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.rt-nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--rt-ink) !important;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: left;
}

.rt-nav-dropdown-menu a::after {
    display: none !important;
}

.rt-nav-dropdown-menu a:hover {
    background-color: #f4f7fb;
    color: var(--rt-green-dark) !important;
}

@media (min-width: 992px) {
    .rt-nav-dropdown:hover .rt-nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .rt-nav-dropdown:hover .rt-chevron-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 991px) {
    .rt-nav-dropdown {
        width: 100%;
    }
    
    .rt-nav-dropdown-toggle {
        font-size: 16px;
        width: 100%;
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .rt-nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 16px;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
    }
    
    .rt-nav-dropdown.is-open .rt-nav-dropdown-menu {
        display: block;
    }
    
    .rt-nav-dropdown.is-open .rt-chevron-icon {
        transform: rotate(180deg);
    }
}

.rt-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 15px;
    font-family: var(--rt-font-display);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.rt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(31, 39, 64, 0.12);
}

.rt-btn-primary {
    background: linear-gradient(135deg, var(--rt-green), var(--rt-green-dark));
    color: #fff;
}

.rt-btn-danger {
    background: linear-gradient(135deg, var(--rt-red), var(--rt-red-dark));
    color: #fff;
}

.rt-btn-outline {
    background: #fff;
    color: var(--rt-green-dark);
    border-color: rgba(33, 177, 90, 0.45);
}

.rt-btn-ghost {
    background: #fff;
    color: var(--rt-green-dark);
    border-color: rgba(33, 177, 90, 0.45);
}

.rt-btn-light {
    background: #fff;
    color: var(--rt-green-dark);
}

.rt-btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
}

.rt-btn-large {
    min-height: 56px;
    padding: 0 26px;
}

.rt-btn-block {
    width: 100%;
}

.rt-btn svg {
    font-size: 18px;
}

.rt-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--rt-border);
    border-radius: 14px;
    background: #fff;
    color: var(--rt-ink);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.rt-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.rt-hero {
    position: relative;
    overflow: hidden;
    padding: 18px 0 36px;
}

.rt-hero-grid {
    display: grid;
    grid-template-columns: minmax(540px, 0.94fr) minmax(0, 1.06fr);
    gap: 28px;
    align-items: center;
}

.rt-hero-copy {
    max-width: 610px;
    padding: 12px 0 10px;
}

.rt-hero-copy h1 {
    margin: 0;
    font-family: var(--rt-font-display);
    font-size: clamp(44px, 4.55vw, 72px);
    line-height: 4.95rem;
    letter-spacing: -0.04em;
}

.rt-keep-together {
    white-space: nowrap;
}

.rt-accent-green {
    color: var(--rt-green);
}

.rt-accent-red {
    color: var(--rt-red);
}

.rt-hero-copy p {
    max-width: 520px;
    margin: 26px 0 0;
    font-size: 17px;
    line-height: 1.78;
    color: var(--rt-text);
}

.rt-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.rt-trust-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 26px;
}

.rt-trust-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--rt-text);
}

.rt-trust-point svg,
.rt-pricing-note svg {
    color: var(--rt-green);
    font-size: 18px;
    flex: 0 0 auto;
}

.rt-hero-visual {
    position: relative;
    min-height: 540px;
}

.rt-hero-device-frame {
    position: relative;
    z-index: 2;
    width: min(100%, 790px);
    margin: 6px -12px 0 auto;
    padding: 0;
}

.rt-hero-device-crop {
    width: 100%;
    max-width: 790px;
    height: 470px;
    margin-left: 18%;
    overflow: hidden;
}

.rt-hero-device-frame img {
    width: 735px;
    max-width: none;
    margin-top: -8px;
    object-fit: contain;
    filter: drop-shadow(0 28px 44px rgba(17, 23, 38, 0.22));
}

.rt-hero-shape {
    position: absolute;
    z-index: 0;
}

.rt-hero-shape-green {
    left: 92px;
    right: 157px;
    bottom: 20px;
    height: 245px;
    border-radius: 220px 220px 0 0;
    background: linear-gradient(90deg, #42bc67 0%, #52c777 100%);
}

.rt-hero-shape-red {
    width: 450px;
    height: 450px;
    right: -38%;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff5959, var(--rt-red));
}

.rt-dot-grid {
    position: absolute;
    pointer-events: none;
    background-image: radial-gradient(currentColor 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.18;
}

.rt-dot-grid-hero {
    top: 48px;
    right: 84px;
    width: 126px;
    height: 126px;
    color: #8b93a4;
}

.rt-dot-grid-hero-left {
    left: 12px;
    top: 214px;
    width: 92px;
    height: 92px;
    color: var(--rt-green);
    opacity: 0.2;
}

.rt-benefits {
    background: linear-gradient(90deg, #1aa754, #34bc66);
    color: #fff;
}

.rt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.rt-benefit-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 16px;
}

.rt-benefit-card + .rt-benefit-card {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.rt-benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 auto;
}

.rt-benefit-card h3,
.rt-testimonial-author h3,
.rt-price-card h3,
.rt-service-card h3,
.rt-footer h3 {
    margin: 0;
}

.rt-benefit-card h3 {
    font-size: 18px;
}

.rt-benefit-card h3,
.rt-testimonial-author h3,
.rt-price-card h3,
.rt-service-card h3,
.rt-footer h3,
.rt-about-copy h2,
.rt-section-heading h2,
.rt-cta-inner h2,
.rt-eyebrow,
.rt-price-badge,
.rt-pricing-toggle button {
    font-family: var(--rt-font-display);
}

.rt-benefit-card p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.rt-section {
    padding: 96px 0;
}

.rt-section-soft {
    background:
        linear-gradient(180deg, rgba(251, 252, 254, 0.9), #fff 60%);
}

.rt-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}

.rt-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-green);
}

.rt-about-copy h2,
.rt-section-heading h2,
.rt-cta-inner h2 {
    margin: 0;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rt-about-copy p {
    margin: 22px 0 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--rt-text);
}

.rt-check-list,
.rt-price-card ul,
.rt-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt-check-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 34px;
}

.rt-check-list li,
.rt-price-card li {
    position: relative;
    padding-left: 28px;
    color: var(--rt-text);
    font-weight: 700;
}

.rt-check-list li::before,
.rt-price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #fff 28%, transparent 29%),
        linear-gradient(135deg, var(--rt-green), #6fd28f);
    box-shadow: 0 4px 10px rgba(33, 177, 90, 0.24);
}

.rt-about-media {
    position: relative;
}

.rt-dot-grid-side {
    right: -18px;
    top: 108px;
    width: 108px;
    height: 180px;
    color: var(--rt-red);
    opacity: 0.3;
}

.rt-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--rt-shadow);
    background: #fff;
}

.rt-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-section-heading {
    max-width: 880px;
    margin: 0 auto 40px;
    text-align: center;
}

.rt-section-heading-compact {
    margin-bottom: 30px;
}

.rt-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rt-service-card {
    display: flex;
    gap: 18px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--rt-border);
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(31, 39, 64, 0.04);
}

.rt-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rt-green);
    background: linear-gradient(180deg, rgba(33, 177, 90, 0.1), rgba(33, 177, 90, 0.03));
    border: 1px solid rgba(33, 177, 90, 0.15);
    flex: 0 0 auto;
    font-size: 30px;
}

.rt-service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.rt-service-card p {
    margin: 0;
    color: var(--rt-text);
    line-height: 1.75;
    font-size: 15px;
}

.rt-pricing-toggle {
    width: fit-content;
    margin: 0 auto 34px;
    padding: 6px;
    border-radius: 999px;
    background: #f4f7fb;
    border: 1px solid var(--rt-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rt-pricing-toggle button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--rt-muted);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.rt-pricing-toggle .is-active {
    background: var(--rt-green);
    color: #fff;
}

.rt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rt-price-card {
    position: relative;
    padding: 34px 24px 28px;
    border-radius: 24px;
    border: 1px solid rgba(222, 40, 40, 0.35);
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 39, 64, 0.05);
}

.rt-price-card p {
    margin: 10px 0 0;
    color: var(--rt-muted);
    line-height: 1.7;
}

.rt-price {
    margin: 24px 0;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1;
}

.rt-price-amount {
    font-size: clamp(40px, 3vw, 56px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.rt-price-term {
    font-size: 15px;
    color: var(--rt-muted);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.rt-price-card ul {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.rt-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--rt-green);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rt-price-card-featured {
    background: linear-gradient(180deg, #e12929, #c91a1a);
    color: #fff;
    border-color: transparent;
    transform: translateY(-10px);
}

.rt-price-card-featured p,
.rt-price-card-featured .rt-price-term,
.rt-price-card-featured li {
    color: rgba(255, 255, 255, 0.92);
}

.rt-price-card-featured li::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 28%, transparent 29%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    box-shadow: none;
}

.rt-pricing-note {
    margin: 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--rt-text);
    font-weight: 700;
    text-align: center;
}

.rt-clients-section {
    padding-top: 42px;
    padding-bottom: 52px;
}

.rt-brand-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    align-items: center;
    padding: 14px 0 12px;
    border-top: 1px solid var(--rt-border);
    border-bottom: 1px solid var(--rt-border);
}

.rt-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #8d8f97;
    opacity: 0.9;
}

.rt-brand-item svg {
    display: block;
    width: 100%;
    max-width: 150px;
    height: 30px;
}

.rt-brand-item-apple {
    gap: 8px;
}

.rt-brand-item-apple svg {
    width: 22px;
    min-width: 22px;
    height: 26px;
}

.rt-brand-item-apple span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.rt-brand-item-ibm svg {
    max-width: 124px;
}

.rt-testimonial-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.rt-testimonial-viewport {
    overflow: hidden;
}

.rt-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(33, 177, 90, 0.35);
    color: var(--rt-green);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rt-carousel-arrow:hover {
    background-color: var(--rt-green);
    color: #fff;
    border-color: var(--rt-green);
    transform: scale(1.05);
}

.rt-testimonial-track {
    display: flex;
    gap: 18px;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    --visible-cards: 3;
}

.rt-testimonial-card {
    flex: 0 0 calc((100% - (var(--visible-cards) - 1) * 18px) / var(--visible-cards));
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--rt-border);
    box-shadow: 0 10px 26px rgba(31, 39, 64, 0.05);
}

.rt-stars {
    margin-bottom: 16px;
    color: #ff8a00;
    letter-spacing: 0.18em;
    font-size: 16px;
}

.rt-testimonial-card p {
    margin: 0;
    min-height: 92px;
    line-height: 1.8;
    color: var(--rt-text);
}

.rt-testimonial-author {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.rt-testimonial-photo {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 8px 18px rgba(31, 39, 64, 0.12);
    flex: 0 0 auto;
}

.rt-testimonial-author span {
    display: block;
    margin-top: 4px;
    color: var(--rt-muted);
    font-size: 14px;
}

.rt-cta {
    padding: 0 0 96px;
}

.rt-cta-inner {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(90deg, #1fa654, #34bc66);
    border-radius: 24px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}

.rt-cta-inner p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.rt-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.rt-footer {
    background: #15181f;
    color: rgba(255, 255, 255, 0.76);
    padding: 60px 0 22px;
}

.rt-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr 0.8fr 1fr;
    gap: 24px;
}

.rt-footer-brand img {
    width: min(100%, 160px);
}

.rt-footer-brand p {
    margin: 20px 0 0;
    line-height: 1.8;
}

.rt-footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 19px;
}

.rt-footer ul {
    display: grid;
    gap: 12px;
}

.rt-footer a {
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.2s ease;
}

.rt-footer a:hover {
    color: #fff;
}

.rt-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.rt-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rt-app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.rt-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 8px 14px;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

    .rt-app-badge:hover {
        transform: translateY(-2px);
        background: #f3f4f6;
        color: #111;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .rt-app-badge svg {
        width: 24px;
        height: 24px;
        fill: #111;
        flex: 0 0 auto;
    }

    .rt-app-badge span {
        display: flex;
        flex-direction: column;
        color: #111 !important;
    }

    .rt-app-badge small {
        font-size: 10px;
        text-transform: uppercase;
        opacity: .85;
        color: #111 !important;
    }

    .rt-app-badge strong {
        font-size: 15px;
        font-weight: 600;
        color: #111 !important;
    }

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

.rt-contact-list svg {
    margin-top: 3px;
    color: var(--rt-green);
    flex: 0 0 auto;
}

.rt-footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
}

.rt-legal-page {
    background:
        radial-gradient(circle at top left, rgba(33, 177, 90, 0.06), transparent 22%),
        radial-gradient(circle at top right, rgba(222, 40, 40, 0.05), transparent 18%),
        linear-gradient(180deg, #fbfcfe 0%, #ffffff 42%);
}

.rt-legal-main {
    padding: 36px 0 96px;
}

.rt-legal-hero {
    padding: 28px 0 22px;
}

.rt-legal-hero h1 {
    margin: 0;
    font-family: var(--rt-font-display);
    font-size: clamp(34px, 3.3vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--rt-ink);
}

.rt-legal-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--rt-text);
}

.rt-legal-section {
    padding-top: 8px;
}

.rt-legal-card {
    padding: 34px 36px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(232, 237, 244, 0.95);
    box-shadow: 0 24px 56px rgba(31, 39, 64, 0.08);
}

.rt-legal-content {
    color: var(--rt-text);
    font-size: 16px;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.rt-legal-content h1,
.rt-legal-content h2,
.rt-legal-content h3,
.rt-legal-content h4 {
    color: var(--rt-ink);
    font-family: var(--rt-font-display);
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-top: 0;
}

.rt-legal-content h2 {
    font-size: clamp(28px, 2.4vw, 40px);
    margin-bottom: 20px;
}

.rt-legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.rt-legal-content p,
.rt-legal-content ul,
.rt-legal-content ol {
    margin-top: 0;
    margin-bottom: 16px;
}

.rt-legal-content ul,
.rt-legal-content ol {
    padding-left: 22px;
}

.rt-legal-content li {
    margin-bottom: 8px;
}

.rt-legal-content a {
    color: var(--rt-green-dark);
    font-weight: 600;
}

.rt-signup-page {
    background:
        radial-gradient(circle at top left, rgba(33, 177, 90, 0.07), transparent 24%),
        radial-gradient(circle at top right, rgba(222, 40, 40, 0.06), transparent 20%),
        linear-gradient(180deg, #fbfcfe 0%, #ffffff 40%);
}

.rt-signup-main {
    padding: 54px 0 96px;
}

.rt-signup-section {
    position: relative;
}

.rt-signup-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.rt-signup-copy {
    display: grid;
    gap: 22px;
}

.rt-signup-copy h1 {
    margin: 0;
    font-family: var(--rt-font-display);
    font-size: clamp(38px, 3.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--rt-ink);
}

.rt-signup-copy p {
    margin: 0;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--rt-text);
}

.rt-signup-points {
    display: grid;
    gap: 14px;
}

.rt-signup-point {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--rt-ink);
}

.rt-signup-point svg {
    color: var(--rt-green);
    font-size: 18px;
    flex: 0 0 auto;
}

.rt-signup-media {
    position: relative;
    margin-top: 6px;
}

.rt-signup-media .rt-image-card {
    min-height: 320px;
    border-radius: 30px;
}

.rt-signup-media .rt-image-card img {
    min-height: 320px;
    object-fit: cover;
}

.rt-signup-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(232, 237, 244, 0.95);
    box-shadow: 0 28px 60px rgba(31, 39, 64, 0.1);
    backdrop-filter: blur(8px);
}

.rt-signup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(33, 177, 90, 0.2), rgba(222, 40, 40, 0.14));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.rt-signup-card-header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.rt-signup-card-header h2 {
    margin: 0;
    font-family: var(--rt-font-display);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--rt-ink);
}

.rt-signup-card-header p {
    margin: 12px 0 0;
    color: var(--rt-text);
    font-size: 15px;
    line-height: 1.75;
}

.rt-form-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rt-form-group {
    display: grid;
    gap: 8px;
}

.rt-form-group:last-child {
    grid-column: 1 / -1;
}

.rt-form-group-full {
    grid-column: 1 / -1;
}

.rt-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--rt-ink);
}

.rt-form-input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid #d8e1ec;
    background: #fff;
    color: var(--rt-ink);
    font-family: var(--rt-font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rt-form-input::placeholder {
    color: #9aa4b5;
}

.rt-form-input:hover {
    border-color: #b9c9db;
}

.rt-form-input:focus {
    border-color: rgba(33, 177, 90, 0.72);
    box-shadow: 0 0 0 4px rgba(33, 177, 90, 0.12);
}

.rt-form-textarea {
    width: 100%;
    min-height: 160px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #d8e1ec;
    background: #fff;
    color: var(--rt-ink);
    font-family: var(--rt-font-body);
    font-size: 15px;
    line-height: 1.7;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rt-form-textarea::placeholder {
    color: #9aa4b5;
}

.rt-form-textarea:hover {
    border-color: #b9c9db;
}

.rt-form-textarea:focus {
    border-color: rgba(33, 177, 90, 0.72);
    box-shadow: 0 0 0 4px rgba(33, 177, 90, 0.12);
}

.rt-signup-submit {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    min-height: 58px;
    border-radius: 18px;
    font-size: 16px;
}

.rt-signup-note {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    font-size: 15px;
    color: var(--rt-text);
}

.rt-signup-note a {
    color: var(--rt-green-dark);
    font-weight: 700;
}

.rt-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rt-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--rt-border);
    box-shadow: 0 12px 24px rgba(31, 39, 64, 0.05);
}

.rt-contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rt-green);
    background: linear-gradient(180deg, rgba(33, 177, 90, 0.12), rgba(33, 177, 90, 0.04));
    border: 1px solid rgba(33, 177, 90, 0.12);
    font-size: 22px;
}

.rt-contact-info-card h3 {
    margin: 0;
    font-family: var(--rt-font-display);
    font-size: 18px;
    color: var(--rt-ink);
}

.rt-contact-info-card p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--rt-text);
}

@media (max-width: 1199px) {
    .rt-hero-grid,
    .rt-about-grid,
    .rt-pricing-grid,
    .rt-benefits-grid,
    .rt-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-card-grid,
    .rt-brand-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rt-testimonial-track {
        --visible-cards: 2;
    }

    .rt-hero {
        padding-top: 26px;
    }

    .rt-hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    .rt-hero-copy {
        max-width: 560px;
    }

    .rt-hero-copy h1 {
        font-size: clamp(42px, 4.8vw, 64px);
    }

    .rt-hero-visual {
        min-height: 500px;
    }

    .rt-hero-device-crop {
        height: 410px;
    }

    .rt-hero-device-frame img {
        width: 690px;
    }

    .rt-price-card-featured {
        transform: none;
    }

    .rt-legal-card {
        padding: 28px;
    }

    .rt-signup-grid {
        grid-template-columns: 1fr;
    }

    .rt-signup-copy {
        order: 2;
    }

    .rt-signup-card {
        order: 1;
    }

    .rt-contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .rt-header-inner,
    .rt-cta-inner,
    .rt-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .rt-topbar {
        display: none;
    }

    .rt-header-inner {
        min-height: 80px;
        flex-direction: row;
        gap: 16px;
    }

    .rt-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .rt-nav-shell {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
        border-radius: 22px;
        background: #fff;
        border: 1px solid var(--rt-border);
        box-shadow: 0 18px 48px rgba(31, 39, 64, 0.12);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .rt-nav-shell.is-open {
        display: flex;
    }

    .rt-nav,
    .rt-header-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .rt-nav a::after {
        bottom: -6px;
    }

    .rt-header-actions .rt-btn {
        width: 100%;
    }

    .rt-hero-grid,
    .rt-about-grid,
    .rt-pricing-grid,
    .rt-card-grid,
    .rt-benefits-grid,
    .rt-footer-grid {
        grid-template-columns: 1fr;
    }

    .rt-brand-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .rt-hero-copy {
        padding-top: 0;
        max-width: none;
    }

    .rt-hero-copy p {
        max-width: none;
    }

    .rt-hero-visual {
        min-height: auto;
        width: 100%;
    }

    .rt-hero-device-frame {
        width: 100%;
        max-width: 620px;
        margin: 20px auto 0;
    }

    .rt-hero-device-crop {
        height: auto;
        overflow: visible;
        margin-left: 0;
        max-width: none;
    }

    .rt-hero-device-frame img {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .rt-hero-shape-green {
        left: 12px;
        right: 92px;
        bottom: 0;
        height: 132px;
        border-radius: 132px 132px 0 0;
    }

    .rt-hero-shape-red {
        width: 230px;
        height: 230px;
        right: -64px;
        bottom: 6px;
    }

    .rt-benefit-card + .rt-benefit-card {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* testimonial slider remains active on mobile/tablet */

    .rt-cta {
        padding-bottom: 72px;
    }

    .rt-signup-main {
        padding: 36px 0 72px;
    }

    .rt-legal-main {
        padding: 24px 0 72px;
    }

    .rt-form-grid {
        grid-template-columns: 1fr;
    }

    .rt-form-group:last-child {
        grid-column: auto;
    }

    .rt-form-group-full {
        grid-column: auto;
    }

    .rt-contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .rt-testimonial-track {
        --visible-cards: 1;
    }

    .rt-testimonial-shell {
        gap: 8px;
    }

    .rt-carousel-arrow {
        width: 36px;
        height: 36px;
    }

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

    .rt-topbar {
        display: none;
    }

    .rt-header-inner {
        min-height: 72px;
    }

    .rt-brand img {
        width: 84px;
    }

    .rt-nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .rt-nav-shell {
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        padding: 16px;
    }

    .rt-nav {
        gap: 14px;
    }

    .rt-nav a {
        font-size: 16px;
    }

    .rt-hero {
        padding-top: 22px;
    }

    .rt-hero-copy h1 {
        font-size: clamp(30px, 10vw, 46px);
        line-height: 1.06;
    }

    .rt-hero-copy p,
    .rt-about-copy p,
    .rt-service-card p,
    .rt-testimonial-card p,
    .rt-footer-brand p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rt-hero-actions,
    .rt-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .rt-btn,
    .rt-btn-large {
        width: 100%;
    }

    .rt-trust-points {
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 22px;
    }

    .rt-trust-point {
        width: 100%;
    }

    .rt-hero-visual {
        min-height: auto;
        padding-top: 4px;
    }

    .rt-hero-device-frame {
        width: min(100%, 340px);
        margin: 12px auto 0;
        padding: 0;
    }

    .rt-hero-device-crop {
        margin-left: 0;
    }

    .rt-hero-device-frame img {
        max-width: 340px;
    }

    .rt-hero-shape-green {
        left: 0;
        right: 54px;
        bottom: 0;
        height: 78px;
        border-radius: 78px 78px 0 0;
    }

    .rt-hero-shape-red {
        width: 136px;
        height: 136px;
        right: -50px;
        bottom: 0;
    }

    .rt-dot-grid-hero,
    .rt-dot-grid-side {
        display: none;
    }

    .rt-section {
        padding: 72px 0;
    }

    .rt-benefit-card,
    .rt-service-card,
    .rt-price-card,
    .rt-testimonial-card,
    .rt-cta-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .rt-service-card {
        flex-direction: column;
    }

    .rt-pricing-toggle {
        width: 100%;
        flex-direction: column;
        border-radius: 24px;
    }

    .rt-pricing-toggle button {
        width: 100%;
    }

    .rt-price {
        font-size: 40px;
    }

    .rt-brand-item svg {
        max-width: 132px;
        height: 28px;
    }

    .rt-clients-section {
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .rt-brand-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
        padding: 16px 0;
    }

    .rt-brand-item {
        min-height: 40px;
    }

    .rt-brand-item svg {
        max-width: 118px;
        height: 26px;
    }

    .rt-brand-item-apple span {
        font-size: 14px;
    }

    .rt-footer-bottom {
        font-size: 13px;
        align-items: flex-start;
    }

    .rt-signup-main {
        padding: 24px 0 60px;
    }

    .rt-legal-main {
        padding: 18px 0 56px;
    }

    .rt-legal-hero {
        padding-top: 18px;
    }

    .rt-legal-hero p,
    .rt-legal-content {
        font-size: 14px;
    }

    .rt-legal-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .rt-legal-content h2 {
        font-size: 26px;
    }

    .rt-legal-content h3 {
        font-size: 20px;
    }

    .rt-signup-copy h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .rt-signup-copy p,
    .rt-signup-point,
    .rt-signup-card-header p,
    .rt-signup-note {
        font-size: 14px;
    }

    .rt-signup-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .rt-signup-card-header {
        margin-bottom: 18px;
    }

    .rt-signup-card-header h2 {
        font-size: 28px;
    }

    .rt-signup-media .rt-image-card,
    .rt-signup-media .rt-image-card img {
        min-height: 220px;
    }
}

@media (max-width: 575px) {
    .rt-section {
        padding: 56px 0;
    }

    .rt-hero-grid,
    .rt-about-grid,
    .rt-signup-grid {
        gap: 18px;
    }

    .rt-hero-copy h1 {
        font-size: clamp(28px, 9.8vw, 40px);
    }

    .rt-about-copy h2,
    .rt-section-heading h2,
    .rt-cta-inner h2,
    .rt-signup-copy h1,
    .rt-legal-hero h1 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .rt-benefit-card {
        padding: 20px 14px;
        gap: 14px;
    }

    .rt-brand-row {
        gap: 14px 10px;
    }

    .rt-benefit-card h3 {
        font-size: 17px;
    }

    .rt-price-card,
    .rt-service-card,
    .rt-testimonial-card,
    .rt-signup-card,
    .rt-legal-card,
    .rt-contact-info-card {
        border-radius: 20px;
    }

    .rt-price-card,
    .rt-service-card,
    .rt-testimonial-card {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .rt-footer {
        padding-top: 48px;
    }

    .rt-footer-grid {
        gap: 24px;
    }

    .rt-contact-list li {
        line-height: 1.7;
    }
}

/* Full-Width Docked Cookie Consent Banner */
.rt-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--rt-border);
    box-shadow: 0 -10px 40px rgba(31, 39, 64, 0.06);
    padding: 18px 0;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    animation: rt-cookie-slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rt-cookie-slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rt-cookie-container {
    width: min(calc(100% - 32px), var(--rt-container));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.rt-cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rt-cookie-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(33, 177, 90, 0.12), rgba(33, 177, 90, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rt-cookie-icon {
    font-size: 22px;
    color: var(--rt-green);
}

.rt-cookie-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--rt-text);
}

.rt-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.rt-btn-cookie {
    font-family: var(--rt-font-display);
    font-weight: 800;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rt-btn-cookie-accept {
    background: var(--rt-green);
    color: #fff;
}

.rt-btn-cookie-accept:hover {
    background: var(--rt-green-dark);
    transform: translateY(-1px);
}

.rt-btn-cookie-reject {
    background: transparent;
    color: var(--rt-text);
    border-color: var(--rt-border);
}

.rt-btn-cookie-reject:hover {
    background: #f4f7fb;
    border-color: #d8e1ec;
    color: var(--rt-ink);
    transform: translateY(-1px);
}

.rt-btn-cookie:active {
    transform: translateY(0);
}

.rt-form-error {
    display: none;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #de2828;
}

.rt-form-input.is-invalid,
.rt-form-textarea.is-invalid {
    border-color: #de2828;
    box-shadow: 0 0 0 3px rgba(222, 40, 40, 0.12);
}

.rt-form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(33, 177, 90, 0.1);
    border: 1px solid rgba(33, 177, 90, 0.35);
    color: var(--rt-green-dark);
    font-size: 14.5px;
    font-weight: 600;
}

.rt-form-success svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: var(--rt-green);
}

.rt-cookie-text a {
    color: var(--rt-green);
    font-weight: 600;
    text-decoration: underline;
}

.rt-btn-cookie-link {
    background: transparent;
    color: var(--rt-ink);
    border-color: transparent;
    text-decoration: underline;
}

.rt-btn-cookie-link:hover {
    color: var(--rt-green-dark);
}

.rt-btn-cookie-save {
    background: transparent;
    color: var(--rt-green);
    border-color: var(--rt-green);
}

.rt-btn-cookie-save:hover {
    background: rgba(33, 177, 90, 0.08);
    transform: translateY(-1px);
}

/* ---- Cookie Preferences Modal ---- */
body.rt-cookie-modal-open {
    overflow: hidden;
}

.rt-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.rt-cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 39, 64, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.rt-cookie-modal-dialog {
    position: relative;
    width: min(calc(100% - 32px), 620px);
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(31, 39, 64, 0.25);
    overflow: hidden;
}

.rt-cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--rt-border);
}

.rt-cookie-modal-header h2 {
    margin: 0;
    font-family: var(--rt-font-display);
    font-size: 22px;
    color: var(--rt-ink);
}

.rt-cookie-modal-close {
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: var(--rt-text);
    cursor: pointer;
    padding: 0 4px;
}

.rt-cookie-modal-close:hover {
    color: var(--rt-ink);
}

.rt-cookie-modal-body {
    padding: 22px 26px;
    overflow-y: auto;
}

.rt-cookie-modal-intro {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--rt-text);
}

.rt-cookie-category {
    padding: 16px 0;
    border-top: 1px solid var(--rt-border);
}

.rt-cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.rt-cookie-category-head h3 {
    margin: 0;
    font-size: 16px;
    font-family: var(--rt-font-display);
    color: var(--rt-ink);
}

.rt-cookie-category p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--rt-text);
}

.rt-cookie-always-on {
    font-size: 13px;
    font-weight: 700;
    color: var(--rt-green);
    white-space: nowrap;
}

/* toggle switch */
.rt-cookie-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.rt-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.rt-cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e1;
    border-radius: 26px;
    transition: background-color 0.2s ease;
}

.rt-cookie-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.rt-cookie-switch input:checked + .rt-cookie-slider {
    background: var(--rt-green);
}

.rt-cookie-switch input:checked + .rt-cookie-slider::before {
    transform: translateX(20px);
}

.rt-cookie-switch input:focus-visible + .rt-cookie-slider {
    box-shadow: 0 0 0 3px rgba(33, 177, 90, 0.3);
}

.rt-cookie-modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 26px;
    border-top: 1px solid var(--rt-border);
    background: #f9fbfd;
}

@media (max-width: 991px) {
    .rt-cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .rt-cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 575px) {
    .rt-cookie-banner {
        padding: 16px 0;
    }

    .rt-cookie-actions,
    .rt-cookie-modal-footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .rt-btn-cookie {
        width: 100%;
    }
}
