/* ==================================================================
   RENTAL PAGE CSS (Redesign v2)
   ================================================================== */

/* 공통 변??(?�정?? */
:root {
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --card-bg: #111111;
    --card-border: #222222;
    --radius-soft: 12px;
}

/* --- 1. Hero Section (Split Layout) --- */
.rental-hero {
    position: relative;
    width: 100%;
    /* Use clamp for responsive height, min 700px, max 1000px, responsive in between */
    height: clamp(700px, 100vh, 1000px);
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 0;
}

.split-hero-container {
    display: flex;
    align-items: center;
    /* Vertically centers the text block */
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text-area {
    width: 100%;
    max-width: 600px;
    /* Limits text width strictly so it never encroaches infinitely */
    position: relative;
    z-index: 20;
    /* 텍스트 최상단 */
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards 0.5s;
}

.hero-visual-area {
    position: absolute;
    /* Act as a background layer! */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    /* Ensures text links under visuals remain clickable */
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.8s;
}

.rental-hero-label {
    display: inline-block;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(245, 115, 9, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 700;
}

/* --- Hero SVG Animation (Floating Rings) --- */
.hero-svg-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    /* Spacing between icon and title */
    /* Left align with text, if keeping it strictly left-aligned, no auto margin needed */
}

.floating-ring-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.floating-ring-svg .ring {
    fill: none;
    stroke-linecap: round;
    transform-origin: center;
}

.ring-outer {
    stroke: rgba(245, 115, 9, 0.5);
    stroke-width: 3;
    animation: float-pulse-outer 3s ease-in-out infinite alternate;
}

.ring-inner {
    stroke: rgba(245, 115, 9, 0.8);
    stroke-width: 4;
    animation: float-pulse-inner 2s ease-in-out infinite alternate-reverse;
}

.ring-core {
    fill: var(--accent-orange);
    stroke: none;
    animation: float-bounce 2s ease-in-out infinite alternate;
}

@keyframes float-pulse-outer {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes float-pulse-inner {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes float-bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-12px);
    }
}

.rental-hero-title {
    font-family: var(--font-body);
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
    word-break: keep-all;
}

.rental-hero-desc {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0;
    line-height: 1.7;
    font-weight: 300;
    word-break: keep-all;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Visual Area --- */
.hero-visual-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    /* 그라데이션 높이 설정 (하단 35%) */
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 10;
    /* 배경 이미지 위로 올라오도록 설정 */
    pointer-events: none;
}

.hero-main-person {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 화면을 꽉 차게 덮음 */
    object-position: center;
    filter: brightness(0.4);
    /* 화면을 어둡게 눌러 텍스트 가독성 확보 */
    z-index: 0;
}

@media (max-width: 768px) {
    .rental-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        /* Adjust for header if fixed */
        padding-bottom: 50px;
    }

    .split-hero-container {
        padding: 0 20px;
    }

    .hero-text-area {
        width: 100%;
        text-align: center;
    }

    /* Ensure svg and text align center on mobile */
    .hero-svg-icon {
        margin: 0 auto 20px auto;
    }

    .rental-hero-title {
        font-size: clamp(1.4rem, 6.8vw, 2.1rem);
        line-height: 1.4;
        margin-bottom: 15px;
        white-space: nowrap;
    }

    .rental-hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


/* --- 1.5 Target Audience (Sticky Parallax Chat Bubbles) --- */
.rental-chat-parallax {
    width: 100%;
    height: calc(var(--vh, 1vh) * 400);
    /* Allow sufficient scrolling distance to reveal 4 steps */
    background-color: #000;
    position: relative;
}

.chat-sticky-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;

    /* Subtle Grid Pattern */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;

    will-change: background-color;
    /* Hardware accelerate parallax BG change */
}

/* Gradient Fade masks for smooth blending */
.rental-chat-parallax::before,
.rental-chat-parallax::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 15vh;
    z-index: 5;
    pointer-events: none;
}

.rental-chat-parallax::before {
    top: 0;
    /* Hero section background is #000 */
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.rental-chat-parallax::after {
    bottom: 0;
    /* Benefits section background is #050505 */
    background: linear-gradient(to top, #050505 0%, transparent 100%);
}

.text-center {
    text-align: center;
}

.chat-wrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chat-row {
    display: flex;
    align-items: flex-start;
    /* Align to top for natural chat avatar positioning */
    gap: 15px;

    /* Parallax Base Styles */
    opacity: 0;
    transform: translateY(40px);
    /* Pushed down initially */

    /* Smooth transition for when classes are applied */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.chat-row.left {
    justify-content: flex-start;
}

.chat-row.right {
    justify-content: flex-end;
}

/* 
  Parallax State Classes 
  We use the parent wrapper's classes (.step-1, .step-2, etc) 
  added by JS to reveal children sequentially.
*/

/* Step 1: Show 1st Bubble */
#chat-parallax-wrapper.step-1 .chat-step-1,
#chat-parallax-wrapper.step-2 .chat-step-1,
#chat-parallax-wrapper.step-3 .chat-step-1,
#chat-parallax-wrapper.step-4 .chat-step-1 {
    opacity: 1;
    transform: translateY(0);
}

/* Step 2: Show 2nd Bubble */
#chat-parallax-wrapper.step-2 .chat-step-2,
#chat-parallax-wrapper.step-3 .chat-step-2,
#chat-parallax-wrapper.step-4 .chat-step-2 {
    opacity: 1;
    transform: translateY(0);
}

/* Step 3: Show 3rd Bubble */
#chat-parallax-wrapper.step-3 .chat-step-3,
#chat-parallax-wrapper.step-4 .chat-step-3 {
    opacity: 1;
    transform: translateY(0);
}

/* Step 4: Show 4th Bubble */
#chat-parallax-wrapper.step-4 .chat-step-4 {
    opacity: 1;
    transform: translateY(0);
}


.chat-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 70px;
    flex-shrink: 0;
}

.chat-profile img,
.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.chat-profile img {
    object-fit: cover;
}

.chat-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.gofit-profile-img {
    border-radius: 50%;
    border: 2px solid #333;
    padding: 2px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #000;
}

.chat-name {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
}

.chat-bubble {
    position: relative;
    padding: 16px 20px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 75%;
    word-break: keep-all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Base Left Bubble (Client) */
.chat-bubble.gray {
    background-color: #262626;
    color: #e0e0e0;
    border-top-left-radius: 4px;
    /* classic chat look */
}

/* Base Right Bubble (GoFit) */
.gofit-bubble {
    background-color: #f06c00;
    color: #fff;
    border-top-right-radius: 4px;
    /* classic chat look */
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(240, 108, 0, 0.25);
}

.gofit-bubble strong {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

/* Flawless Tails - Left */
.chat-row.left .chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #262626;
    border-bottom-right-radius: 16px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Flawless Tails - Right */
.chat-row.right .chat-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: #f06c00;
    border-bottom-left-radius: 16px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Scroll Indicator Animation */
.chat-scroll-indicator {
    position: absolute;
    top: 15%;
    /* Moved to top as requested */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 10;
}

.chat-scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    position: relative;
}

.chat-scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #f06c00;
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

.chat-scroll-indicator p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }
}

/* Hide indicator when any chat step is active */
#chat-parallax-wrapper.step-1~.chat-scroll-indicator,
#chat-parallax-wrapper.step-2~.chat-scroll-indicator,
#chat-parallax-wrapper.step-3~.chat-scroll-indicator,
#chat-parallax-wrapper.step-4~.chat-scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .chat-sticky-container {
        padding: 0 16px;
    }

    .chat-wrapper {
        gap: 20px;
    }

    .chat-row {
        gap: 10px;
    }

    .chat-bubble {
        padding: 10px 14px;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 65%;
        /* Reduced max-width to prevent invading opposite profile space */
    }

    .chat-profile {
        width: 54px;
        gap: 5px;
    }

    .chat-profile img,
    .chat-avatar {
        width: 44px;
        height: 44px;
    }

    .chat-avatar {
        font-size: 0.82rem;
    }

    .gofit-profile-img {
        width: 46px;
        height: 46px;
    }

    .chat-name {
        font-size: 0.7rem;
    }

    .chat-row.left .chat-bubble::before,
    .chat-row.right .chat-bubble::after {
        top: 0;
    }
}


/* --- 2. Benefits --- */
.rental-benefits {
    padding: 100px 0;
    background-color: #050505;
}

.rental-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.animate-up {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.section-header.animate-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* =========================================
   Unified Section Typography
   (Applied to all sections except Hero)
   ========================================= */

.section-sub-label,
.classic-sub-label {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.section-title,
.info-title,
.classic-title {
    font-family: var(--font-heading, var(--font-body));
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
    word-break: keep-all;
}

.section-desc,
.info-desc,
.classic-desc {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    word-break: keep-all;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-left .section-desc {
    margin-left: 0;
}

/* Global Responsive Rules for Section Headers */
@media (max-width: 992px) {

    .section-title,
    .info-title,
    .classic-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-sub-label,
    .classic-sub-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .section-title,
    .info-title,
    .classic-title {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .section-desc,
    .info-desc,
    .classic-desc {
        font-size: 1rem;
    }
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--card-border);
    transition: 0.3s;
}

/* Rounded Style */
.benefit-card.rounded {
    border-radius: var(--radius-soft);
}

/* High-End Typographic Card Style */
.typo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #111 0%, #080808 100%);
    border: 1px solid #222;
    border-radius: 0;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
}

/* Staggered Entrance Animations */
.typo-card.is-visible {
    animation: cardEntrance 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Animation Delays */
.benefit-grid .typo-card:nth-child(1).is-visible {
    animation-delay: 0.1s;
}

.benefit-grid .typo-card:nth-child(2).is-visible {
    animation-delay: 0.3s;
}

.benefit-grid .typo-card:nth-child(3).is-visible {
    animation-delay: 0.5s;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}



.typo-header {
    margin-bottom: 30px;
}

.typo-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.benefit-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    word-break: keep-all;
    line-height: 1.4;
}

.typo-desc {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    word-break: keep-all;
}

/* --- Benefit UI Panels (Receipt, Stamp, Highlight) --- */
.benefit-ui-box {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 0;
    padding: 20px;
    margin-top: auto;
    height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* Common UI Rows */
.ui-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 0;
    background-color: #111;
}

.ui-row.bad {
    border-left: 3px solid #444;
}

.ui-row.good {
    background: linear-gradient(135deg, rgba(240, 108, 0, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--accent-orange);
    border-top: 1px solid #2a1600;
    border-right: 1px solid #2a1600;
    border-bottom: 1px solid #2a1600;
}

.ui-label {
    font-size: 0.85rem;
    color: #888;
}

.ui-label.text-orange {
    color: var(--accent-orange);
    font-weight: 700;
}

.ui-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.ui-value.strike {
    text-decoration: line-through;
    text-decoration-color: #ff3b30;
    text-decoration-thickness: 2px;
    color: #666;
}

.ui-value-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ui-value.highlight {
    font-size: 1.1rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.ui-sub-value {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 4px;
}

/* Stamp Box (Tax Benefit) */
.stamp-box {
    position: relative;
    padding: 25px 20px;
    background: repeating-linear-gradient(45deg,
            #0a0a0a,
            #0a0a0a 10px,
            #0e0e0e 10px,
            #0e0e0e 20px);
}

.doc-header {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 2px;
    border-bottom: 1px dashed #333;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.doc-body {
    font-size: 0.95rem;
    color: #fff;
}

.doc-footer {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-top: 20px;
    font-weight: 500;
}

.doc-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 8px 12px;
    border-radius: 0;
    transform: rotate(-10deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.9);
    box-shadow: 0 4px 15px rgba(240, 108, 0, 0.2);
}

.doc-stamp span {
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.doc-stamp strong {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Highlight Belt (AS Benefit) */
.ui-highlight-belt {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-orange);
    padding: 15px;
    border-radius: 0;
    color: #fff;
}

.ui-highlight-belt i {
    font-size: 1.2rem;
}

.ui-highlight-belt span {
    font-size: 0.95rem;
}

.ui-highlight-belt strong {
    font-weight: 800;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 30px;
    }
}


/* --- 3. Comparison (Table + Mobile Card) --- */
.rental-compare {
    padding: 100px 0;
    background-color: #000;
}

/* PC Table Default Styles */
.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid #333;
    /* Sharpened edge */
    border-radius: 0;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.compare-table th,
.compare-table td {
    padding: 25px;
    border-bottom: 1px solid #222;
    border-right: 1px solid #222;
    color: #ccc;
    font-size: 1rem;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: none;
}

.compare-table th {
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
}

.compare-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: #0a0a0a;
}

/* Specific Hightlights overriding table cells naturally */
table.compare-table tbody tr td.col-highlight {
    background-color: rgba(240, 108, 0, 0.05);
    color: var(--accent-orange);
    font-weight: 700;
}

table.compare-table thead tr th.col-head-highlight {
    background-color: var(--accent-orange);
    color: #000;
    border-bottom: none;
}

/* ??Mobile Comparison (Card View) ??*/
.compare-mobile-view {
    display: none;
}

/* Animation for Comparison Tables */
.compare-table-wrap.animate-up,
.compare-mobile-view.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.compare-table-wrap.animate-up.is-visible,
.compare-mobile-view.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 3-5. VS Competitors (Table + Mobile Card) --- */
.rental-vs-competitors {
    padding: 100px 0;
    background-color: #050505;
    /* Slightly different dark tone to separate from compare section */
}

/* --- Product Slider (Option 3: Sleek Floating Slider) --- */
.product-slider-wrap {
    width: 100%;
    margin: 40px 0 60px 0;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Space for glow */
}

/* Gradient Masks for Smooth Fade In/Out */
.product-slider-wrap::before,
.product-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    max-width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.product-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.product-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.product-slider-wrap.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-slider-wrap.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-slider-track {
    display: flex;
    width: max-content;
    /* Calculate precise animation duration based on item count */
    animation: scroll-slider 30s linear infinite;
}

.product-slide {
    position: relative;
    width: 250px;
    height: 250px;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px;
    margin-right: 30px;
    /* Replaced flex gap with margin for exact 50% translation math */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Base image state */
.product-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

/* Progress Line (Decorative) */
.slider-progress {
    width: 200px;
    height: 1px;
    background: #333;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--accent-orange);
    animation: progress-loop 3s ease-in-out infinite alternate;
}

@keyframes scroll-slider {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translate exactly half of the total width (the original set) */
        transform: translateX(-50%);
    }
}

@keyframes progress-loop {
    0% {
        left: 0%;
    }

    100% {
        left: 70%;
    }
}

@media (max-width: 768px) {
    .product-slide {
        width: 180px;
        height: 180px;
        padding: 20px;
    }

    .product-slider-wrap {
        margin: 30px 0 40px 0;
    }
}

/* --- 4 Core Features: Ambient Numbering Blocks (Idea 1) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-block {
    position: relative;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 50px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;

    /* Animation States */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ambient-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    /* Slightly brighter unified color */
    user-select: none;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -5px;
}


.feature-content {
    position: relative;
    z-index: 2;
}

.feature-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-heading {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    word-break: keep-all;
}

.feature-desc {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    word-break: keep-all;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .feature-block {
        padding: 40px 30px;
        min-height: 250px;
    }

    .ambient-number {
        font-size: 12rem;
        top: 0;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 30px 20px;
        min-height: 220px;
    }

    .ambient-number {
        font-size: 10rem;
    }

    .feature-heading {
        font-size: 1.2rem;
    }
}

/* Default Hidden */

@media (max-width: 768px) {

    /* PC Table ?�기�?*/
    .pc-view {
        display: none;
    }

    /* Mobile View 보이�?*/
    .compare-mobile-view {
        display: grid;
        gap: 20px;
    }

    .compare-card {
        background: #111;
        border-radius: 0;
        border: 1px solid #333;
        overflow: hidden;
    }

    /* --- VS Competitors Mobile --- */
    .vs-mobile-view {
        display: grid;
        gap: 20px;
    }

    .vs-card {
        background: #0a0a0a;
        border-radius: 0;
        border: 1px solid #222;
        overflow: hidden;
    }

    .vc-header {
        background: #111;
        padding: 15px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        border-bottom: 1px solid #222;
        font-size: 1.1rem;
    }

    .vc-body {
        padding: 20px;
    }

    .vc-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .vc-row:last-child {
        margin-bottom: 0;
    }

    .vc-label {
        font-size: 0.8rem;
        padding: 4px 8px;
        border-radius: 0;
        margin-right: 10px;
        font-weight: 700;
        flex-shrink: 0;
        width: 50px;
        text-align: center;
    }

    .vc-row.other .vc-label {
        background: #222;
        color: #888;
    }

    .vc-row.gofit .vc-label {
        background: var(--accent-orange);
        color: #000;
    }

    .vc-value {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .vc-value.highlight {
        color: var(--accent-orange);
        font-weight: 700;
    }


    .cc-header {
        background: #222;
        padding: 15px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        border-bottom: 1px solid #333;
        font-size: 1.1rem;
    }

    .cc-body {
        padding: 20px;
    }

    .cc-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .cc-row:last-child {
        margin-bottom: 0;
    }

    .cc-label {
        font-size: 0.8rem;
        padding: 4px 8px;
        border-radius: 0;
        margin-right: 10px;
        font-weight: 700;
        flex-shrink: 0;
        width: 50px;
        text-align: center;
    }

    .cc-row.bad .cc-label {
        background: #333;
        color: #888;
    }

    .cc-row.good .cc-label {
        background: var(--accent-orange);
        color: #000;
    }

    .cc-value {
        color: #ddd;
        font-size: 0.95rem;
        line-height: 1.4;
    }
}


/* --- 5. Abstract Nationwide Network Section --- */
.rental-network {
    position: relative;
    padding: 120px 0;
    background-color: #020202;
    /* Extremely dark background */
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* Canvas Background */
.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Gradient Mask to fade top and bottom edges smoothly */
.rental-network::before,
.rental-network::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.rental-network::before {
    top: 0;
    background: linear-gradient(to bottom, #050505 0%, transparent 100%);
}

.rental-network::after {
    bottom: 0;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
}

.network-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.network-content {
    text-align: center;
    max-width: 1300px;
    /* Aligned with .rental-container max-width */
    margin: 0 auto;
}

/* Staggered Animation for inner elements */
.network-content .section-sub-label {
    display: inline-block;
}

.network-content .section-sub-label,
.network-content .section-title,
.network-content .section-desc,
.network-features-row .nf-card {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.network-content.is-visible .section-sub-label {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
}

.network-content.is-visible .section-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.1s;
}

.network-content.is-visible .section-desc {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.2s;
}

.network-content.is-visible .nf-card:nth-child(1) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.3s;
}

.network-content.is-visible .nf-card:nth-child(2) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.4s;
}

.network-content.is-visible .nf-card:nth-child(3) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.5s;
}

.network-content .section-title {
    margin-bottom: 25px;
}

.network-content .section-title strong {
    color: var(--accent-orange);
    font-weight: 900;
}

.network-content .section-desc {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* Feature Cards Row */
.network-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.nf-card {
    background: rgba(15, 15, 15, 0.85);
    /* Darkened to make up for blur removal */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 0;
    /* Changed from 16px to 0 for angular tech feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.nf-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nf-icon-box i {
    font-size: 1.7rem;
    color: var(--accent-orange);
}

.nf-card h4 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.nf-card p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

@media (max-width: 992px) {
    /* Network specific rules if any */
}

@media (max-width: 768px) {
    .rental-network {
        padding: 80px 0;
    }

    .network-content .section-desc {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .network-features-row {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 20px;
    }

    .nf-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
}

/* --- 5.5. Setup Gallery Section --- */
.rental-gallery {
    padding: 100px 0;
    background-color: #050505;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 350px;
    background-color: #111;
    border: 1px solid #222;
    cursor: pointer;
}

/* Desktop-only hover effects (모바일 터치 기기 제외) */
@media (hover: hover) {
    .gallery-item {
        transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .gallery-item:hover {
        border-color: rgba(240, 108, 0, 0.4);
        box-shadow: 0 8px 30px rgba(240, 108, 0, 0.15);
    }

    .gallery-item img {
        transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
        opacity: 0.85;
    }

    .gallery-item:hover .gallery-tag {
        color: #fff;
        transition: color 0.3s ease;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.gallery-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    word-break: keep-all;
}

.gallery-item.animate-up {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item.animate-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Hidden items for Load More */
.hidden-gallery-item {
    display: none;
}

/* Load More Button */
.gallery-more-action {
    margin-top: 50px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 80px;
    background-color: transparent;
    border: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: none;
    /* For custom cursor */
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background-color: #fff;
    color: #000;
}

.btn-load-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}


@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .rental-gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-overlay {
        padding: 20px 15px;
    }

    .gallery-tag {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .gallery-title {
        font-size: 0.95rem;
    }
}

/* --- 5.6. Partners Section --- */
.rental-partners {
    padding: 160px 0 160px 0;
    background-color: #000;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 0;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partners-grid.animate-up {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.partners-grid.animate-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
    .rental-partners {
        padding: 80px 0 60px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-logo {
        height: 100px;
        padding: 20px;
    }
}

/* --- 5.7. FAQ Section --- */
.rental-faq {
    padding: 100px 0;
    background-color: #020202;
    border-top: 1px solid #111;
}

.faq-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-wrapper.animate-up {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-wrapper.animate-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 0;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: none;
    background-color: #0a0a0a;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #111;
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid #222;
    background-color: #111;
}

.q-mark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-right: 20px;
    line-height: 1;
}

.accordion-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
    flex-grow: 1;
    line-height: 1.4;
    word-break: keep-all;
}

.accordion-icon {
    margin-left: 20px;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-orange);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #050505;
}

.accordion-content p {
    padding: 25px 30px 25px 75px;
    /* Aligned with title considering Q mark width */
    margin: 0;
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    word-break: keep-all;
}

.accordion-content p strong {
    color: #ddd;
    font-weight: 700;
}

@media (max-width: 768px) {
    .rental-faq {
        padding: 80px 0;
    }

    .accordion-header {
        padding: 20px;
    }

    .q-mark {
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-content p {
        padding: 20px 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* --- 6. Classic Contact Section --- */
.classic-contact-section {
    padding: 100px 0;
    background-color: #000;
    /* Dark, standard background to match site */
    color: #fff;
}

.contact-grid-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Panel: Info */
.contact-info-panel {
    background: #050505;
    padding: 50px 40px;
    border-radius: 0;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.info-header {
    margin-bottom: 25px;
}

/* Deleted overriding .info-title and .info-desc to leverage Unified Section Typography */

.info-divider {
    width: 40px;
    height: 3px;
    background-color: var(--accent-orange);
    margin-bottom: 35px;
    border-radius: 2px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item.border-highlight {
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(240, 108, 0, 0.1);
    border: 1px solid rgba(240, 108, 0, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-orange);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

.info-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    word-break: keep-all;
}

.info-value:hover {
    color: var(--accent-orange);
}

.w-100 {
    width: 100%;
}

.text-sm {
    font-size: 0.95rem;
}

.addr-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.direct-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.dl-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dl-tag {
    font-size: 0.8rem;
    background: #222;
    color: #aaa;
    padding: 3px 8px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}



.info-value:hover {
    color: var(--accent-orange);
}

.tel-main {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-orange);
}

.tel-sub {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Right Panel: Form Box */
.classic-contact-wrapper {
    background: #050505;
    padding: 60px 70px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #222;
}

/* Header Specific to Classic Form */
.classic-header {
    margin-bottom: 40px;
}

/* Deleted overriding .classic-title and .classic-desc to leverage Unified Section Typography */

/* Classic Form Styles */
.classic-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cf-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ddd;
}

.cf-group label .req {
    color: var(--accent-orange);
    margin-left: 3px;
}

.cf-group input,
.cf-group textarea {
    width: 100%;
    border: 1px solid #444;
    border-radius: 0;
    padding: 15px;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
    background: #111;
    transition: all 0.3s ease;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
    color: #666;
}

/* 브라우저 자동완성 시 배경색 변경 방지 */
.cf-group input:-webkit-autofill,
.cf-group input:-webkit-autofill:hover,
.cf-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #111 inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #fff;
}

.cf-group input:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.cf-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Radios */
.cf-radio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.cf-radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #ccc;
}

.cf-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 0;
    margin: 0;
    position: relative;
    transition: all 0.2s ease;
    background: transparent;
}

.cf-radio input[type="radio"]:checked {
    border-color: var(--accent-orange);
}

.cf-radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent-orange);
    border-radius: 0;
}

/* Submit */
.cf-submit-btn {
    width: 100%;
    padding: 20px;

    background-color: transparent;
    border: 1px solid #444;
    color: #fff;

    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;

    transition: all 0.3s ease;

    font-family: inherit;
    letter-spacing: 1px;
    margin-top: 10px;
    border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
    .cf-submit-btn:hover {
        background-color: var(--accent-orange);
        border-color: var(--accent-orange);
        color: #fff;
    }
}

/* Removed classic-contact-info as it is now in the left panel */

/* Responsive */
@media (max-width: 992px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .classic-contact-wrapper {
        padding: 40px 20px;
    }

    .contact-info-panel {
        padding: 40px 20px;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }

    .classic-title {
        font-size: 2rem;
    }
}

/* --- Added: Paradigm Section --- */
.rental-paradigm {
    min-height: 100dvh;
    padding: 100px 0;
    background-color: #030303;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rental-paradigm .rental-container {
    width: 100%;
}

.paradigm-text-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.paradigm-text-wrap .p-sub {
    font-size: 1.05rem;
    color: #888;
    margin-top: 2px;
    line-height: 1.4;
}

.chart-container-wrap {
    margin-top: 50px;
    width: 100%;
    background: linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
    border: 1px solid #1a1a1a;
    border-radius: 0px;
    padding: 50px 20px 55px;
    box-sizing: border-box;
}

.chart-subtitle {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.paradigm-charts {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.chart-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.donut-chart {
    position: relative;
    width: 240px;
    height: 240px;
}

.donut-chart svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.donut-bg {
    fill: none;
    stroke: #222;
    stroke-width: 12;
}

.donut-fill {
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 12;
    stroke-dasharray: 439.82;
    /* 2 * pi * 70 */
    stroke-dashoffset: 439.82;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.donut-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
}

.chart-year {
    font-size: 1.6rem;
    margin-top: 5px;
    font-family: var(--font-heading);
    color: #aaa;
}

/* Feature Block Hovers */
/* Removed transition override to allow the 0.8s entrance animation (line 1138) to apply to hovers too! */

/* Apply Hovers exclusively to devices that support it */
@media (hover: hover) and (pointer: fine) {
    .feature-block:hover {
        transform: translateY(-8px);
        border-color: rgba(245, 115, 9, 0.4);
        background-color: #140d06;
        /* Use solid color for smooth CSS transition */
        box-shadow: 0 10px 30px rgba(245, 115, 9, 0.05);
    }
}

@media (max-width: 768px) {
    .rental-paradigm {
        padding: 60px 0;
    }

    .chart-container-wrap {
        padding: 35px 20px 40px;
        border-radius: 12px;
    }

    .chart-subtitle {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .paradigm-charts {
        gap: 30px;
    }

    .donut-chart {
        width: 160px;
        height: 160px;
    }

    .donut-text {
        font-size: 2.2rem;
    }
}
