:root {
    --rw-primary: #071a3d;
    --rw-primary-2: #0b2b57;
    --rw-text: #1f2937;
    --rw-muted: #667085;
    --rw-light: #f8fafc;
    --rw-soft: #f3f7fb;
    --rw-white: #ffffff;
    --rw-border: #e5e7eb;
    --rw-blue: #2563eb;
    --rw-purple: #7c3aed;
    --rw-pink: #ec4899;
    --rw-orange: #f97316;
    --rw-green: #22c55e;
    --rw-gradient: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #f97316, #22c55e);
    --rw-rainbow-text: linear-gradient(90deg, #ef3f35 0%, #f97316 24%, #22c55e 55%, #2563eb 82%, #7c3aed 100%);
    --rw-shadow: 0 18px 55px rgba(7, 27, 58, .08);
    --rw-shadow-strong: 0 30px 80px rgba(7, 27, 58, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--rw-text);
    background: #ffffff;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1240px;
}

/* ================================
   HEADER
================================ */

.rw-header {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 231, 235, .82);
    position: sticky;
    top: 0;
    z-index: 999;
}

.rw-header .navbar {
    padding: 10px 0;
}

.rw-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    color: var(--rw-primary);
}

.rw-brand:hover {
    color: var(--rw-primary);
}

.rw-brand img {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
}

.rw-brand span {
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    color: var(--rw-primary);
}

.rw-menu .nav-link {
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px !important;
    position: relative;
}

.rw-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 3px;
    border-radius: 50px;
    background: var(--rw-gradient);
    opacity: 0;
    transform: scaleX(.3);
    transition: .25s ease;
}

.rw-menu .nav-link:hover {
    color: var(--rw-blue);
}

.rw-menu .nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.rw-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rw-phone {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.rw-phone a {
    color: var(--rw-primary);
    font-size: 12px;
    font-weight: 800;
}

.rw-phone a:hover {
    color: var(--rw-blue);
}

.navbar-toggler {
    border: 1px solid #d8e1ef;
    box-shadow: none !important;
}

/* ================================
   BUTTONS
================================ */

.rw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    padding: 13px 22px;
    font-weight: 800;
    font-size: 14px;
    transition: .25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.rw-btn-gradient {
    color: #ffffff;
    background: var(--rw-gradient);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .2);
    border-radius: 8px;
    padding: 11px 18px;
}

.rw-btn-dark {
    color: #ffffff;
    background: var(--rw-primary);
    box-shadow: 0 15px 30px rgba(7, 26, 61, .14);
}

.rw-btn-light {
    color: var(--rw-primary);
    background: #ffffff;
    border: 1px solid #aeb9cb;
}

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

.rw-btn-dark:hover,
.rw-btn-gradient:hover {
    color: #ffffff;
}

.rw-btn-light:hover {
    color: var(--rw-blue);
    border-color: var(--rw-blue);
}

/* ================================
   HERO
================================ */

.rw-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 30px;
    background:
        radial-gradient(circle at 91% 18%, rgba(34, 197, 94, .18), transparent 25%),
        radial-gradient(circle at 88% 38%, rgba(236, 72, 153, .11), transparent 24%),
        radial-gradient(circle at 78% 62%, rgba(37, 99, 235, .08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -210px;
    top: 65px;
    background: conic-gradient(from 180deg, #2563eb, #7c3aed, #ec4899, #f97316, #22c55e, #2563eb);
    opacity: .10;
    filter: blur(18px);
    pointer-events: none;
}

.rw-eyebrow {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(124, 58, 237, .28);
    background: rgba(255, 255, 255, .86);
    border-radius: 999px;
    padding: 8px 16px;
    color: #7c3aed;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rw-hero h1 {
    max-width: 570px;
    color: var(--rw-primary);
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.7px;
    margin-bottom: 18px;
}

.rw-hero h1 span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-hero p {
    max-width: 560px;
    color: #53627a;
    font-size: 15.5px;
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 26px;
}

.rw-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.rw-hero-actions .rw-btn {
    min-width: 185px;
    min-height: 50px;
}

/* Hero laptop image */
.rw-laptop-wrap {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.rw-laptop-glow {
    position: absolute;
    width: 520px;
    height: 420px;
    right: -40px;
    top: 0;
    border-radius: 50%;
    background: conic-gradient(from 160deg, #2563eb, #7c3aed, #ec4899, #f97316, #22c55e, #2563eb);
    opacity: .18;
    filter: blur(32px);
    pointer-events: none;
}

.rw-laptop-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.rw-laptop-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 22px 34px rgba(7, 27, 58, .14));
}

.rw-hero-floating-card {
    position: absolute;
    top: 32px;
    right: -8px;
    z-index: 4;
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 14px;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rw-primary);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(7, 27, 58, .10);
}

.rw-hero-floating-card i {
    color: #f97316;
}

.rw-hero-floating-stats {
    display: none !important;
}

/* Stats strip */
.rw-stats {
    position: relative;
    margin-top: 32px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e9eef7;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.rw-stats div {
    text-align: center;
    padding: 23px 18px;
    border-right: 1px solid #e9eef7;
}

.rw-stats div:last-child {
    border-right: 0;
}

.rw-stats i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 8px;
    display: block;
}

.rw-stats strong {
    color: var(--rw-primary);
    display: block;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.rw-stats span {
    color: #667085;
    font-size: 12px;
    font-weight: 500;
}

/* ================================
   COMMON SECTIONS
================================ */

.rw-section {
    padding: 82px 0;
    position: relative;
}

.rw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rw-kicker::after {
    content: "";
    width: 38px;
    height: 3px;
    border-radius: 20px;
    background: var(--rw-gradient);
}

.rw-section-title {
    max-width: 720px;
    margin: 0 auto 42px;
}

.rw-section-title h2,
.rw-section-heading,
.rw-blog-heading {
    color: var(--rw-primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.rw-section-heading span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-section-title p,
.rw-section-text {
    color: var(--rw-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* ================================
   ABOUT
================================ */

.rw-about-section {
    background: #ffffff;
}

.rw-about-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 390px;
    border: 1px solid #e9eef7;
    box-shadow: 0 24px 70px rgba(7, 27, 58, .10);
    background: #f8fafc;
}

.rw-about-photo > img {
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
}

.rw-about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(7, 27, 58, .16)),
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, .26), transparent 28%);
    pointer-events: none;
}

.rw-about-photo-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--rw-primary);
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 12px 16px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
}

.rw-about-photo-badge img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
}

/* Fallback old about visual */
.rw-about-visual {
    position: relative;
    min-height: 390px;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, .16), transparent 26%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, .18), transparent 30%),
        linear-gradient(135deg, #f8fbff, #ffffff);
    border: 1px solid #e9eef7;
    box-shadow: 0 22px 65px rgba(7, 27, 58, .08);
    padding: 34px;
}

.rw-code-screen {
    background: #071b3a;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(7, 27, 58, .22);
}

.rw-code-top {
    height: 44px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.rw-code-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.rw-code-lines {
    padding: 28px;
}

.rw-code-lines i {
    display: block;
    height: 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, rgba(37, 99, 235, .8), rgba(236, 72, 153, .65), rgba(34, 197, 94, .55));
}

.rw-code-lines i:nth-child(1) { width: 78%; }
.rw-code-lines i:nth-child(2) { width: 58%; }
.rw-code-lines i:nth-child(3) { width: 88%; }
.rw-code-lines i:nth-child(4) { width: 44%; }
.rw-code-lines i:nth-child(5) { width: 70%; }
.rw-code-lines i:nth-child(6) { width: 52%; }
.rw-code-lines i:nth-child(7) { width: 82%; }

.rw-about-logo-card {
    position: absolute;
    right: 26px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .12);
    font-weight: 900;
    color: var(--rw-primary);
}

.rw-about-logo-card img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
}

.rw-info-box {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(7, 27, 58, .09);
}

.rw-info-box i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 16px;
}

.rw-info-box h5 {
    color: var(--rw-primary);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-info-box p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ================================
   SERVICES
================================ */

.rw-services-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-service-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.rw-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--rw-gradient);
    opacity: 0;
    transition: .25s ease;
}

.rw-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 65px rgba(7, 27, 58, .1);
}

.rw-service-card:hover::before {
    opacity: 1;
}

.rw-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--rw-gradient) border-box;
    border: 2px solid transparent;
    margin-bottom: 20px;
}

.rw-service-icon i {
    font-size: 28px;
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-service-card h4 {
    color: var(--rw-primary);
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-service-card p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* ================================
   WHY CHOOSE
================================ */

.rw-why-section {
    background: #ffffff;
}

.rw-check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

.rw-check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 650;
    margin-bottom: 14px;
}

.rw-check-list i {
    color: #2563eb;
    margin-top: 3px;
}

.rw-why-illustration {
    min-height: 430px;
    position: relative;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 58, 237, .16), transparent 24%),
        radial-gradient(circle at 84% 78%, rgba(34, 197, 94, .16), transparent 28%),
        linear-gradient(135deg, #eef4ff, #ffffff);
    border: 1px solid #e9eef7;
    overflow: hidden;
}

.rw-design-window {
    position: absolute;
    width: 68%;
    left: 16%;
    top: 18%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe7f4;
    box-shadow: 0 24px 65px rgba(37, 99, 235, .16);
}

.rw-design-header {
    height: 54px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.rw-design-body {
    display: flex;
    min-height: 210px;
    padding: 22px;
    gap: 20px;
}

.rw-design-sidebar {
    width: 28%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(37, 99, 235, .14), rgba(124, 58, 237, .08));
}

.rw-design-main {
    flex: 1;
    display: grid;
    gap: 15px;
}

.rw-design-main span {
    display: block;
    border-radius: 16px;
    background: #eef4ff;
}

.rw-design-main span:nth-child(2) {
    background: #fff3e6;
}

.rw-design-main span:nth-child(3) {
    background: #ecfff4;
}

.rw-person {
    position: absolute;
    width: 54px;
    height: 90px;
    border-radius: 30px 30px 18px 18px;
    background: linear-gradient(180deg, #7c3aed, #ec4899);
    box-shadow: 0 18px 45px rgba(124, 58, 237, .2);
}

.rw-person::before {
    content: "";
    position: absolute;
    top: -26px;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f7c99b;
}

.rw-person-one {
    left: 12%;
    bottom: 13%;
}

.rw-person-two {
    right: 12%;
    bottom: 18%;
    background: linear-gradient(180deg, #22c55e, #2563eb);
}

.rw-gear {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #7c3aed;
    border: 1px solid #e9eef7;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .09);
    font-size: 28px;
}

.rw-gear-one {
    left: 18%;
    top: 10%;
}

.rw-gear-two {
    right: 18%;
    top: 12%;
    color: #f97316;
}

/* ================================
   WORK / PORTFOLIO
================================ */

.rw-work-section {
    background: #f8fafc;
}

.rw-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.rw-filter-tabs button {
    border: 1px solid #dfe7f4;
    background: #ffffff;
    color: var(--rw-primary);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
}

.rw-filter-tabs button:first-child {
    background: var(--rw-primary);
    color: #ffffff;
}

.rw-project-card {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 58, .1);
}

.rw-project-thumb {
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
}

.rw-project-image {
    height: 128px;
    background: #f1f5f9;
    overflow: hidden;
}

.rw-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.rw-project-card:hover .rw-project-image img {
    transform: scale(1.06);
}

.rw-thumb-1 { background: linear-gradient(135deg, #071b3a, #2563eb); }
.rw-thumb-2 { background: linear-gradient(135deg, #f97316, #ec4899); }
.rw-thumb-3 { background: linear-gradient(135deg, #22c55e, #2563eb); }
.rw-thumb-4 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.rw-thumb-5 { background: linear-gradient(135deg, #06b6d4, #22c55e); }
.rw-thumb-6 { background: linear-gradient(135deg, #2563eb, #7c3aed); }

.rw-project-card h5 {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
    margin: 14px 14px 5px;
}

.rw-project-card p {
    color: var(--rw-muted);
    font-size: 12px;
    margin: 0 14px 16px;
}

/* ================================
   PROCESS
================================ */

.rw-process-section {
    background: #ffffff;
}

.rw-process-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 55px rgba(7, 27, 58, .05);
}

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

.rw-process-number {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rw-primary);
    font-size: 20px;
    font-weight: 900;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--rw-gradient) border-box;
    border: 3px solid transparent;
}

.rw-process-card h5 {
    color: var(--rw-primary);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}

.rw-process-card p {
    color: var(--rw-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.rw-process-arrow {
    color: #9aa8bd;
    font-size: 24px;
}


/* ======================================================
   HOME PROCESS SECTION FIX
====================================================== */

.rw-process-section {
  background: #ffffff;
}

.rw-process-box {
  margin-top: 46px;
  padding: 46px 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.07);
}

.rw-process-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.rw-process-card {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 8px 8px 12px;
}

.rw-process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #5b5cff, #ff4d8d, #22c55e) border-box;
  border: 4px solid transparent;
  color: #061638;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.rw-process-card h4 {
  margin: 0 0 10px;
  color: #061638;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.rw-process-card p {
  max-width: 215px;
  margin: 0 auto;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.rw-process-arrow {
  flex: 0 0 34px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 26px;
  margin-top: 0;
}

.rw-process-arrow i {
  line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .rw-process-box {
    padding: 32px 22px;
  }

  .rw-process-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rw-process-arrow {
    display: none;
  }

  .rw-process-card {
    padding: 24px 20px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
  }

  .rw-process-card p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .rw-process-box {
    margin-top: 34px;
    padding: 22px 14px;
    border-radius: 22px;
  }

  .rw-process-num {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .rw-process-card h4 {
    font-size: 16px;
  }

  .rw-process-card p {
    font-size: 14px;
  }
}
/* ================================
   INDUSTRIES + TESTIMONIAL
================================ */

.rw-bottom-info {
    background: #f8fafc;
    padding-top: 0;
}

.rw-panel {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 55px rgba(7, 27, 58, .05);
}

.rw-panel h3 {
    color: var(--rw-primary);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 24px;
}

.rw-industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 650;
    margin-bottom: 16px;
}

.rw-industry-item i {
    color: #2563eb;
}

.rw-testimonial > i {
    color: #2563eb;
    font-size: 42px;
    margin-bottom: 12px;
}

.rw-testimonial p {
    color: var(--rw-text);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 24px;
}

.rw-testimonial strong,
.rw-testimonial span {
    display: block;
}

.rw-testimonial strong {
    color: var(--rw-primary);
    font-weight: 900;
}

.rw-testimonial span {
    color: var(--rw-muted);
    font-size: 14px;
}

.rw-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.rw-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.rw-slider-dots span.active {
    width: 24px;
    border-radius: 20px;
    background: #2563eb;
}


/* ======================================================
   GOOGLE REVIEW DYNAMIC SECTION
====================================================== */

/* ======================================================
   GOOGLE REVIEW DYNAMIC SECTION
====================================================== */

.rw-google-review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.rw-google-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.rw-google-rating-box strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.rw-google-rating-box span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  font-size: 16px;
}

.rw-google-rating-box small {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.rw-google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.rw-google-review-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
}

.rw-review-card {
  height: 100%;
}

.rw-review-stars {
  color: #f59e0b;
}

.rw-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rw-review-user img,
.rw-review-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.rw-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4d6d, #7c3aed, #06b6d4);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.rw-review-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.rw-review-user-info a,
.rw-review-user-info strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.25;
}

.rw-review-user-info a:hover {
  color: #2563eb;
}

.rw-review-user-info span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .rw-google-rating-box {
    justify-content: center;
    border-radius: 20px;
  }

  .rw-google-review-link {
    width: 100%;
    justify-content: center;
  }
}

/* ======================================================
   GOOGLE REVIEW SECTION CLEAN FIX
====================================================== */

.rw-google-review-section {
  background:
    radial-gradient(circle at top left, rgba(90, 92, 255, 0.06), transparent 32%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.08), transparent 34%),
    #f8fafc;
}

.rw-google-review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.rw-google-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.rw-google-rating-box strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.rw-google-rating-box span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  font-size: 16px;
}

.rw-google-rating-box small {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.rw-google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.rw-google-review-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
}

.rw-google-dynamic-card {
  height: 100%;
  min-height: 330px;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.rw-google-dynamic-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4, #22c55e);
}

.rw-google-dynamic-card .rw-review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
}

.rw-google-dynamic-card p {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 24px;
  flex: 1;
}

.rw-google-dynamic-card .rw-review-user {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.rw-google-dynamic-card .rw-review-user img,
.rw-google-dynamic-card .rw-review-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.rw-google-dynamic-card .rw-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4d6d, #7c3aed, #06b6d4);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.rw-google-dynamic-card .rw-review-user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rw-google-dynamic-card .rw-review-user-info a,
.rw-google-dynamic-card .rw-review-user-info strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.25;
}

.rw-google-dynamic-card .rw-review-user-info a:hover {
  color: #2563eb;
}

.rw-google-dynamic-card .rw-review-user-info span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .rw-google-rating-box {
    justify-content: center;
    border-radius: 20px;
  }

  .rw-google-review-link {
    width: 100%;
    justify-content: center;
  }

  .rw-google-dynamic-card {
    min-height: auto;
    padding: 24px;
  }
}

/* ================================
   BLOG
================================ */

.rw-blog-section {
    background: #ffffff;
    padding-top: 0;
}

.rw-blog-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 58, .1);
}

.rw-blog-thumb {
    min-height: 165px;
    height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, .28), transparent 28%),
        var(--rw-gradient);
    color: #ffffff;
    font-size: 58px;
}

.rw-blog-image {
    height: 185px;
    min-height: 185px;
    background: #f1f5f9;
    overflow: hidden;
}

.rw-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.rw-blog-card:hover .rw-blog-image img {
    transform: scale(1.05);
}

.rw-blog-content {
    padding: 22px;
}

.rw-blog-content h4 {
    color: var(--rw-primary);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 14px;
}

.rw-blog-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--rw-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.rw-blog-content a {
    color: #2563eb;
    font-weight: 900;
    font-size: 14px;
}

/* ================================
   FINAL CTA
================================ */

.rw-final-cta {
    padding: 22px 0 36px;
    background: #ffffff;
}

.rw-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 34px;
    background:
        radial-gradient(circle at 88% 50%, rgba(34, 197, 94, .35), transparent 24%),
        linear-gradient(90deg, #7c3aed, #ec4899, #f97316, #22c55e);
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(124, 58, 237, .22);
}

.rw-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rw-cta-left img {
    width: 66px !important;
    height: 66px !important;
    max-width: 66px !important;
    max-height: 66px !important;
    object-fit: contain !important;
    background: #ffffff;
    border-radius: 50%;
    padding: 7px;
}

.rw-cta-left h2 {
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 8px;
}

.rw-cta-left p {
    margin: 0;
    opacity: .9;
}

.rw-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rw-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #ffffff;
    color: var(--rw-primary);
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(7, 27, 58, .12);
    transition: .25s ease;
}

.rw-cta-btn:hover {
    color: var(--rw-blue);
    transform: translateY(-2px);
}

.rw-cta-whatsapp {
    color: #ffffff;
    background: #25d366;
}

.rw-cta-whatsapp:hover {
    color: #ffffff;
}

/* ================================
   FOOTER
================================ */

.rw-footer {
    background: #071b3a;
    color: rgba(255, 255, 255, .78);
    padding: 64px 0 0;
}

.rw-footer .row {
    align-items: flex-start;
}

.rw-footer-brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    margin-bottom: 18px;
}

.rw-footer-brand img {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    object-fit: contain !important;
}

.rw-footer img {
    max-width: 60px !important;
}

.rw-footer-brand h5 {
    color: #ffffff;
    margin: 0;
    font-weight: 900;
}

.rw-footer p {
    line-height: 1.75;
}

.rw-footer h6 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 18px;
}

.rw-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rw-footer li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.rw-footer a {
    color: rgba(255, 255, 255, .78);
}

.rw-footer a:hover {
    color: #ffffff;
}

.rw-contact-list li {
    display: flex;
    gap: 10px;
}

.rw-contact-list i {
    color: #ffffff;
    margin-top: 4px;
}

.rw-social {
    display: flex;
    gap: 10px;
}

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

.rw-social a:hover {
    background: rgba(255, 255, 255, .1);
}

.rw-footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.rw-footer-bottom p {
    margin: 0;
}

/* ================================
   WHATSAPP FLOAT
================================ */

.rw-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    transition: .25s ease;
}

.rw-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* ================================
   BASIC INNER PAGE PLACEHOLDER
================================ */

.py-5 h1 {
    color: var(--rw-primary);
    font-weight: 900;
}

.py-5 p {
    color: var(--rw-muted);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1199px) {
    .rw-process-wrap {
        grid-template-columns: 1fr;
    }

    .rw-process-arrow {
        display: none;
    }

    .rw-process-card {
        border-bottom: 1px solid #eef2f7;
        padding-bottom: 20px;
    }

    .rw-process-card:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    .rw-header-right {
        align-items: flex-start;
        padding-top: 12px;
    }

    .rw-phone {
        display: none;
    }

    .rw-section {
        padding: 64px 0;
    }

    .rw-bottom-info,
    .rw-blog-section {
        padding-top: 0;
    }

    .rw-hero {
        padding: 46px 0 30px;
    }

    .rw-hero h1 {
        max-width: 100%;
        font-size: clamp(34px, 7vw, 46px);
    }

    .rw-hero p {
        max-width: 100%;
    }

    .rw-laptop-wrap {
        justify-content: center;
        min-height: auto;
    }

    .rw-laptop-card {
        max-width: 100%;
    }

    .rw-hero-floating-card {
        right: 12px;
        top: 18px;
    }

    .rw-stats {
        margin-top: 32px;
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-stats div:nth-child(2) {
        border-right: 0;
    }

    .rw-stats div:nth-child(1),
    .rw-stats div:nth-child(2) {
        border-bottom: 1px solid #eef2f7;
    }

    .rw-why-illustration {
        min-height: 360px;
    }

    .rw-final-cta-inner {
        align-items: flex-start;
    }

    .rw-cta-left {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .rw-hero h1 {
        font-size: 42px;
    }

    .rw-hero p {
        font-size: 16px;
    }

    .rw-hero-actions {
        width: 100%;
    }

    .rw-hero-actions .rw-btn {
        width: 100%;
        min-width: 100%;
    }

    .rw-final-cta-inner {
        text-align: left;
    }

    .rw-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .rw-brand img {
        width: 38px !important;
        height: 38px !important;
    }

    .rw-brand span {
        font-size: 17px;
    }

    .rw-header .navbar {
        padding: 10px 0;
    }

    .rw-section {
        padding: 52px 0;
    }

    .rw-hero {
        padding: 42px 0 30px;
    }

    .rw-hero h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .rw-laptop-card {
        max-width: 100%;
    }

    .rw-stats {
        grid-template-columns: 1fr;
    }

    .rw-stats div {
        border-right: 0;
        border-bottom: 1px solid #e9eef7;
    }

    .rw-stats div:last-child {
        border-bottom: 0;
    }

    .rw-about-photo,
    .rw-about-photo > img {
        min-height: 320px;
        height: 320px;
    }

    .rw-about-visual {
        min-height: 320px;
        padding: 20px;
    }

    .rw-info-box,
    .rw-service-card,
    .rw-panel {
        padding: 22px;
    }

    .rw-project-thumb,
    .rw-project-image {
        height: 105px;
    }

    .rw-blog-image {
        height: 165px;
        min-height: 165px;
    }

    .rw-cta-left {
        flex-direction: column;
    }

    .rw-cta-left img {
        width: 58px !important;
        height: 58px !important;
        max-width: 58px !important;
        max-height: 58px !important;
    }

    .rw-cta-actions,
    .rw-cta-btn {
        width: 100%;
    }

    .rw-final-cta-inner {
        padding: 26px;
    }

    .rw-why-illustration {
        min-height: 310px;
    }

    .rw-design-window {
        width: 78%;
        left: 11%;
    }

    .rw-person,
    .rw-gear {
        transform: scale(.8);
    }

    .rw-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 25px;
        right: 16px;
        bottom: 16px;
    }
}

/* ================================
   UPDATED PORTFOLIO GRID
================================ */

.rw-project-link {
    display: block;
    height: 100%;
    color: inherit;
}

.rw-project-link:hover {
    color: inherit;
}

.rw-project-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 58, .10);
}

.rw-project-image {
    height: 190px;
    background: #f1f5f9;
    overflow: hidden;
}

.rw-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.rw-project-card:hover .rw-project-image img {
    transform: scale(1.06);
}

.rw-project-body {
    padding: 16px 16px 18px;
}

.rw-project-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-project-card h5 {
    color: var(--rw-primary);
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 900;
}

.rw-project-card p {
    color: var(--rw-muted);
    margin: 0 0 14px;
    font-size: 13px;
}

.rw-project-view {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #071a3d;
    font-size: 13px;
    font-weight: 900;
}

.rw-project-card:hover .rw-project-view {
    color: #2563eb;
}

@media (max-width: 575px) {
    .rw-project-image {
        height: 165px;
    }
}


/* ================================
   ABOUT PAGE
================================ */

.rw-about-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 36px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-about-hero h1 {
    max-width: 620px;
    color: var(--rw-primary);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    font-weight: 900;
    margin-bottom: 20px;
}

.rw-about-hero h1 span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-about-hero p {
    max-width: 610px;
    color: #53627a;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 26px;
}

.rw-about-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rw-about-hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #e9eef7;
    box-shadow: 0 28px 80px rgba(7, 27, 58, .11);
    background: #f8fafc;
}

.rw-about-hero-image > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
}

.rw-about-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 26, 61, .02) 0%, rgba(7, 26, 61, .24) 100%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .22), transparent 25%);
    pointer-events: none;
}

.rw-about-hero-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(233, 238, 247, .95);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
    backdrop-filter: blur(12px);
}

.rw-about-hero-card img {
    width: 46px !important;
    height: 46px !important;
    object-fit: contain !important;
}

.rw-about-hero-card strong,
.rw-about-hero-card span {
    display: block;
}

.rw-about-hero-card strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
}

.rw-about-hero-card span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-about-stats {
    margin-top: 38px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e9eef7;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.rw-about-stats div {
    text-align: center;
    padding: 24px 18px;
    border-right: 1px solid #e9eef7;
}

.rw-about-stats div:last-child {
    border-right: 0;
}

.rw-about-stats strong {
    display: block;
    color: var(--rw-primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
}

.rw-about-stats span {
    display: block;
    color: var(--rw-muted);
    font-size: 13px;
    font-weight: 600;
}

.rw-about-intro {
    background: #ffffff;
}

.rw-about-photo-badge i {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 20px;
}

.rw-about-points {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rw-about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rw-primary);
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(7, 27, 58, .04);
}

.rw-about-points i {
    color: #2563eb;
}

.rw-about-values-section {
    background:
        radial-gradient(circle at 10% 18%, rgba(37, 99, 235, .06), transparent 26%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, .07), transparent 26%),
        #f8fafc;
}

.rw-about-value-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-about-value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 65px rgba(7, 27, 58, .10);
}

.rw-about-value-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--rw-gradient) border-box;
    border: 2px solid transparent;
    margin-bottom: 22px;
}

.rw-about-value-icon i {
    font-size: 30px;
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-about-value-card h4 {
    color: var(--rw-primary);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-about-value-card p {
    color: var(--rw-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.rw-mission-section {
    background: #ffffff;
}

.rw-mission-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
}

.rw-mission-card i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-size: 28px;
    margin-bottom: 20px;
}

.rw-mission-card h3 {
    color: var(--rw-primary);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.rw-mission-card p {
    color: var(--rw-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.rw-mission-card-dark {
    background:
        radial-gradient(circle at 85% 15%, rgba(34, 197, 94, .18), transparent 26%),
        linear-gradient(135deg, #071a3d, #0b2b57);
    color: #ffffff;
}

.rw-mission-card-dark h3,
.rw-mission-card-dark p {
    color: #ffffff;
}

.rw-mission-card-dark p {
    opacity: .82;
}

.rw-mission-card-dark i {
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
}

.rw-work-style-section {
    background: #f8fafc;
}

.rw-about-check-list {
    columns: 1;
}

.rw-work-style-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #e9eef7;
    box-shadow: 0 24px 70px rgba(7, 27, 58, .10);
    background: #f8fafc;
}

.rw-work-style-image > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
}

.rw-work-style-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7, 27, 58, .20));
    pointer-events: none;
}

.rw-work-style-floating {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(233, 238, 247, .95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
    backdrop-filter: blur(12px);
}

.rw-work-style-floating i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 22px;
}

.rw-work-style-floating strong,
.rw-work-style-floating span {
    display: block;
}

.rw-work-style-floating strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
}

.rw-work-style-floating span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-journey-section {
    background: #ffffff;
}

.rw-journey-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rw-journey-card {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    position: relative;
    overflow: hidden;
}

.rw-journey-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--rw-gradient);
}

.rw-journey-year {
    color: #2563eb;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.rw-journey-card h4 {
    color: var(--rw-primary);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-journey-card p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.rw-industries-about {
    background: #f8fafc;
}

.rw-industries-image {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e9eef7;
    box-shadow: 0 24px 70px rgba(7, 27, 58, .10);
}

.rw-industries-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.rw-about-industries-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rw-about-industries-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rw-primary);
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(7, 27, 58, .04);
}

.rw-about-industries-grid i {
    color: #2563eb;
}

.rw-about-cta {
    padding: 36px 0 70px;
    background: #ffffff;
}

.rw-about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 26px;
    padding: 38px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 50%, rgba(34, 197, 94, .35), transparent 24%),
        linear-gradient(90deg, #7c3aed, #ec4899, #f97316, #22c55e);
    box-shadow: 0 24px 70px rgba(124, 58, 237, .22);
}

.rw-about-cta .rw-kicker {
    color: #ffffff;
}

.rw-about-cta .rw-kicker::after {
    background: #ffffff;
}

.rw-about-cta h2 {
    max-width: 760px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-about-cta p {
    max-width: 680px;
    margin: 0;
    opacity: .9;
    line-height: 1.75;
}

.rw-about-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .rw-about-hero {
        padding: 48px 0 34px;
    }

    .rw-about-hero-image,
    .rw-about-hero-image > img,
    .rw-work-style-image,
    .rw-work-style-image > img {
        min-height: 360px;
        height: 360px;
    }

    .rw-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-about-stats div:nth-child(2) {
        border-right: 0;
    }

    .rw-about-stats div:nth-child(1),
    .rw-about-stats div:nth-child(2) {
        border-bottom: 1px solid #e9eef7;
    }

    .rw-journey-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .rw-about-hero h1 {
        font-size: 34px;
    }

    .rw-about-hero-actions .rw-btn,
    .rw-about-cta-actions,
    .rw-about-cta-actions .rw-btn {
        width: 100%;
    }

    .rw-about-hero-image,
    .rw-about-hero-image > img,
    .rw-work-style-image,
    .rw-work-style-image > img,
    .rw-industries-image img {
        min-height: 320px;
        height: 320px;
    }

    .rw-about-hero-card,
    .rw-work-style-floating {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .rw-about-stats {
        grid-template-columns: 1fr;
    }

    .rw-about-stats div {
        border-right: 0;
        border-bottom: 1px solid #e9eef7;
    }

    .rw-about-stats div:last-child {
        border-bottom: 0;
    }

    .rw-about-points,
    .rw-about-industries-grid {
        grid-template-columns: 1fr;
    }

    .rw-journey-wrap {
        grid-template-columns: 1fr;
    }

    .rw-about-cta-inner {
        padding: 28px;
    }
}


/* ================================
   SERVICES PAGE
================================ */

.rw-services-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 36px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-services-hero h1 {
    max-width: 630px;
    color: var(--rw-primary);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    font-weight: 900;
    margin-bottom: 20px;
}

.rw-services-hero h1 span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-services-hero p {
    max-width: 610px;
    color: #53627a;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 26px;
}

.rw-services-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rw-services-hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #e9eef7;
    box-shadow: 0 28px 80px rgba(7, 27, 58, .11);
    background: #f8fafc;
}

.rw-services-hero-image > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
}

.rw-services-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 26, 61, .02) 0%, rgba(7, 26, 61, .24) 100%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .22), transparent 25%);
    pointer-events: none;
}

.rw-services-hero-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(233, 238, 247, .95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
    backdrop-filter: blur(12px);
}

.rw-services-hero-card i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 22px;
}

.rw-services-hero-card strong,
.rw-services-hero-card span {
    display: block;
}

.rw-services-hero-card strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
}

.rw-services-hero-card span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-services-stats {
    margin-top: 38px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e9eef7;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.rw-services-stats div {
    text-align: center;
    padding: 24px 18px;
    border-right: 1px solid #e9eef7;
}

.rw-services-stats div:last-child {
    border-right: 0;
}

.rw-services-stats strong {
    display: block;
    color: var(--rw-primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
}

.rw-services-stats span {
    display: block;
    color: var(--rw-muted);
    font-size: 13px;
    font-weight: 600;
}

.rw-services-main {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-service-detail-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.rw-service-detail-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--rw-gradient);
    opacity: 0;
    transition: .25s ease;
}

.rw-service-detail-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 65px rgba(7, 27, 58, .10);
}

.rw-service-detail-card:hover::before {
    opacity: 1;
}

.rw-service-detail-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--rw-gradient) border-box;
    border: 2px solid transparent;
    margin-bottom: 20px;
}

.rw-service-detail-icon i {
    font-size: 28px;
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-service-detail-card h4 {
    color: var(--rw-primary);
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-service-detail-card p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.rw-service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rw-service-detail-card li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 9px;
}

.rw-service-detail-card li i {
    color: #2563eb;
    margin-top: 2px;
}

.rw-service-feature-section {
    background: #ffffff;
}

.rw-service-feature-image,
.rw-service-growth-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #e9eef7;
    box-shadow: 0 24px 70px rgba(7, 27, 58, .10);
    background: #f8fafc;
}

.rw-service-feature-image > img,
.rw-service-growth-image > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
}

.rw-service-feature-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rw-service-feature-grid div {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 38px rgba(7, 27, 58, .05);
}

.rw-service-feature-grid i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 14px;
}

.rw-service-feature-grid h5 {
    color: var(--rw-primary);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}

.rw-service-feature-grid p {
    color: var(--rw-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.rw-service-process-section {
    background: #f8fafc;
}

.rw-services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rw-services-process-card {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    position: relative;
    overflow: hidden;
}

.rw-services-process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--rw-gradient);
}

.rw-services-process-card span {
    display: inline-flex;
    color: #2563eb;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.rw-services-process-card h4 {
    color: var(--rw-primary);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-services-process-card p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.rw-service-plans-section {
    background: #ffffff;
}

.rw-service-plan-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
}

.rw-service-plan-card.is-featured {
    border-color: rgba(37, 99, 235, .25);
    box-shadow: 0 26px 70px rgba(37, 99, 235, .12);
    transform: translateY(-8px);
}

.rw-plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--rw-gradient);
    color: #ffffff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 900;
}

.rw-service-plan-card h3 {
    color: var(--rw-primary);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.rw-service-plan-card p {
    color: var(--rw-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.rw-service-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.rw-service-plan-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--rw-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rw-service-plan-card li i {
    color: #2563eb;
    margin-top: 2px;
}

.rw-service-growth-section {
    background: #f8fafc;
}

.rw-service-growth-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 27, 58, .18));
    pointer-events: none;
}

.rw-service-growth-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(233, 238, 247, .95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
    backdrop-filter: blur(12px);
}

.rw-service-growth-card i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 22px;
}

.rw-service-growth-card strong,
.rw-service-growth-card span {
    display: block;
}

.rw-service-growth-card strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
}

.rw-service-growth-card span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-service-faq-section {
    background: #ffffff;
}

.rw-service-faq-list {
    display: grid;
    gap: 16px;
}

.rw-service-faq-item {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 38px rgba(7, 27, 58, .05);
}

.rw-service-faq-item h4 {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--rw-primary);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-service-faq-item h4 i {
    color: #2563eb;
}

.rw-service-faq-item p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .rw-services-hero {
        padding: 48px 0 34px;
    }

    .rw-services-hero-image,
    .rw-services-hero-image > img,
    .rw-service-feature-image,
    .rw-service-feature-image > img,
    .rw-service-growth-image,
    .rw-service-growth-image > img {
        min-height: 360px;
        height: 360px;
    }

    .rw-services-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-services-stats div:nth-child(2) {
        border-right: 0;
    }

    .rw-services-stats div:nth-child(1),
    .rw-services-stats div:nth-child(2) {
        border-bottom: 1px solid #e9eef7;
    }

    .rw-services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-service-plan-card.is-featured {
        transform: none;
    }
}

@media (max-width: 575px) {
    .rw-services-hero h1 {
        font-size: 34px;
    }

    .rw-services-hero-actions .rw-btn {
        width: 100%;
    }

    .rw-services-hero-image,
    .rw-services-hero-image > img,
    .rw-service-feature-image,
    .rw-service-feature-image > img,
    .rw-service-growth-image,
    .rw-service-growth-image > img {
        min-height: 320px;
        height: 320px;
    }

    .rw-services-hero-card,
    .rw-service-growth-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .rw-services-stats {
        grid-template-columns: 1fr;
    }

    .rw-services-stats div {
        border-right: 0;
        border-bottom: 1px solid #e9eef7;
    }

    .rw-services-stats div:last-child {
        border-bottom: 0;
    }

    .rw-service-feature-grid,
    .rw-services-process-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   PORTFOLIO PAGE
================================ */

.rw-portfolio-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 36px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-portfolio-hero h1 {
    max-width: 720px;
    color: var(--rw-primary);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    font-weight: 900;
    margin-bottom: 20px;
}

.rw-portfolio-hero h1 span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-portfolio-hero p {
    max-width: 650px;
    color: #53627a;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 26px;
}

.rw-portfolio-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rw-portfolio-hero-card {
    position: relative;
    border-radius: 30px;
    padding: 18px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid #e9eef7;
    box-shadow: 0 28px 80px rgba(7, 27, 58, .11);
}

.rw-portfolio-screen {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e9eef7;
}

.rw-portfolio-screen-top {
    display: flex;
    gap: 7px;
    padding: 15px;
    border-bottom: 1px solid #edf1f7;
}

.rw-portfolio-screen-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d8dee9;
}

.rw-portfolio-screen-body {
    padding: 18px;
    background:
        radial-gradient(circle at 85% 12%, rgba(34, 197, 94, .12), transparent 28%),
        #f8fafc;
}

.rw-portfolio-screen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.rw-portfolio-screen-grid div {
    height: 115px;
    overflow: hidden;
    border-radius: 16px;
    background: #eef2f7;
    border: 1px solid #e9eef7;
}

.rw-portfolio-screen-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rw-portfolio-floating {
    position: absolute;
    left: 28px;
    bottom: -24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(233, 238, 247, .95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
    backdrop-filter: blur(12px);
}

.rw-portfolio-floating i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 22px;
}

.rw-portfolio-floating strong,
.rw-portfolio-floating span {
    display: block;
}

.rw-portfolio-floating strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
}

.rw-portfolio-floating span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-portfolio-stats {
    margin-top: 52px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e9eef7;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.rw-portfolio-stats div {
    text-align: center;
    padding: 24px 18px;
    border-right: 1px solid #e9eef7;
}

.rw-portfolio-stats div:last-child {
    border-right: 0;
}

.rw-portfolio-stats strong {
    display: block;
    color: var(--rw-primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
}

.rw-portfolio-stats span {
    display: block;
    color: var(--rw-muted);
    font-size: 13px;
    font-weight: 600;
}

.rw-portfolio-industries {
    background: #ffffff;
}

.rw-portfolio-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rw-portfolio-industry-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--rw-primary);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(7, 27, 58, .04);
}

.rw-portfolio-industry-grid i {
    color: #2563eb;
}

.rw-portfolio-grid-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-portfolio-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.rw-portfolio-card-link:hover {
    color: inherit;
}

.rw-portfolio-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-portfolio-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(7, 27, 58, .11);
}

.rw-portfolio-card-image {
    height: 230px;
    overflow: hidden;
    background: #f1f5f9;
}

.rw-portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.rw-portfolio-card:hover .rw-portfolio-card-image img {
    transform: scale(1.06);
}

.rw-portfolio-card-body {
    padding: 22px;
}

.rw-portfolio-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-portfolio-card h3 {
    color: var(--rw-primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.rw-portfolio-cat {
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.rw-portfolio-text {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.rw-portfolio-view {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 900;
}

.rw-portfolio-card:hover .rw-portfolio-view {
    color: #2563eb;
}

.rw-portfolio-process {
    background: #ffffff;
}

.rw-portfolio-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rw-portfolio-focus-grid div {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
}

.rw-portfolio-focus-grid i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    font-size: 24px;
    margin-bottom: 16px;
}

.rw-portfolio-focus-grid h4 {
    color: var(--rw-primary);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-portfolio-focus-grid p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .rw-portfolio-hero {
        padding: 48px 0 34px;
    }

    .rw-portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-portfolio-stats div:nth-child(2) {
        border-right: 0;
    }

    .rw-portfolio-stats div:nth-child(1),
    .rw-portfolio-stats div:nth-child(2) {
        border-bottom: 1px solid #e9eef7;
    }

    .rw-portfolio-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-portfolio-card-image {
        height: 210px;
    }
}

@media (max-width: 575px) {
    .rw-portfolio-hero h1 {
        font-size: 34px;
    }

    .rw-portfolio-hero-actions .rw-btn {
        width: 100%;
    }

    .rw-portfolio-screen-grid div {
        height: 90px;
    }

    .rw-portfolio-floating {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
    }

    .rw-portfolio-stats {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .rw-portfolio-stats div {
        border-right: 0;
        border-bottom: 1px solid #e9eef7;
    }

    .rw-portfolio-stats div:last-child {
        border-bottom: 0;
    }

    .rw-portfolio-industry-grid,
    .rw-portfolio-focus-grid {
        grid-template-columns: 1fr;
    }

    .rw-portfolio-card-image {
        height: 190px;
    }
}



/* ================================
   CONTACT PAGE
================================ */

.rw-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 36px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-contact-hero h1 {
    max-width: 630px;
    color: var(--rw-primary);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    font-weight: 900;
    margin-bottom: 20px;
}

.rw-contact-hero h1 span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-contact-hero p {
    max-width: 610px;
    color: #53627a;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 26px;
}

.rw-contact-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rw-contact-hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #e9eef7;
    box-shadow: 0 28px 80px rgba(7, 27, 58, .11);
    background: #f8fafc;
}

.rw-contact-hero-image > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
}

.rw-contact-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 26, 61, .02) 0%, rgba(7, 26, 61, .24) 100%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .22), transparent 25%);
    pointer-events: none;
}

.rw-contact-hero-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(233, 238, 247, .95);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .14);
    backdrop-filter: blur(12px);
}

.rw-contact-hero-card i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 22px;
}

.rw-contact-hero-card strong,
.rw-contact-hero-card span {
    display: block;
}

.rw-contact-hero-card strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
}

.rw-contact-hero-card span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

.rw-contact-cards {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rw-contact-cards a {
    color: inherit;
}

.rw-contact-cards div {
    height: 100%;
    background: rgba(255, 255, 255, .95);
    border: 1px solid #e9eef7;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
    transition: .25s ease;
}

.rw-contact-cards div:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(7, 27, 58, .10);
}

.rw-contact-cards i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--rw-gradient) border-box;
    border: 2px solid transparent;
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 16px;
}

.rw-contact-cards strong,
.rw-contact-cards span {
    display: block;
}

.rw-contact-cards strong {
    color: var(--rw-primary);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.rw-contact-cards span {
    color: var(--rw-muted);
    font-size: 13px;
    font-weight: 600;
}

.rw-contact-main {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-contact-form-card,
.rw-contact-info-panel {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 55px rgba(7, 27, 58, .06);
}

.rw-contact-form-card h2 {
    color: var(--rw-primary);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-contact-form-card p,
.rw-contact-info-panel p {
    color: var(--rw-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.rw-contact-form label {
    display: block;
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.rw-contact-form input,
.rw-contact-form select,
.rw-contact-form textarea {
    width: 100%;
    border: 1px solid #dfe7f4;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 15px;
    color: var(--rw-primary);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: .22s ease;
}

.rw-contact-form input:focus,
.rw-contact-form select:focus,
.rw-contact-form textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

.rw-contact-form textarea {
    resize: vertical;
}

.rw-form-alert {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.rw-form-success {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.rw-form-error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.rw-contact-info-panel h3 {
    color: var(--rw-primary);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-contact-info-list {
    display: grid;
    gap: 16px;
}

.rw-contact-info-list > div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid #e9eef7;
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
}

.rw-contact-info-list i {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 21px;
}

.rw-contact-info-list strong,
.rw-contact-info-list span,
.rw-contact-info-list a {
    display: block;
}

.rw-contact-info-list strong {
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 5px;
}

.rw-contact-info-list span,
.rw-contact-info-list a {
    color: var(--rw-muted);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;
}

.rw-contact-info-list a:hover {
    color: #2563eb;
}

.rw-contact-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.rw-contact-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rw-primary);
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 50%;
    transition: .25s ease;
}

.rw-contact-social a:hover {
    color: #ffffff;
    background: var(--rw-primary);
}

.rw-contact-whatsapp-box {
    margin-top: 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    border-radius: 22px;
    padding: 22px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(37, 211, 102, .25);
}

.rw-contact-whatsapp-box > i {
    font-size: 34px;
}

.rw-contact-whatsapp-box strong,
.rw-contact-whatsapp-box span {
    display: block;
}

.rw-contact-whatsapp-box strong {
    font-size: 16px;
    font-weight: 900;
}

.rw-contact-whatsapp-box span {
    font-size: 13px;
    opacity: .92;
}

.rw-contact-whatsapp-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #16a34a;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 900;
}

.rw-contact-map-section {
    padding: 82px 0;
    background: #ffffff;
}

.rw-contact-map {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #e9eef7;
    box-shadow: 0 24px 70px rgba(7, 27, 58, .08);
}

.rw-contact-map iframe {
    display: block;
}

@media (max-width: 991px) {
    .rw-contact-hero {
        padding: 48px 0 34px;
    }

    .rw-contact-hero-image,
    .rw-contact-hero-image > img {
        min-height: 360px;
        height: 360px;
    }

    .rw-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .rw-contact-whatsapp-box {
        grid-template-columns: auto 1fr;
    }

    .rw-contact-whatsapp-box a {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .rw-contact-hero h1 {
        font-size: 34px;
    }

    .rw-contact-hero-actions .rw-btn {
        width: 100%;
    }

    .rw-contact-hero-image,
    .rw-contact-hero-image > img {
        min-height: 320px;
        height: 320px;
    }

    .rw-contact-hero-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .rw-contact-cards {
        grid-template-columns: 1fr;
    }

    .rw-contact-form-card,
    .rw-contact-info-panel {
        padding: 24px;
    }

    .rw-contact-map-section {
        padding: 58px 0;
    }
}



/* ================================
   GOOGLE REVIEWS SECTION
================================ */

.rw-google-review-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-google-review-box {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 65px rgba(7, 27, 58, .07);
}

.rw-google-rating-card {
    height: 100%;
    border-radius: 24px;
    padding: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(34, 197, 94, .14), transparent 28%),
        linear-gradient(135deg, #071a3d, #0b2b57);
    color: #ffffff;
}

.rw-google-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.rw-google-logo > span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #2563eb;
    font-size: 30px;
    font-weight: 900;
    font-family: Arial, sans-serif;
}

.rw-google-logo strong,
.rw-google-logo small {
    display: block;
}

.rw-google-logo strong {
    font-size: 18px;
    font-weight: 900;
}

.rw-google-logo small {
    opacity: .78;
    font-size: 13px;
    font-weight: 600;
}

.rw-google-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.rw-google-score > strong {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
}

.rw-stars,
.rw-review-stars {
    display: flex;
    gap: 3px;
    color: #fbbc04;
}

.rw-google-score span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    opacity: .78;
    font-weight: 600;
}

.rw-google-rating-card p {
    font-size: 15px;
    line-height: 1.75;
    opacity: .86;
    margin-bottom: 24px;
}

.rw-google-review-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 38px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-google-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 27, 58, .10);
}

.rw-google-review-card p {
    color: var(--rw-primary);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
    margin: 16px 0 22px;
}

.rw-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-review-user > div {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.rw-review-user span,
.rw-review-user strong,
.rw-review-user small {
    display: block;
}

.rw-review-user strong {
    color: var(--rw-primary);
    font-size: 14px;
    font-weight: 900;
}

.rw-review-user small {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .rw-google-review-box {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .rw-google-review-box {
        padding: 18px;
        border-radius: 22px;
    }

    .rw-google-rating-card {
        padding: 24px;
    }

    .rw-google-score > strong {
        font-size: 42px;
    }
}

.rw-review-user > img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.rw-google-empty {
    height: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 22px;
    padding: 32px;
}

.rw-google-empty i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #2563eb;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 12px 32px rgba(7, 27, 58, .06);
}

.rw-google-empty h4 {
    color: var(--rw-primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rw-google-empty p {
    max-width: 520px;
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ================================
   GOOGLE REVIEWS FIX
================================ */

.rw-google-review-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-google-review-box {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 22px 65px rgba(7, 27, 58, .07);
}

.rw-google-rating-card {
    height: 100%;
    min-height: 330px;
    border-radius: 24px;
    padding: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(34, 197, 94, .14), transparent 28%),
        linear-gradient(135deg, #071a3d, #0b2b57);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rw-google-review-card {
    height: 100%;
    min-height: 330px;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 38px rgba(7, 27, 58, .05);
    transition: .25s ease;
    display: flex;
    flex-direction: column;
}

.rw-google-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 27, 58, .10);
}

.rw-google-review-card p {
    color: var(--rw-primary);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
    margin: 16px 0 22px;

    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rw-review-user {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-review-user > img,
.rw-review-user > div {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
}

.rw-review-user > img {
    object-fit: cover;
    display: block;
}

.rw-review-user > div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.rw-review-user strong {
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: none;
}

.rw-review-user small {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .rw-google-rating-card,
    .rw-google-review-card {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .rw-google-review-box {
        padding: 18px;
        border-radius: 22px;
    }

    .rw-google-rating-card,
    .rw-google-review-card {
        padding: 22px;
    }
}


/* ================================
   FRONTEND BLOG SYSTEM
================================ */

.rw-blog-list-hero {
    padding: 72px 0 44px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-blog-list-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.rw-blog-list-hero h1 {
    color: var(--rw-primary);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    font-weight: 900;
    margin-bottom: 20px;
}

.rw-blog-list-hero h1 span {
    background: var(--rw-rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rw-blog-list-hero p {
    color: #53627a;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
    margin: 0 auto;
    max-width: 720px;
}

.rw-blog-list-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-blog-list-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    transition: .25s ease;
}

.rw-blog-list-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(7, 27, 58, .10);
}

.rw-blog-list-image {
    display: block;
    height: 230px;
    overflow: hidden;
    background: #eef2f7;
}

.rw-blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.rw-blog-list-card:hover .rw-blog-list-image img {
    transform: scale(1.06);
}

.rw-blog-list-content {
    padding: 24px;
}

.rw-blog-list-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.rw-blog-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.rw-blog-list-content h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
}

.rw-blog-list-content h2 a {
    color: var(--rw-primary);
}

.rw-blog-list-content h2 a:hover {
    color: #2563eb;
}

.rw-blog-list-content p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.rw-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 900;
}

.rw-blog-readmore:hover {
    color: #2563eb;
}

.rw-blog-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.rw-blog-empty {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 24px;
    padding: 60px 24px;
}

.rw-blog-empty i {
    font-size: 52px;
    color: #2563eb;
}

.rw-blog-empty h3 {
    margin: 16px 0 8px;
    color: var(--rw-primary);
    font-weight: 900;
}

.rw-blog-empty p {
    color: var(--rw-muted);
}

/* Blog Detail */

.rw-blog-detail-hero {
    padding: 60px 0 36px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-blog-detail-head {
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

.rw-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 22px;
}

.rw-blog-detail-head h1 {
    color: var(--rw-primary);
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 900;
    margin-bottom: 18px;
}

.rw-blog-detail-head > p {
    color: #53627a;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto 22px;
}

.rw-blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rw-blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e9eef7;
    color: var(--rw-muted);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
}

.rw-blog-detail-section {
    padding: 70px 0;
    background: #f8fafc;
}

.rw-blog-detail-card {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 65px rgba(7, 27, 58, .07);
}

.rw-blog-detail-cover {
    height: 420px;
    overflow: hidden;
    background: #eef2f7;
}

.rw-blog-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rw-blog-detail-content {
    padding: 38px;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.9;
}

.rw-blog-detail-content h2 {
    color: var(--rw-primary);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
    margin: 34px 0 16px;
}

.rw-blog-detail-content h3 {
    color: var(--rw-primary);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 900;
    margin: 28px 0 14px;
}

.rw-blog-detail-content p {
    margin-bottom: 18px;
}

.rw-blog-detail-content ul,
.rw-blog-detail-content ol {
    margin-bottom: 22px;
    padding-left: 22px;
}

.rw-blog-detail-content li {
    margin-bottom: 8px;
}

.rw-blog-detail-content a {
    color: #2563eb;
    font-weight: 800;
}

.rw-blog-detail-content blockquote {
    border-left: 4px solid #2563eb;
    background: #f8fafc;
    padding: 18px 22px;
    border-radius: 14px;
    color: var(--rw-primary);
    font-weight: 700;
}

.rw-blog-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

.rw-blog-side-card {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
}

.rw-blog-side-card h3 {
    color: var(--rw-primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.rw-blog-side-card p {
    color: var(--rw-muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.rw-related-blogs {
    display: grid;
    gap: 14px;
}

.rw-related-blogs a {
    display: block;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 14px;
}

.rw-related-blogs a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.rw-related-blogs strong,
.rw-related-blogs span {
    display: block;
}

.rw-related-blogs strong {
    color: var(--rw-primary);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
    margin-bottom: 5px;
}

.rw-related-blogs span {
    color: var(--rw-muted);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .rw-blog-detail-cover {
        height: 340px;
    }

    .rw-blog-sidebar {
        position: static;
    }
}

@media (max-width: 575px) {
    .rw-blog-list-hero h1,
    .rw-blog-detail-head h1 {
        font-size: 34px;
    }

    .rw-blog-list-image {
        height: 200px;
    }

    .rw-blog-detail-cover {
        height: 240px;
    }

    .rw-blog-detail-content {
        padding: 24px;
    }

    .rw-blog-detail-content h2 {
        font-size: 25px;
    }

    .rw-blog-detail-content h3 {
        font-size: 21px;
    }
}

/* ================================
   FRONTEND BLOG PAGINATION
================================ */

.rw-blog-pagination {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.rw-frontend-pager ul {
    list-style: none;
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
}

.rw-frontend-pager li {
    margin: 0;
    padding: 0;
}

.rw-frontend-pager a {
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border-radius: 13px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #071a3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 900;
    transition: .22s ease;
}

.rw-frontend-pager a:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--rw-gradient);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, .18);
}

.rw-frontend-pager a.active {
    color: #ffffff;
    border-color: transparent;
    background: var(--rw-gradient);
    box-shadow: 0 14px 32px rgba(37, 99, 235, .18);
}

.rw-frontend-pager i {
    font-size: 13px;
}

@media (max-width: 575px) {
    .rw-frontend-pager ul {
        padding: 8px;
        gap: 6px;
    }

    .rw-frontend-pager a {
        min-width: 36px;
        height: 36px;
        padding: 0 11px;
        font-size: 12px;
    }

    .rw-frontend-pager a span {
        display: none;
    }
}

/* ================================
   BLOG SEARCH / CATEGORY / TAG UI
================================ */

.rw-blog-search-form {
    max-width: 760px;
    margin: 30px auto 0;
    display: flex;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(7, 27, 58, .06);
}

.rw-blog-search-form input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--rw-primary);
    font-size: 15px;
    font-weight: 700;
    padding: 0 12px;
}

.rw-blog-search-form button {
    border: 0;
    border-radius: 13px;
    padding: 13px 20px;
    background: var(--rw-gradient);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rw-blog-filter-section {
    padding: 28px 0 0;
    background: #f8fafc;
}

.rw-blog-filter-box {
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 16px 42px rgba(7, 27, 58, .05);
    display: grid;
    gap: 16px;
}

.rw-blog-filter-left,
.rw-blog-filter-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rw-blog-filter-left strong,
.rw-blog-filter-tags strong {
    color: var(--rw-primary);
    font-size: 14px;
    font-weight: 900;
}

.rw-blog-filter-left a,
.rw-blog-filter-tags a,
.rw-blog-detail-taxonomy a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 8px 13px;
    background: #f8fafc;
    border: 1px solid #e9eef7;
    color: var(--rw-primary);
    font-size: 13px;
    font-weight: 800;
    transition: .22s ease;
}

.rw-blog-filter-left a:hover,
.rw-blog-filter-left a.active,
.rw-blog-filter-tags a:hover,
.rw-blog-filter-tags a.active,
.rw-blog-detail-taxonomy a:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--rw-gradient);
}

.rw-blog-list-meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: #2563eb;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.rw-blog-detail-taxonomy {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rw-blog-card h4 a {
    color: var(--rw-primary);
}

.rw-blog-card h4 a:hover {
    color: #2563eb;
}

.rw-blog-thumb {
    display: block;
}

@media (max-width: 575px) {
    .rw-blog-search-form {
        flex-direction: column;
    }

    .rw-blog-search-form input {
        min-height: 44px;
    }

    .rw-blog-search-form button {
        justify-content: center;
    }
}


/* ================================
   PRIVACY POLICY / TERMS PAGE
================================ */

.rw-policy-hero {
    padding: 70px 0 42px;
    background:
        radial-gradient(circle at 88% 22%, rgba(34, 197, 94, .14), transparent 28%),
        radial-gradient(circle at 80% 58%, rgba(236, 72, 153, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rw-policy-hero-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.rw-policy-hero h1 {
    color: var(--rw-primary);
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 900;
    margin-bottom: 18px;
}

.rw-policy-hero p {
    max-width: 720px;
    margin: 0 auto 18px;
    color: #53627a;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.rw-policy-hero span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #e9eef7;
    color: var(--rw-muted);
    font-size: 13px;
    font-weight: 800;
}

.rw-policy-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .06), transparent 25%),
        radial-gradient(circle at 90% 85%, rgba(34, 197, 94, .07), transparent 25%),
        #f8fafc;
}

.rw-policy-card {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 26px;
    box-shadow: 0 22px 65px rgba(7, 27, 58, .07);
    overflow: hidden;
}

.rw-policy-content {
    padding: 42px;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.85;
}

.rw-policy-content h2 {
    color: var(--rw-primary);
    font-size: 25px;
    line-height: 1.25;
    font-weight: 900;
    margin: 32px 0 12px;
}

.rw-policy-content h2:first-child {
    margin-top: 0;
}

.rw-policy-content p {
    margin-bottom: 16px;
}

.rw-policy-content ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.rw-policy-content li {
    margin-bottom: 8px;
}

.rw-policy-content a {
    color: #2563eb;
    font-weight: 800;
}

.rw-policy-contact {
    margin-top: 22px;
    padding: 22px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e9eef7;
}

.rw-policy-contact p {
    margin-bottom: 8px;
}

.rw-policy-contact p:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .rw-policy-hero {
        padding: 52px 0 34px;
    }

    .rw-policy-hero h1 {
        font-size: 34px;
    }

    .rw-policy-section {
        padding: 50px 0;
    }

    .rw-policy-content {
        padding: 26px;
        font-size: 15px;
    }

    .rw-policy-content h2 {
        font-size: 22px;
    }
}


/* ======================================================
   LEGAL PAGES - PRIVACY POLICY / TERMS CONDITIONS
====================================================== */

.rw-legal-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 84, 112, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(72, 126, 255, 0.08), transparent 34%),
    #f8fafc;
}

.rw-legal-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 54px 58px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.rw-legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4, #22c55e);
}

.rw-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.rw-legal-card h2 {
  margin: 34px 0 12px;
  color: #0f172a;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rw-legal-card h2:first-of-type {
  margin-top: 10px;
}

.rw-legal-card p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.85;
}

.rw-legal-card ul {
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}

.rw-legal-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.rw-legal-card ul li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: #16a34a;
  font-size: 17px;
}

.rw-legal-card a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.rw-legal-card a:hover {
  color: #7c3aed;
  text-decoration: underline;
}

.rw-legal-card strong {
  color: #0f172a;
  font-weight: 800;
}

/* Legal page hero slight enhancement */
.rw-blog-list-hero .rw-blog-list-hero-inner h1 span {
  background: linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ======================================================
   RESPONSIVE LEGAL PAGES
====================================================== */

@media (max-width: 991px) {
  .rw-legal-section {
    padding: 70px 0;
  }

  .rw-legal-card {
    padding: 44px 34px;
    border-radius: 24px;
  }

  .rw-legal-card h2 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .rw-legal-section {
    padding: 54px 0;
  }

  .rw-legal-card {
    padding: 36px 22px;
    border-radius: 20px;
  }

  .rw-legal-card h2 {
    font-size: 20px;
  }

  .rw-legal-card p,
  .rw-legal-card ul li {
    font-size: 15px;
  }

  .rw-legal-updated {
    font-size: 13px;
    padding: 9px 13px;
  }
}



/* ======================================================
   CUSTOM 404 PAGE
====================================================== */

.rw-not-found-section {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 77, 109, 0.1), transparent 34%),
    radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.rw-not-found-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(34, 197, 94, 0.1));
  top: -180px;
  right: -160px;
  filter: blur(4px);
}

.rw-not-found-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 56px;
  text-align: center;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 35px 100px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.rw-not-found-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 7px;
  width: 100%;
  background: linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4, #22c55e);
}

.rw-not-found-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #ff4d6d, #7c3aed, #06b6d4, #22c55e) border-box;
  border: 5px solid transparent;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.rw-not-found-icon span {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rw-not-found-card h1 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.05em;
}

.rw-not-found-card h1 span {
  background: linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rw-not-found-card p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
}

.rw-not-found-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.rw-not-found-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.rw-not-found-links a {
  color: #475569;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  padding: 9px 15px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.rw-not-found-links a:hover {
  color: #ffffff;
  background: #0f172a;
  transform: translateY(-2px);
}


/* ======================================================
   RESPONSIVE 404 PAGE
====================================================== */

@media (max-width: 767px) {
  .rw-not-found-section {
    padding: 80px 0;
  }

  .rw-not-found-card {
    padding: 54px 24px;
    border-radius: 26px;
  }

  .rw-not-found-icon {
    width: 120px;
    height: 120px;
  }

  .rw-not-found-icon span {
    font-size: 34px;
  }

  .rw-not-found-card p {
    font-size: 15.5px;
  }
}

/* ======================================================
   GOOGLE REVIEW AUTHOR FIX
====================================================== */

.rw-google-dynamic-card .rw-google-review-user {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Reset old review-user div style */
.rw-google-dynamic-card .rw-google-review-user > div {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  display: block !important;
}

.rw-google-dynamic-card .rw-google-review-avatar-wrap {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f1f5f9 !important;
}

.rw-google-dynamic-card .rw-google-review-photo {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.rw-google-dynamic-card .rw-google-review-avatar {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #ff4d6d, #7c3aed, #06b6d4) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.rw-google-dynamic-card .rw-google-review-user-info {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  background: transparent !important;
}

.rw-google-dynamic-card .rw-google-review-user-info a,
.rw-google-dynamic-card .rw-google-review-user-info strong {
  color: #0f172a !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  word-break: break-word !important;
}

.rw-google-dynamic-card .rw-google-review-user-info a:hover {
  color: #2563eb !important;
}

.rw-google-dynamic-card .rw-google-review-user-info span {
  color: #94a3b8 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}



/* ======================================================
   TEMPORARY BLOG IMAGES DISABLE
   Remove this block when blog images are needed again
====================================================== */

/* Home page blog images */
.rw-blog-card .rw-blog-image,
.rw-blog-card .rw-blog-thumb {
  display: none !important;
}

/* Blog listing / category / tag images */
.rw-blog-list-image {
  display: none !important;
}

/* Single blog detail cover image */
.rw-blog-detail-cover {
  display: none !important;
}

/* Make blog cards look clean without image */
.rw-blog-card,
.rw-blog-list-card {
  overflow: hidden;
  border-top: 5px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4, #22c55e) border-box;
}

/* Add better spacing because image is hidden */
.rw-blog-card .rw-blog-content,
.rw-blog-list-card .rw-blog-list-content {
  padding-top: 28px !important;
}

/* Single blog page content spacing */
.rw-blog-detail-card {
  border-top: 5px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #ff4d6d, #7c3aed, #06b6d4, #22c55e) border-box;
}

.rw-blog-detail-content {
  padding-top: 36px !important;
}