/* =========================================================
   RenWebTech Company Profile CSS
   Prefix: renweb-
   Theme: Premium Clean Tech
   ========================================================= */

:root {
    /* Core Brand */
    --renweb-bg: #ffffff;
    --renweb-bg-soft: #f3f4f6;
    --renweb-bg-section: #f8fafc;
    --renweb-surface: #ffffff;

    --renweb-primary: #770084;
    --renweb-primary-dark: #52005b;
    --renweb-primary-soft: #f8eafd;

    --renweb-secondary: #0718c4;
    --renweb-secondary-dark: #04108a;
    --renweb-secondary-soft: #eef2ff;

    --renweb-ink: #1f2937;
    --renweb-muted: #6b7280;
    --renweb-line: #d1d5db;
    --renweb-line-soft: rgba(31, 41, 55, 0.1);

    /* Premium Effects */
    --renweb-gradient-brand: linear-gradient(90deg, #770084 0%, #0718c4 100%);
    --renweb-gradient-soft: linear-gradient(135deg, rgba(119, 0, 132, 0.08), rgba(7, 24, 196, 0.08));
    --renweb-gradient-hero: radial-gradient(circle at top left, rgba(119, 0, 132, 0.14), transparent 34%),
                            radial-gradient(circle at top right, rgba(7, 24, 196, 0.14), transparent 34%),
                            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    --renweb-shadow-sm: 0 8px 20px rgba(31, 41, 55, 0.06);
    --renweb-shadow-md: 0 18px 45px rgba(31, 41, 55, 0.1);
    --renweb-shadow-lg: 0 28px 80px rgba(31, 41, 55, 0.14);

    --renweb-radius-sm: 10px;
    --renweb-radius-md: 16px;
    --renweb-radius-lg: 24px;
    --renweb-radius-xl: 32px;
    --renweb-radius-full: 999px;

    --renweb-container: 1180px;
    --renweb-header-height: 82px;

    --renweb-font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --renweb-font-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

/* =========================================================
   Scope Base
   ========================================================= */

.renweb-page,
.renweb-page * {
    box-sizing: border-box;
}

.renweb-page {
    min-height: 100vh;
    background: var(--renweb-bg);
    color: var(--renweb-ink);
    font-family: var(--renweb-font-main);
    overflow-x: hidden;
}

.renweb-page a {
    /* color: inherit; */
    text-decoration: none;
}

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

.renweb-container {
    width: min(100% - 32px, var(--renweb-container));
    margin-inline: auto;
}

.renweb-section {
    padding: 96px 0;
    position: relative;
}

.renweb-section-soft {
    background: var(--renweb-bg-section);
}

.renweb-section-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.renweb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(119, 0, 132, 0.14);
    border-radius: var(--renweb-radius-full);
    background: var(--renweb-primary-soft);
    color: var(--renweb-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.renweb-title {
    margin: 0;
    color: var(--renweb-ink);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.renweb-title span {
    background: var(--renweb-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.renweb-subtitle {
    margin: 18px 0 0;
    color: var(--renweb-muted);
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   Navbar
   ========================================================= */

.renweb-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--renweb-header-height);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--renweb-line-soft);
}

.renweb-navbar-inner {
    min-height: var(--renweb-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.renweb-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.renweb-brand-logo {
    width: 148px;
    height: auto;
}

.renweb-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.renweb-brand-name {
    color: var(--renweb-ink);
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.renweb-brand-tagline {
    margin-top: 4px;
    color: var(--renweb-muted);
    font-size: 11px;
    font-weight: 600;
}

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

.renweb-nav-link {
    color: var(--renweb-muted);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.renweb-nav-link:hover {
    color: var(--renweb-primary);
}

/* =========================================================
   Buttons
   ========================================================= */

.renweb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--renweb-radius-full);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.renweb-btn-primary {
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(119, 0, 132, 0.24);
}

.renweb-btn-primary:hover {
    box-shadow: 0 18px 42px rgba(7, 24, 196, 0.22);
}

.renweb-btn-outline {
    background: #ffffff;
    color: var(--renweb-ink);
    border-color: var(--renweb-line);
    box-shadow: var(--renweb-shadow-sm);
}

.renweb-btn-outline:hover {
    color: var(--renweb-primary);
    border-color: rgba(119, 0, 132, 0.28);
}

.renweb-btn-ghost {
    background: transparent;
    color: var(--renweb-primary);

}

/* =========================================================
   Hero
   ========================================================= */

.renweb-hero {
    position: relative;
    padding: 104px 0 88px;
    background: var(--renweb-gradient-hero);
    overflow: hidden;
}

.renweb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(119, 0, 132, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 24, 196, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 74%);
    pointer-events: none;
}

.renweb-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 56px;
}

.renweb-hero-content {
    max-width: 680px;
}

.renweb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(119, 0, 132, 0.16);
    border-radius: var(--renweb-radius-full);
    background: rgba(255, 255, 255, 0.76);
    color: var(--renweb-primary);
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--renweb-shadow-sm);
}

.renweb-hero-title {
    margin: 0;
    color: var(--renweb-ink);
    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.renweb-hero-title span {
    background: var(--renweb-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.renweb-hero-subtitle {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--renweb-muted);
    font-size: 18px;
    line-height: 1.8;
}

.renweb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.renweb-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.renweb-stat-card {
    min-width: 148px;
    padding: 18px;
    border: 1px solid var(--renweb-line-soft);
    border-radius: var(--renweb-radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--renweb-shadow-sm);
}

.renweb-stat-number {
    color: var(--renweb-ink);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.renweb-stat-label {
    margin-top: 6px;
    color: var(--renweb-muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Mas Tech Visual Area */

.renweb-hero-visual {
    position: relative;
}

.renweb-mas-tech-card {
    position: relative;
    min-height: 520px;
    padding: 34px;
    border: 1px solid rgba(119, 0, 132, 0.12);
    border-radius: 40px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--renweb-gradient-brand) border-box;
    box-shadow: var(--renweb-shadow-lg);
    overflow: hidden;
}

.renweb-mas-tech-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(119, 0, 132, 0.1);
}

.renweb-mas-tech-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -110px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(7, 24, 196, 0.1);
}

.renweb-mas-tech {
    position: relative;
    z-index: 2;
    width: min(420px, 86%);
    margin: 28px auto 0;
    filter: drop-shadow(0 24px 34px rgba(31, 41, 55, 0.18));
}

.renweb-floating-panel {
    position: absolute;
    z-index: 3;
    padding: 14px 16px;
    border: 1px solid var(--renweb-line-soft);
    border-radius: var(--renweb-radius-lg);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: var(--renweb-shadow-md);
}

.renweb-floating-panel strong {
    display: block;
    color: var(--renweb-ink);
    font-size: 14px;
    font-weight: 900;
}

.renweb-floating-panel span {
    display: block;
    margin-top: 4px;
    color: var(--renweb-muted);
    font-size: 12px;
}

.renweb-panel-top {
    top: 34px;
    left: 28px;
}

.renweb-panel-bottom {
    right: 28px;
    bottom: 34px;
}

/* =========================================================
   Brand Divider
   ========================================================= */

.renweb-brand-line {
    height: 4px;
    width: 100%;
    background: var(--renweb-gradient-brand);
}

.renweb-brand-line-thin {
    height: 2px;
    width: 100%;
    background: var(--renweb-gradient-brand);
}

/* =========================================================
   Cards & Grids
   ========================================================= */

.renweb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.renweb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.renweb-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--renweb-line-soft);
    border-radius: var(--renweb-radius-xl);
    background: var(--renweb-surface);
    box-shadow: var(--renweb-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.renweb-card:hover {
    transform: translateY(-6px);
    border-color: rgba(119, 0, 132, 0.18);
    box-shadow: var(--renweb-shadow-md);
}

.renweb-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--renweb-gradient-brand);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.renweb-card:hover::before {
    opacity: 1;
}

.renweb-icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: var(--renweb-gradient-soft);
    color: var(--renweb-primary);
    font-size: 24px;
}

.renweb-card-title {
    margin: 0;
    color: var(--renweb-ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.renweb-card-text {
    margin: 12px 0 0;
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   Feature List
   ========================================================= */

.renweb-feature-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.renweb-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.65;
}

.renweb-feature-list li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--renweb-gradient-brand);
}

/* =========================================================
   Process
   ========================================================= */

.renweb-process {
    display: grid;
    gap: 18px;
}

.renweb-process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid var(--renweb-line-soft);
    border-radius: var(--renweb-radius-lg);
    background: #ffffff;
    box-shadow: var(--renweb-shadow-sm);
}

.renweb-process-number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.renweb-process-title {
    margin: 0;
    color: var(--renweb-ink);
    font-size: 18px;
    font-weight: 850;
}

.renweb-process-text {
    margin: 8px 0 0;
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   Portfolio / Case Study
   ========================================================= */

.renweb-case-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
    padding: 34px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid var(--renweb-line-soft);
    box-shadow: var(--renweb-shadow-md);
}

.renweb-case-preview {
    min-height: 320px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(119, 0, 132, 0.08), rgba(7, 24, 196, 0.08)),
        #ffffff;
    border: 1px solid var(--renweb-line-soft);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.renweb-case-title {
    margin: 0;
    color: var(--renweb-ink);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.renweb-case-text {
    margin: 18px 0 0;
    color: var(--renweb-muted);
    font-size: 16px;
    line-height: 1.75;
}

.renweb-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.renweb-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: var(--renweb-radius-full);
    background: var(--renweb-bg-soft);
    color: var(--renweb-ink);
    font-size: 13px;
    font-weight: 750;
}

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

.renweb-cta {
    position: relative;
    padding: 64px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%),
        var(--renweb-gradient-brand);
    color: #ffffff;
    overflow: hidden;
    box-shadow: var(--renweb-shadow-lg);
}

.renweb-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.renweb-cta-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.renweb-cta-title {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.renweb-cta-text {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.renweb-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.renweb-cta .renweb-btn-outline {
    background: rgba(255, 255, 255, 0.94);
    color: var(--renweb-primary);
    border-color: transparent;
}

/* =========================================================
   Footer
   ========================================================= */

.renweb-footer {
    position: relative;
    padding: 68px 0 30px;
    background:
        radial-gradient(circle at top left, rgba(119, 0, 132, 0.07), transparent 34%),
        radial-gradient(circle at bottom right, rgba(7, 24, 196, 0.06), transparent 32%),
        #ffffff;
    border-top: 1px solid var(--renweb-line-soft);
    overflow: hidden;
}

.renweb-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--renweb-gradient-brand);
}

.renweb-footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.65fr 1fr;
    gap: 42px;
}

.renweb-footer-logo {
    width: 168px;
    height: auto;
    margin-bottom: 18px;
}

.renweb-footer-text {
    max-width: 430px;
    margin: 0;
    color: var(--renweb-muted);
    font-size: 14px;
    line-height: 1.75;
}

.renweb-footer-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--renweb-ink);
    font-size: 15px;
    font-weight: 950;
}

.renweb-footer-title i {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 12px 24px rgba(119, 0, 132, 0.18);
}

.renweb-footer-links {
    display: grid;
    gap: 11px;
}

.renweb-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    color: var(--renweb-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    transition: color 0.2s ease, transform 0.2s ease;
}

.renweb-footer-link i {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: var(--renweb-bg-soft);
    color: var(--renweb-primary);
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.renweb-footer-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.renweb-footer-link:hover {
    color: var(--renweb-primary);
    transform: translateX(3px);
}

.renweb-footer-link:hover i {
    background: var(--renweb-primary-soft);
    transform: translateY(-1px);
}

.renweb-footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid var(--renweb-line-soft);
    color: var(--renweb-muted);
    font-size: 13px;
}

.renweb-footer-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.renweb-footer-bottom i {
    color: var(--renweb-primary);
}

/* Footer Socials */

.renweb-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.renweb-footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(119, 0, 132, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--renweb-primary);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 12px 26px rgba(31, 41, 55, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.renweb-footer-socials a i {
    font-size: 15px;
}

.renweb-footer-socials a:hover {
    transform: translateY(-2px);
    background: var(--renweb-primary-soft);
    box-shadow: 0 16px 34px rgba(119, 0, 132, 0.12);
}

@media (max-width: 1024px) {
    .renweb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .renweb-footer {
        padding: 56px 0 26px;
    }

    .renweb-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .renweb-footer-link {
        width: 100%;
    }
}

/* =========================================================
   Utility Mapping
   ========================================================= */

.renweb-bg { background: var(--renweb-bg); }
.renweb-bg-soft { background: var(--renweb-bg-soft); }
.renweb-bg-section { background: var(--renweb-bg-section); }

.renweb-text-primary { color: var(--renweb-primary); }
.renweb-text-secondary { color: var(--renweb-secondary); }
.renweb-text-ink { color: var(--renweb-ink); }
.renweb-text-muted { color: var(--renweb-muted); }

.renweb-border { border: 1px solid var(--renweb-line-soft); }
.renweb-shadow-sm { box-shadow: var(--renweb-shadow-sm); }
.renweb-shadow-md { box-shadow: var(--renweb-shadow-md); }
.renweb-shadow-lg { box-shadow: var(--renweb-shadow-lg); }

.renweb-radius-sm { border-radius: var(--renweb-radius-sm); }
.renweb-radius-md { border-radius: var(--renweb-radius-md); }
.renweb-radius-lg { border-radius: var(--renweb-radius-lg); }
.renweb-radius-xl { border-radius: var(--renweb-radius-xl); }

.renweb-gradient-text {
    background: var(--renweb-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.renweb-gradient-bg {
    background: var(--renweb-gradient-brand);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
    .renweb-hero-grid,
    .renweb-case-card {
        grid-template-columns: 1fr;
    }

    .renweb-hero-content {
        max-width: 100%;
        text-align: center;
        margin-inline: auto;
    }

    .renweb-hero-actions,
    .renweb-hero-stats {
        justify-content: center;
    }

    .renweb-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .renweb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --renweb-header-height: 72px;
    }

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

    .renweb-navbar-inner {
        gap: 18px;
    }

    .renweb-nav-menu {
        display: none;
    }

    .renweb-brand-logo {
        width: 132px;
    }

    .renweb-hero {
        padding: 78px 0 64px;
    }

    .renweb-hero-grid {
        gap: 36px;
    }

    .renweb-hero-title {
        font-size: clamp(38px, 12vw, 56px);
    }

    .renweb-hero-subtitle {
        font-size: 16px;
    }

    .renweb-mas-tech-card {
        min-height: 420px;
        padding: 24px;
        border-radius: 30px;
    }

    .renweb-floating-panel {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
    }

    .renweb-grid-3,
    .renweb-grid-2,
    .renweb-footer-grid {
        grid-template-columns: 1fr;
    }

    .renweb-cta {
        padding: 38px 28px;
        border-radius: 30px;
    }

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

@media (max-width: 480px) {
    .renweb-container {
        width: min(100% - 24px, var(--renweb-container));
    }

    .renweb-hero-actions,
    .renweb-cta-actions {
        flex-direction: column;
    }

    .renweb-btn {
        width: 100%;
    }

    .renweb-stat-card {
        width: 100%;
    }

    .renweb-process-item {
        grid-template-columns: 1fr;
    }

    .renweb-process-number {
        width: 48px;
        height: 48px;
    }
}

/* =========================================================
   Extra Blade Support
   Mobile Menu, Info List, Mockup, Tech Grid
   ========================================================= */

.renweb-mobile-toggle {
    width: 44px;
    height: 44px;
    display: none;
    border: 1px solid var(--renweb-line-soft);
    border-radius: 14px;
    background: #ffffff;
    padding: 10px;
    cursor: pointer;
}

.renweb-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--renweb-ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.renweb-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.renweb-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.renweb-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.renweb-mobile-menu {
    display: none;
    padding: 0 0 18px;
}

.renweb-mobile-menu.is-open {
    display: grid;
    gap: 10px;
}

.renweb-mobile-link {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--renweb-bg-soft);
    color: var(--renweb-ink);
    font-size: 14px;
    font-weight: 800;
}

.renweb-navbar.is-scrolled {
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06);
}

.renweb-info-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.renweb-info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--renweb-line-soft);
}

.renweb-info-row span {
    color: var(--renweb-muted);
    font-size: 14px;
    font-weight: 650;
}

.renweb-info-row strong {
    color: var(--renweb-ink);
    font-size: 14px;
    font-weight: 850;
    text-align: right;
}

.renweb-process-note {
    margin-top: 28px;
    padding: 22px;
    border-left: 4px solid var(--renweb-primary);
    border-radius: 0 var(--renweb-radius-lg) var(--renweb-radius-lg) 0;
    background: var(--renweb-primary-soft);
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.75;
}

.renweb-process-note strong {
    color: var(--renweb-primary);
}

/* =========================================================
   Technology Stack Premium
   ========================================================= */

.renweb-tech-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.renweb-tech-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 18px 46px rgba(31, 41, 55, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.renweb-tech-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -76px;
    top: -76px;
    border-radius: 50%;
    background: var(--renweb-gradient-soft);
    opacity: 0.95;
}

.renweb-tech-card:hover {
    transform: translateY(-7px);
    border-color: rgba(119, 0, 132, 0.18);
    box-shadow: 0 28px 68px rgba(31, 41, 55, 0.12);
}

.renweb-tech-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 22px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--renweb-gradient-brand) border-box;
    border: 1px solid transparent;
    color: var(--renweb-primary);
    box-shadow: 0 16px 34px rgba(31, 41, 55, 0.08);
}

.renweb-tech-icon i {
    font-size: 32px;
    line-height: 1;
}

.renweb-tech-content {
    position: relative;
    z-index: 1;
}

.renweb-tech-content h3 {
    margin: 0;
    color: var(--renweb-ink);
    font-family: var(--renweb-font-heading);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.renweb-tech-content p {
    margin: 12px 0 0;
    color: var(--renweb-muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .renweb-tech-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .renweb-tech-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .renweb-tech-card {
        min-height: auto;
        padding: 22px;
    }
}

@media (max-width: 520px) {
    .renweb-tech-showcase {
        grid-template-columns: 1fr;
    }

    .renweb-tech-card {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .renweb-tech-icon {
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        margin-bottom: 0;
    }

    .renweb-tech-icon i {
        font-size: 29px;
    }
}

.renweb-dashboard-mockup {
    width: min(100%, 430px);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--renweb-line-soft);
    box-shadow: var(--renweb-shadow-md);
}

.renweb-dashboard-top {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: var(--renweb-gradient-brand);
}

.renweb-dashboard-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
}

.renweb-dashboard-body {
    display: grid;
    grid-template-columns: 92px 1fr;
    min-height: 230px;
}

.renweb-dashboard-sidebar {
    background: var(--renweb-bg-soft);
    border-right: 1px solid var(--renweb-line-soft);
}

.renweb-dashboard-content {
    padding: 22px;
}

.renweb-dashboard-line {
    height: 14px;
    margin-bottom: 12px;
    border-radius: 99px;
    background: var(--renweb-gradient-soft);
}

.renweb-dashboard-line.width-90 {
    width: 90%;
}

.renweb-dashboard-line.width-70 {
    width: 70%;
}

.renweb-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 22px 0;
}

.renweb-dashboard-cards span {
    height: 58px;
    border-radius: 16px;
    background: var(--renweb-secondary-soft);
}

.renweb-dashboard-table {
    display: grid;
    gap: 9px;
}

.renweb-dashboard-table span {
    height: 12px;
    border-radius: 99px;
    background: var(--renweb-bg-soft);
}

@media (max-width: 768px) {
    .renweb-mobile-toggle {
        display: block;
    }

    .renweb-info-row {
        flex-direction: column;
        gap: 6px;
    }

    .renweb-info-row strong {
        text-align: left;
    }

    .renweb-dashboard-body {
        grid-template-columns: 70px 1fr;
    }

    .renweb-dashboard-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RenWebTech Premium Landing Upgrade
   ========================================================= */

.renweb-navbar-premium {
    border-bottom: 1px solid rgba(119, 0, 132, 0.1);
}

.renweb-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.renweb-nav-proof {
    display: grid;
    gap: 2px;
    padding: 8px 14px;
    border: 1px solid rgba(119, 0, 132, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.06);
}

.renweb-nav-proof span {
    color: var(--renweb-muted);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.renweb-nav-proof strong {
    color: var(--renweb-primary);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.renweb-hero-premium {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 12% 12%, rgba(119, 0, 132, 0.17), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(7, 24, 196, 0.13), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.renweb-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(22px);
    opacity: 0.55;
    pointer-events: none;
}

.renweb-hero-glow-one {
    width: 280px;
    height: 280px;
    left: -90px;
    top: 120px;
    background: rgba(119, 0, 132, 0.14);
}

.renweb-hero-glow-two {
    width: 340px;
    height: 340px;
    right: -120px;
    bottom: 40px;
    background: rgba(7, 24, 196, 0.12);
}

.renweb-hero-grid-premium {
    grid-template-columns: 0.95fr 1.05fr;
}

.renweb-badge-dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 999px;
    background: var(--renweb-gradient-brand);
    box-shadow: 0 0 0 6px rgba(119, 0, 132, 0.1);
}

.renweb-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.renweb-trust-item {
    padding: 18px;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.07);
    backdrop-filter: blur(14px);
}

.renweb-trust-item strong {
    display: block;
    color: var(--renweb-ink);
    font-size: 17px;
    font-weight: 900;
}

.renweb-trust-item span {
    display: block;
    margin-top: 5px;
    color: var(--renweb-muted);
    font-size: 13px;
    line-height: 1.45;
}

.renweb-hero-showcase {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.renweb-showcase-dashboard {
    position: absolute;
    width: min(92%, 560px);
    right: 0;
    top: 46px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(119, 0, 132, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 30px 90px rgba(31, 41, 55, 0.16);
    backdrop-filter: blur(18px);
}

.renweb-showcase-top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: var(--renweb-gradient-brand);
}

.renweb-showcase-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
}

.renweb-showcase-body {
    display: grid;
    grid-template-columns: 100px 1fr;
    min-height: 300px;
}

.renweb-showcase-sidebar {
    background:
        linear-gradient(180deg, rgba(119, 0, 132, 0.08), rgba(7, 24, 196, 0.08)),
        #ffffff;
    border-right: 1px solid rgba(31, 41, 55, 0.08);
}

.renweb-showcase-content {
    padding: 28px;
}

.renweb-showcase-title {
    width: 72%;
    height: 18px;
    border-radius: 999px;
    background: var(--renweb-gradient-soft);
}

.renweb-showcase-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.renweb-showcase-metrics span {
    height: 74px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 12px 24px rgba(31, 41, 55, 0.06);
}

.renweb-showcase-chart {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(119, 0, 132, 0.08), rgba(7, 24, 196, 0.08));
}

.renweb-showcase-chart i {
    flex: 1;
    display: block;
    border-radius: 999px 999px 8px 8px;
    background: var(--renweb-gradient-brand);
    opacity: 0.88;
}

.renweb-mas-tech-premium {
    position: relative;
    z-index: 3;
    width: min(420px, 72%);
    margin-top: 80px;
    filter: drop-shadow(0 34px 42px rgba(31, 41, 55, 0.23));
}

.renweb-proof-strip {
    padding: 20px 0;
    background: #ffffff;
    border-block: 1px solid rgba(31, 41, 55, 0.08);
}

.renweb-proof-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.renweb-proof-strip-inner span {
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--renweb-bg-soft);
    color: var(--renweb-ink);
    font-size: 13px;
    font-weight: 850;
}

.renweb-problem-card,
.renweb-service-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.renweb-problem-card:hover,
.renweb-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(119, 0, 132, 0.2);
    box-shadow: 0 28px 70px rgba(31, 41, 55, 0.13);
}

.renweb-problem-card::before,
.renweb-service-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: var(--renweb-gradient-soft);
}

.renweb-problem-number,
.renweb-service-number {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(119, 0, 132, 0.22);
}

.renweb-problem-card h3,
.renweb-service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--renweb-ink);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.renweb-problem-card p,
.renweb-service-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.75;
}

.renweb-section-dark {
    background:
        radial-gradient(circle at top left, rgba(119, 0, 132, 0.42), transparent 32%),
        radial-gradient(circle at bottom right, rgba(7, 24, 196, 0.32), transparent 34%),
        #101321;
    color: #ffffff;
}

.renweb-about-premium {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.renweb-title-light {
    color: #ffffff;
}

.renweb-title-light span {
    background: linear-gradient(90deg, #ffffff, #dbeafe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.renweb-subtitle-light {
    color: rgba(255, 255, 255, 0.72);
}

.renweb-kicker-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
}

.renweb-identity-card {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.renweb-identity-card .renweb-info-row {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.renweb-identity-card .renweb-info-row span {
    color: rgba(255, 255, 255, 0.6);
}

.renweb-identity-card .renweb-info-row strong {
    color: #ffffff;
}

.renweb-identity-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 24px;
    background: #ffffff;
    color: var(--renweb-primary);
    font-size: 22px;
    font-weight: 950;
}

.renweb-compare-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: stretch;
    padding: 28px;
    border-radius: 38px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 28px 70px rgba(31, 41, 55, 0.1);
}

.renweb-compare-side {
    padding: 32px;
    border-radius: 30px;
}

.renweb-compare-bad {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.08), rgba(31, 41, 55, 0.04));
}

.renweb-compare-good {
    background: linear-gradient(135deg, rgba(119, 0, 132, 0.09), rgba(7, 24, 196, 0.08));
}

.renweb-compare-side h3 {
    margin: 0;
    color: var(--renweb-ink);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.renweb-compare-side ul {
    display: grid;
    gap: 13px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.renweb-compare-side li {
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.65;
}

.renweb-compare-side li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--renweb-primary);
    font-weight: 950;
}

.renweb-compare-divider {
    display: grid;
    place-items: center;
}

.renweb-compare-divider span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(119, 0, 132, 0.24);
}

.renweb-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.renweb-project-card {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 22px 60px rgba(31, 41, 55, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.renweb-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 78px rgba(31, 41, 55, 0.14);
}

.renweb-project-preview {
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(119, 0, 132, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(7, 24, 196, 0.14), transparent 34%),
        #f8fafc;
}

.renweb-project-browser {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 22px 22px 0 0;
    background: var(--renweb-gradient-brand);
}

.renweb-project-browser span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.renweb-project-screen {
    min-height: 210px;
    padding: 28px;
    border-radius: 0 0 22px 22px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-top: 0;
}

.renweb-project-line {
    height: 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--renweb-gradient-soft);
}

.renweb-project-line.width-80 {
    width: 80%;
}

.renweb-project-line.width-55 {
    width: 55%;
}

.renweb-project-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.renweb-project-boxes i {
    height: 76px;
    border-radius: 20px;
    background: var(--renweb-secondary-soft);
}

.renweb-project-content {
    padding: 30px;
}

.renweb-project-type {
    color: var(--renweb-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.renweb-project-content h3 {
    margin: 10px 0 0;
    color: var(--renweb-ink);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.renweb-project-content p {
    margin: 14px 0 0;
    color: var(--renweb-muted);
    font-size: 15px;
    line-height: 1.75;
}

.renweb-project-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--renweb-primary);
    font-size: 14px;
    font-weight: 900;
}

.renweb-project-link::after {
    content: "→";
    margin-left: 8px;
}

.renweb-cta-premium {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 32%),
        var(--renweb-gradient-brand);
}

@media (max-width: 1024px) {
    .renweb-nav-proof {
        display: none;
    }

    .renweb-hero-grid-premium,
    .renweb-about-premium,
    .renweb-project-grid {
        grid-template-columns: 1fr;
    }

    .renweb-compare-card {
        grid-template-columns: 1fr;
    }

    .renweb-compare-divider {
        margin: -4px 0;
    }
}

@media (max-width: 768px) {
    .renweb-nav-actions .renweb-btn {
        display: none;
    }

    .renweb-hero-premium {
        min-height: auto;
    }

    .renweb-trust-row {
        grid-template-columns: 1fr;
    }

    .renweb-hero-showcase {
        min-height: 520px;
    }

    .renweb-showcase-dashboard {
        width: 100%;
        top: 20px;
    }

    .renweb-mas-tech-premium {
        width: min(360px, 86%);
        margin-top: 120px;
    }

    .renweb-showcase-body {
        grid-template-columns: 72px 1fr;
    }

    .renweb-showcase-metrics {
        grid-template-columns: 1fr;
    }

    .renweb-project-boxes {
        grid-template-columns: 1fr;
    }

    .renweb-compare-side {
        padding: 24px;
    }

    .renweb-compare-side h3 {
        font-size: 24px;
    }
}

.renweb-page {
    font-family: var(--renweb-font-main);
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.renweb-title,
.renweb-hero-title,
.renweb-cta-title,
.renweb-case-title,
.renweb-project-content h3,
.renweb-compare-side h3,
.renweb-card-title,
.renweb-process-title,
.renweb-problem-card h3,
.renweb-service-card h3 {
    font-family: var(--renweb-font-heading);
}

.renweb-hero-title {
    letter-spacing: -0.075em;
}

.renweb-title {
    letter-spacing: -0.055em;
}

.renweb-subtitle,
.renweb-hero-subtitle,
.renweb-card-text,
.renweb-process-text,
.renweb-footer-text {
    letter-spacing: -0.01em;
}

.renweb-project-status {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--renweb-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(31, 41, 55, 0.08);
}

.renweb-project-link-muted {
    color: var(--renweb-muted);
    cursor: default;
}

.renweb-project-link-muted::after {
    content: "";
    margin-left: 0;
}

@media (max-width: 1024px) {
    .renweb-project-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Project Carousel Premium
   ========================================================= */

.renweb-project-carousel {
    position: relative;
    padding: 28px;
    border-radius: 42px;
    background:
        radial-gradient(circle at top left, rgba(119, 0, 132, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(7, 24, 196, 0.1), transparent 34%),
        #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 28px 80px rgba(31, 41, 55, 0.1);
    overflow: hidden;
}

.renweb-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.renweb-carousel-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--renweb-primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.renweb-carousel-header h3 {
    margin: 0;
    color: var(--renweb-ink);
    font-family: var(--renweb-font-heading);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.renweb-carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.renweb-carousel-btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(119, 0, 132, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: var(--renweb-primary);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(31, 41, 55, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.renweb-carousel-btn:hover {
    transform: translateY(-2px);
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(119, 0, 132, 0.22);
}

.renweb-project-showcase-card {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
    align-items: center;
    padding: 14px;
}

.renweb-project-showcase-media {
    position: relative;
}

.renweb-project-image-frame {
    overflow: hidden;
}


.renweb-project-image-wrap {
    min-height: unset;
    height: auto;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(119, 0, 132, 0.055), rgba(7, 24, 196, 0.055)),
        #ffffff;
    overflow: hidden;
}
.renweb-project-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    padding: 14px;
    background: #ffffff;
    border-radius: 0 0 22px 22px;
}

.renweb-project-showcase-card:hover .renweb-project-image {
    transform: none;
}

.renweb-project-empty {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 30px;
    text-align: center;
}

.renweb-project-empty strong {
    color: var(--renweb-ink);
    font-family: var(--renweb-font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.renweb-project-empty span {
    color: var(--renweb-muted);
    font-size: 14px;
    font-weight: 700;
}

.renweb-project-image-wrap.is-empty .renweb-project-empty {
    display: grid;
}

.renweb-project-showcase-content {
    padding: 18px 12px;
}

.renweb-project-showcase-content h3 {
    margin: 10px 0 0;
    color: var(--renweb-ink);
    font-family: var(--renweb-font-heading);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.065em;
}

.renweb-project-showcase-content p {
    margin: 18px 0 0;
    color: var(--renweb-muted);
    font-size: 16px;
    line-height: 1.8;
}

.renweb-project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.renweb-btn-disabled {
    pointer-events: none;
    opacity: 0.78;
}

.renweb-project-indicators {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 0;
}

.renweb-project-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(119, 0, 132, 0.24);
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}

.renweb-project-indicators .active {
    width: 34px;
    background: var(--renweb-gradient-brand);
}

@media (max-width: 1024px) {
    .renweb-project-showcase-card {
        grid-template-columns: 1fr;
    }

    .renweb-project-showcase-content {
        padding: 10px 0 0;
    }
}

@media (max-width: 768px) {
    .renweb-project-carousel {
        padding: 18px;
        border-radius: 30px;
    }

    .renweb-carousel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .renweb-project-showcase-card {
        padding: 0;
        gap: 24px;
    }

    .renweb-project-image-wrap {
        aspect-ratio: 16 / 11;
        min-height: unset;
    }

    .renweb-project-image {
        height: 100%;
        padding: 10px;
    }

    .renweb-project-actions {
        flex-direction: column;
    }

    .renweb-project-actions .renweb-btn {
        width: 100%;
    }
}

/* =========================================================
   Hero Dashboard Image Fix
   Biar screenshot dashboard tampil gede/full
   ========================================================= */

.renweb-showcase-body-image {
    display: block;
    min-height: 360px;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.renweb-showcase-img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    object-position: top center;
}

/* =========================================================
   Hero Floating Panel Mobile Fix
   Biar Flow Rapi & Custom System nggak kepotong di HP
   ========================================================= */

@media (max-width: 768px) {
    .renweb-hero-showcase {
        min-height: auto;
        display: grid;
        gap: 14px;
        align-items: stretch;
        justify-items: center;
        padding-top: 10px;
    }

    .renweb-showcase-dashboard {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        order: 2;
        border-radius: 26px;
    }

    .renweb-showcase-body-image {
        min-height: 240px;
    }

    .renweb-showcase-img {
        height: 240px;
        object-fit: cover;
        object-position: top center;
    }

    .renweb-floating-panel {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 22px;
    }

    .renweb-panel-top {
        order: 1;
    }

    .renweb-panel-bottom {
        order: 4;
    }

    .renweb-mas-tech-premium {
        order: 3;
        width: min(320px, 82%);
        margin-top: -34px;
        margin-bottom: -6px;
    }
}

@media (max-width: 480px) {
    .renweb-showcase-body-image {
        min-height: 210px;
    }

    .renweb-showcase-img {
        height: 210px;
    }

    .renweb-mas-tech-premium {
        width: min(280px, 86%);
        margin-top: -24px;
    }

    .renweb-floating-panel strong {
        font-size: 13px;
    }

    .renweb-floating-panel span {
        font-size: 12px;
        line-height: 1.45;
    }
}

.renweb-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.renweb-footer-socials a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--renweb-bg-soft);
    color: var(--renweb-primary);
    font-size: 13px;
    font-weight: 850;
    transition: transform 0.2s ease, background 0.2s ease;
}

.renweb-footer-socials a:hover {
    transform: translateY(-2px);
    background: var(--renweb-primary-soft);
}

/* =========================================================
   Testimonial Carousel Premium
   ========================================================= */

.renweb-testimonial-wrap {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 28px;
    align-items: stretch;
}

.renweb-testimonial-side {
    display: flex;
}

.renweb-testimonial-mascot-card {
    width: 100%;
    padding: 26px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(119, 0, 132, 0.10), transparent 34%),
        radial-gradient(circle at bottom right, rgba(7, 24, 196, 0.09), transparent 34%),
        #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 24px 60px rgba(31, 41, 55, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.renweb-testimonial-mascot-img {
    width: min(250px, 90%);
    margin: 0 auto 18px;
    filter: drop-shadow(0 20px 28px rgba(31, 41, 55, 0.16));
}

.renweb-testimonial-mascot-text strong {
    display: block;
    color: var(--renweb-ink);
    font-family: var(--renweb-font-heading);
    font-size: 20px;
    font-weight: 900;
}

.renweb-testimonial-mascot-text span {
    display: block;
    margin-top: 8px;
    color: var(--renweb-muted);
    font-size: 14px;
    line-height: 1.7;
}

.renweb-testimonial-carousel {
    position: relative;
    height: 100%;
    padding: 28px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(119, 0, 132, 0.08), transparent 34%),
        radial-gradient(circle at bottom right, rgba(7, 24, 196, 0.08), transparent 34%),
        #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 24px 60px rgba(31, 41, 55, 0.08);
    overflow: hidden;
}

.renweb-testimonial-carousel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.renweb-testimonial-carousel-head h3 {
    margin: 0;
    color: var(--renweb-ink);
    font-family: var(--renweb-font-heading);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.renweb-testimonial-showcase {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 4px 10px;
}

.renweb-testimonial-quote-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: var(--renweb-gradient-brand);
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 16px 36px rgba(119, 0, 132, 0.22);
}

.renweb-testimonial-quote-text {
    margin: 0;
    color: var(--renweb-ink);
    font-size: clamp(18px, 2.1vw, 24px);
    line-height: 1.75;
    font-weight: 650;
    letter-spacing: -0.015em;
}

.renweb-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.renweb-testimonial-avatar {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--renweb-primary-soft);
    color: var(--renweb-primary);
    font-size: 18px;
    font-weight: 950;
}

.renweb-testimonial-person {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.renweb-testimonial-person strong {
    color: var(--renweb-ink);
    font-size: 15px;
    font-weight: 900;
}

.renweb-testimonial-person span {
    color: var(--renweb-muted);
    font-size: 13px;
    font-weight: 650;
}

.renweb-testimonial-badge {
    margin-left: auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--renweb-bg-soft);
    color: var(--renweb-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.renweb-testimonial-indicators {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
}

.renweb-testimonial-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(119, 0, 132, 0.24);
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}

.renweb-testimonial-indicators .active {
    width: 34px;
    background: var(--renweb-gradient-brand);
}

@media (max-width: 1024px) {
    .renweb-testimonial-wrap {
        grid-template-columns: 1fr;
    }

    .renweb-testimonial-mascot-card {
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .renweb-testimonial-mascot-img {
        width: 150px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .renweb-testimonial-carousel,
    .renweb-testimonial-mascot-card {
        padding: 20px;
        border-radius: 28px;
    }

    .renweb-testimonial-carousel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .renweb-testimonial-showcase {
        min-height: auto;
    }

    .renweb-testimonial-quote-text {
        font-size: 17px;
        line-height: 1.8;
    }

    .renweb-testimonial-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .renweb-testimonial-badge {
        margin-left: 0;
    }

    .renweb-testimonial-mascot-card {
        flex-direction: column;
        text-align: center;
    }

    .renweb-testimonial-mascot-img {
        width: min(220px, 80%);
    }
}
