/* ==========================================================================
   REAL PACKAGING MACHINERY - MODERN UI DESIGN SYSTEM (V3 LIGHT BRAND THEME)
   Theme: Crisp White Surface, Primary Red Buttons, Charcoal Typography, Yellow Accents
   ========================================================================== */

:root {
    /* Background Surface System */
    --rp-bg-white: #FFFFFF;
    --rp-bg-subtle: #F8FAFC;
    --rp-bg-surface: #FFFFFF;
    --rp-bg-surface-hover: #F1F5F9;
    --rp-bg-charcoal: #181E27;
    --rp-bg-charcoal-dark: #0F141C;

    /* Brand Primary Red */
    --rp-primary: #E31E25;
    --rp-primary-hover: #C81018;
    --rp-primary-glow: rgba(227, 30, 37, 0.25);
    --rp-primary-light: rgba(227, 30, 37, 0.08);

    /* Brand Yellow & Amber Accents (from Logo) */
    --rp-yellow: #D97706;
    --rp-yellow-bright: #FFE700;
    --rp-yellow-badge-bg: #FEF3C7;
    --rp-yellow-badge-text: #92400E;
    --rp-yellow-badge-border: #FCD34D;

    /* Charcoal & Typography System */
    --rp-charcoal-heading: #1E242B;
    --rp-charcoal-dark: #0F172A;
    --rp-text-main: #334155;
    --rp-text-muted: #64748B;
    --rp-text-light: #94A3B8;

    /* Borders & Dividers */
    --rp-border-light: #E2E8F0;
    --rp-border-card: #E5E7EB;
    --rp-border-focus: #E31E25;
    --rp-border-dark: rgba(255, 255, 255, 0.12);

    /* Radii */
    --rp-radius-sm: 8px;
    --rp-radius-md: 14px;
    --rp-radius-lg: 22px;
    --rp-radius-full: 9999px;

    /* Typography */
    --rp-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --rp-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --rp-font-mono: 'Space Grotesk', monospace;

    /* Elevation Shadows */
    --rp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --rp-shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    --rp-shadow-hover: 0 12px 30px -4px rgba(15, 23, 42, 0.12);
    --rp-shadow-red: 0 4px 20px rgba(227, 30, 37, 0.3);
    --rp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Wrapper for V3 */
.realpack-v3-wrapper {
    font-family: var(--rp-font-body);
    background-color: var(--rp-bg-white);
    color: var(--rp-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.realpack-v3-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.realpack-v3-wrapper a {
    color: inherit;
    text-decoration: none;
    transition: var(--rp-transition);
}

.realpack-v3-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.realpack-v3-wrapper h1,
.realpack-v3-wrapper h2,
.realpack-v3-wrapper h3,
.realpack-v3-wrapper h4,
.realpack-v3-wrapper h5,
.realpack-v3-wrapper h6 {
    font-family: var(--rp-font-heading);
    font-weight: 700;
    color: var(--rp-charcoal-heading);
    line-height: 1.25;
}

/* Container */
.rp-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons System */
.rp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--rp-font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--rp-radius-sm);
    cursor: pointer;
    transition: var(--rp-transition);
    border: none;
    outline: none;
    text-align: center;
    white-space: nowrap;
}

/* Primary Brand Red Button */
.rp-btn-primary {
    background: linear-gradient(135deg, #E31E25 0%, #C81018 100%);
    color: #FFFFFF !important;
    box-shadow: var(--rp-shadow-red);
}

.rp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 37, 0.45);
    background: linear-gradient(135deg, #F02830 0%, #B70B13 100%);
}

.rp-btn-outline {
    background: #FFFFFF;
    color: var(--rp-charcoal-heading) !important;
    border: 1.5px solid var(--rp-border-light);
    box-shadow: var(--rp-shadow-sm);
}

.rp-btn-outline:hover {
    background: var(--rp-bg-subtle);
    border-color: var(--rp-primary);
    color: var(--rp-primary) !important;
    transform: translateY(-2px);
}

.rp-btn-whatsapp {
    background: #25D366;
    color: #FFFFFF !important;
    font-weight: 600;
}

.rp-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.rp-btn-sm {
    padding: 10px 20px;
    font-size: 13.5px;
}

/* Badges & Section Headings */
.rp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--rp-radius-full);
    font-family: var(--rp-font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rp-badge-primary {
    background: var(--rp-primary-light);
    color: var(--rp-primary);
    border: 1px solid rgba(227, 30, 37, 0.2);
}

.rp-badge-yellow {
    background: var(--rp-yellow-badge-bg);
    color: var(--rp-yellow-badge-text);
    border: 1px solid var(--rp-yellow-badge-border);
}

.rp-badge-accent {
    background: var(--rp-primary-light);
    color: var(--rp-primary);
    border: 1px solid rgba(227, 30, 37, 0.2);
}

.rp-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px auto;
}

.rp-section-title {
    font-size: 38px;
    margin: 16px 0;
    letter-spacing: -0.5px;
    color: var(--rp-charcoal-heading);
}

.rp-section-title span.rp-highlight-red {
    color: var(--rp-primary);
}

.rp-section-subtitle {
    font-size: 17px;
    color: var(--rp-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   TOP BAR & HEADER (V3)
   ========================================================================== */
.rp-topbar {
    background: var(--rp-bg-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    padding: 9px 0;
    color: #CBD5E1;
}

.rp-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rp-topbar-left, .rp-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rp-topbar-right a:hover {
    color: #FFFFFF;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .rp-topbar {
        font-size: 12px;
        padding: 7px 0;
    }
    .rp-topbar-left, .rp-topbar-right {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .rp-topbar {
        display: none !important;
    }
}

.rp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rp-border-light);
    transition: var(--rp-transition);
}

.rp-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: var(--rp-border-light);
}

.rp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.rp-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

.rp-nav-link {
    font-family: var(--rp-font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--rp-charcoal-heading);
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rp-nav-link:hover, .rp-nav-link.active {
    color: var(--rp-primary);
}

.rp-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rp-primary);
    border-radius: 2px;
}

/* Dropdown Menu */
.rp-dropdown {
    position: relative;
}

.rp-dropdown:hover .rp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rp-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-md);
    padding: 10px;
    box-shadow: var(--rp-shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--rp-transition);
    z-index: 100;
}

.rp-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--rp-charcoal-heading);
    border-radius: var(--rp-radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.rp-dropdown-item:hover {
    background: var(--rp-primary-light);
    color: var(--rp-primary);
}

.rp-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--rp-charcoal-heading);
    cursor: pointer;
    padding: 6px;
}

@media (max-width: 1024px) {
    .rp-nav { display: none; }
    .rp-btn-desktop { display: none; }
    .rp-mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .rp-header-inner {
        height: 64px;
    }
    .rp-logo img {
        height: 38px;
    }
}

/* Mobile Drawer */
.rp-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--rp-transition);
}

.rp-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.rp-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1999;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.rp-mobile-drawer.open {
    right: 0;
}

.rp-mobile-nav-link {
    color: var(--rp-charcoal-heading);
    padding: 10px 0;
    border-bottom: 1px solid var(--rp-border-light);
}

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

/* ==========================================================================
   HERO SECTION (V3 LIGHT)
   ========================================================================== */
.rp-hero {
    position: relative;
    padding: 90px 0 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(227, 30, 37, 0.04) 0%, rgba(248, 250, 252, 0.8) 50%, #FFFFFF 100%);
    border-bottom: 1px solid var(--rp-border-light);
}

.rp-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none;
}

.rp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.rp-hero-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--rp-charcoal-heading);
}

.rp-hero-headline span {
    color: var(--rp-primary);
}

.rp-hero-subhead {
    font-size: 19px;
    color: var(--rp-text-muted);
    max-width: 780px;
    margin: 0 auto 36px auto;
    line-height: 1.6;
}

.rp-hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.rp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-lg);
    padding: 30px;
    box-shadow: var(--rp-shadow-card);
}

.rp-stat-item {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid var(--rp-border-light);
}

.rp-stat-item:last-child {
    border-right: none;
}

.rp-stat-number {
    font-family: var(--rp-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--rp-charcoal-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.rp-stat-number span {
    color: var(--rp-primary);
}

.rp-stat-label {
    font-size: 13.5px;
    color: var(--rp-text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .rp-hero-headline { font-size: 34px; }
    .rp-hero-subhead { font-size: 16px; }
    .rp-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 20px; }
    .rp-stat-item:nth-child(2) { border-right: none; }
}

/* ==========================================================================
   PILLARS (VALUE MATRIX)
   ========================================================================== */
.rp-pillars-section {
    padding: 90px 0;
    background: var(--rp-bg-white);
}

.rp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rp-pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-md);
    padding: 32px 24px;
    transition: var(--rp-transition);
    box-shadow: var(--rp-shadow-sm);
    position: relative;
    overflow: hidden;
}

.rp-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--rp-transition);
}

.rp-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rp-shadow-hover);
    border-color: var(--rp-border-card);
}

.rp-pillar-card:hover::before {
    background: var(--rp-primary);
}

.rp-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--rp-radius-sm);
    background: var(--rp-primary-light);
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rp-pillar-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--rp-charcoal-heading);
}

.rp-pillar-card p {
    font-size: 14.5px;
    color: var(--rp-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .rp-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .rp-pillars-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   INDUSTRIES MATRIX (V3)
   ========================================================================== */
.rp-industries-section {
    padding: 90px 0;
    background: var(--rp-bg-subtle);
    border-top: 1px solid var(--rp-border-light);
    border-bottom: 1px solid var(--rp-border-light);
}

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

.rp-industry-card {
    position: relative;
    height: 280px;
    border-radius: var(--rp-radius-md);
    overflow: hidden;
    border: 1px solid var(--rp-border-light);
    background: #0F172A;
    transition: var(--rp-transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    box-shadow: var(--rp-shadow-card);
}

.rp-industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--rp-primary);
    box-shadow: var(--rp-shadow-hover);
}

.rp-industry-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    opacity: 0.4;
}

.rp-industry-card:hover .rp-industry-bg {
    transform: scale(1.08);
    opacity: 0.55;
}

.rp-industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.95) 80%);
}

.rp-industry-content {
    position: relative;
    z-index: 10;
}

.rp-industry-tag {
    font-size: 11px;
    font-family: var(--rp-font-mono);
    color: var(--rp-yellow-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.rp-industry-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.rp-industry-card p {
    font-size: 13px;
    color: #CBD5E1;
    line-height: 1.5;
    margin-bottom: 14px;
}

.rp-industry-link {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rp-industry-card:hover .rp-industry-link {
    gap: 10px;
    color: var(--rp-primary);
}

@media (max-width: 1024px) {
    .rp-industries-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ==========================================================================
   MACHINES CATALOG SHOWCASE (V3)
   ========================================================================== */
.rp-catalog-section {
    padding: 100px 0;
    background: var(--rp-bg-white);
}

.rp-catalog-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.rp-filter-btn {
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    color: var(--rp-charcoal-heading);
    padding: 10px 20px;
    border-radius: var(--rp-radius-full);
    font-family: var(--rp-font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rp-transition);
    box-shadow: var(--rp-shadow-sm);
}

.rp-filter-btn:hover {
    background: var(--rp-bg-subtle);
    border-color: var(--rp-primary);
    color: var(--rp-primary);
}

.rp-filter-btn.active {
    background: var(--rp-primary);
    border-color: var(--rp-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(227, 30, 37, 0.3);
}

.rp-machine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.rp-machine-card {
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-md);
    overflow: hidden;
    box-shadow: var(--rp-shadow-card);
    transition: var(--rp-transition);
    display: flex;
    flex-direction: column;
}

.rp-machine-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rp-shadow-hover);
    border-color: rgba(227, 30, 37, 0.4);
}

.rp-machine-thumb {
    position: relative;
    height: 250px;
    background: #F8FAFC;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--rp-border-light);
}

.rp-machine-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rp-machine-card:hover .rp-machine-thumb img {
    transform: scale(1.05);
}

.rp-machine-badge-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--rp-radius-sm);
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
}

.rp-machine-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rp-machine-title {
    font-size: 19px;
    margin-bottom: 16px;
    color: var(--rp-charcoal-heading);
    line-height: 1.35;
}

.rp-machine-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #F8FAFC;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-sm);
    padding: 14px;
    margin-bottom: 20px;
}

.rp-spec-item {
    display: flex;
    flex-direction: column;
}

.rp-spec-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--rp-text-muted);
    text-transform: uppercase;
}

.rp-spec-val {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--rp-charcoal-heading);
}

.rp-machine-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .rp-machine-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ==========================================================================
   SMART MACHINE FINDER (WIZARD V3)
   ========================================================================== */
.rp-finder-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    border-top: 1px solid var(--rp-border-light);
    border-bottom: 1px solid var(--rp-border-light);
}

.rp-finder-box {
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-lg);
    padding: 40px;
    box-shadow: var(--rp-shadow-hover);
    max-width: 900px;
    margin: 0 auto;
}

.rp-wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.rp-wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--rp-border-light);
    z-index: 1;
}

.rp-wizard-step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: pointer;
}

.rp-step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--rp-border-light);
    color: var(--rp-text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    transition: var(--rp-transition);
}

.rp-wizard-step-node.active .rp-step-circle {
    background: var(--rp-primary);
    border-color: var(--rp-primary);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(227, 30, 37, 0.35);
}

.rp-step-title {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--rp-text-muted);
}

.rp-wizard-step-node.active .rp-step-title {
    color: var(--rp-charcoal-heading);
}

.rp-finder-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.rp-finder-opt-card {
    background: #FFFFFF;
    border: 1.5px solid var(--rp-border-light);
    border-radius: var(--rp-radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--rp-transition);
}

.rp-finder-opt-card:hover {
    border-color: rgba(227, 30, 37, 0.4);
    background: #FFF5F5;
}

.rp-finder-opt-card.selected {
    border-color: var(--rp-primary);
    background: #FEF2F2;
    box-shadow: 0 0 15px rgba(227, 30, 37, 0.15);
}

.rp-finder-opt-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.rp-finder-opt-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--rp-charcoal-heading);
    margin-bottom: 4px;
}

.rp-finder-opt-desc {
    font-size: 13px;
    color: var(--rp-text-muted);
}

.rp-finder-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--rp-border-light);
    padding-top: 24px;
}

.rp-finder-result {
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-md);
    padding: 28px;
}

/* ==========================================================================
   VIDEO & DEMO SHOWCASE
   ========================================================================== */
.rp-video-section {
    padding: 100px 0;
    background: var(--rp-bg-white);
}

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

.rp-video-card {
    position: relative;
    height: 240px;
    border-radius: var(--rp-radius-md);
    overflow: hidden;
    border: 1px solid var(--rp-border-light);
    cursor: pointer;
    background: #0F172A;
    box-shadow: var(--rp-shadow-card);
    transition: var(--rp-transition);
}

.rp-video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rp-shadow-hover);
    border-color: var(--rp-primary);
}

.rp-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.5s ease;
}

.rp-video-card:hover .rp-video-thumb {
    transform: scale(1.08);
    opacity: 0.9;
}

.rp-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--rp-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(227, 30, 37, 0.4);
    transition: var(--rp-transition);
}

.rp-video-card:hover .rp-video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.rp-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%);
}

.rp-video-info h3 {
    font-size: 16px;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .rp-video-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ==========================================================================
   TRUST MARQUEE
   ========================================================================== */
.rp-marquee-section {
    padding: 50px 0;
    background: var(--rp-bg-charcoal);
    color: #FFFFFF;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.rp-marquee-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: rpMarqueeScroll 28s linear infinite;
}

.rp-marquee-item {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rp-radius-sm);
    font-family: var(--rp-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: #E2E8F0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rp-marquee-item span {
    color: var(--rp-yellow-bright);
}

@keyframes rpMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* ==========================================================================
   RFQ FORM SECTION (V3 LIGHT)
   ========================================================================== */
.rp-rfq-section {
    padding: 100px 0;
    background: var(--rp-bg-subtle);
    border-top: 1px solid var(--rp-border-light);
}

.rp-rfq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.rp-rfq-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--rp-charcoal-heading);
}

.rp-rfq-info p {
    color: var(--rp-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.rp-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rp-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rp-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--rp-primary-light);
    color: var(--rp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rp-contact-item h4 {
    font-size: 13.5px;
    color: var(--rp-text-muted);
    margin-bottom: 2px;
}

.rp-contact-item a, .rp-contact-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--rp-charcoal-heading);
}

.rp-contact-item a:hover {
    color: var(--rp-primary);
}

.rp-rfq-card {
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-lg);
    padding: 40px;
    box-shadow: var(--rp-shadow-hover);
}

.rp-form-group {
    margin-bottom: 20px;
}

.rp-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rp-charcoal-heading);
    margin-bottom: 8px;
}

.rp-form-control {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid var(--rp-border-light);
    border-radius: var(--rp-radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    color: var(--rp-charcoal-heading);
    font-family: var(--rp-font-body);
    transition: var(--rp-transition);
}

.rp-form-control:focus {
    outline: none;
    border-color: var(--rp-primary);
    box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.15);
}

.rp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 1024px) {
    .rp-rfq-grid { grid-template-columns: 1fr; }
    .rp-form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER (CHARCOAL ANCHOR)
   ========================================================================== */
.rp-footer {
    background: var(--rp-bg-charcoal);
    color: #94A3B8;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.rp-footer-col h4 {
    color: #FFFFFF;
    font-size: 17px;
    margin-bottom: 20px;
}

.rp-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rp-footer-links a {
    color: #CBD5E1;
    font-size: 14px;
}

.rp-footer-links a:hover {
    color: var(--rp-primary);
    padding-left: 4px;
}

.rp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

@media (max-width: 900px) {
    .rp-footer-grid { grid-template-columns: 1fr 1fr; }
    .rp-footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

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

/* ==========================================================================
   MODALS (V3)
   ========================================================================== */
.rp-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--rp-transition);
}

.rp-modal.active {
    opacity: 1;
    visibility: visible;
}

.rp-modal-overlay, .rp-modal-backdrop-close {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
}

.rp-modal-container {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border: 1px solid var(--rp-border-light);
    border-radius: var(--rp-radius-lg);
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.rp-video-modal-container {
    max-width: 860px;
    padding: 20px;
}

.rp-video-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.rp-video-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.rp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F1F5F9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--rp-charcoal-heading);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rp-transition);
}

.rp-modal-close:hover {
    background: #E2E8F0;
    color: var(--rp-primary);
}
