/* ============================================
   Home Page V2 Styles
   Based on Figma design: vch2O8dImsblCQZ8kz9C3U
   ============================================ */

:root {
    --v2-green: #9ac531;
    --v2-dark: #3c3d40;
    --v2-light-bg: #f6f6f6;
    --v2-yellow: #f9cd13;
    --v2-orange: #f60;
    --v2-white: #ffffff;
    --v2-radius: 30px;
    --v2-radius-sm: 20px;
    --v2-radius-pill: 50px;
    --v2-font-heading: 'PompeiBold', 'RubikBold', sans-serif;
    --v2-font-body: 'DiscoveryLight', 'RubikRegular', sans-serif;
    --v2-font-body-regular: 'DiscoveryRegular', 'RubikRegular', sans-serif;
    --v2-font-bold: 'DiscoveryBold', 'RubikBold', sans-serif;
}

.home-page-v2 {
    direction: rtl;
    text-align: right;
    overflow: hidden;
    unicode-bidi: embed;
}

.home-page-v2 .v2-catalog-bg-text,
.home-page-v2 .v2-deals-bg-text,
.home-page-v2 .v2-projects-bg-text {
    direction: ltr;
    unicode-bidi: bidi-override;
}

.v2-container {
    max-width: 1792px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ============================================
   Utility Classes
   ============================================ */
.v2-color-green {
    color: var(--v2-green);
}

.v2-title-decoration {
    display: flex;
    flex-direction: row;
    width: 70px;
    height: 4px;
    margin-bottom: 6px;
}

.v2-title-decoration span {
    flex: 1;
    height: 4px;
}

.v2-title-decoration span:nth-child(1) {
    background: var(--v2-yellow);
}

.v2-title-decoration span:nth-child(2) {
    background: var(--v2-green);
}

.v2-title-decoration span:nth-child(3) {
    background: var(--v2-orange);
}

/* ============================================
   Buttons
   ============================================ */
.v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--v2-radius-pill);
    padding: 12px 30px;
    font-family: var(--v2-font-body-regular);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.v2-btn-green {
    background: var(--v2-green);
    color: var(--v2-white);
}

.v2-btn-green:hover {
    background: #88b02a;
    color: var(--v2-white);
}

.v2-btn-dark {
    background: var(--v2-dark);
    color: var(--v2-white);
}

.v2-btn-dark:hover {
    background: #2a2b2d;
    color: var(--v2-white);
}

.v2-btn-arrow {
    font-size: 20px;
    line-height: 1;
}

.v2-btn-pill {
    display: inline-flex;
    flex-direction: row;
    direction: ltr;
    align-items: center;
    height: 48px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.v2-btn-pill-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--v2-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-right: 0px;
}

.v2-btn-pill-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 182px;
    padding: 0 28px 0 40px;
    background: var(--v2-green);
    border-radius: 50px;
    font-family: var(--v2-font-body);
    font-size: 20px;
    line-height: 1;
    color: var(--v2-white);
    white-space: nowrap;
}

.v2-btn-pill-arrow {
    display: block;
    width: 25px;
    height: 12px;
    color: var(--v2-white);
}

.v2-btn-pill:hover .v2-btn-pill-circle,
.v2-btn-pill:hover .v2-btn-pill-text {
    background: #88b02a;
}

.v2-btn-pill:hover {
    transform: translateY(-1px);
}

/* ============================================
   Hero Section
   ============================================ */
.v2-hero-section {
    position: relative;
    padding: 40px 0 80px;
    min-height: 820px;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.v2-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.v2-hero-bg-shape {
    position: absolute;
    top: 30px;
    left: 45%;
    transform: translateX(-40%);
    width: min(1715px, 94%);
    height: 732px;
    max-height: calc(100% - 20px);
    background: var(--v2-light-bg);
    border-radius: 400px 30px 30px 400px;
}

.v2-hero-bg-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-75%, -50%);
    width: 762px;
    height: 762px;
    border-radius: 50%;
    background: var(--v2-green);
}

.v2-hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1792px;
    margin: 0 auto;
    padding: 0 64px;
}

.v2-hero-content {
    flex: 0 0 54%;
    max-width: 1034px;
    text-align: right;
    padding-top: 20px;
}

.v2-hero-image {
    flex: 0 0 50%;
    max-width: 961px;
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-bottom: -165px;
}

.v2-hero-image img {
    width: 100%;
    height: auto;
    max-height: 587px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

.v2-hero-title {
    font-family: var(--v2-font-heading);
    font-size: clamp(56px, 5.7vw, 110px);
    line-height: 1;
    color: var(--v2-dark);
    margin: 0 0 2px;
}

.v2-hero-desc {
    font-family: var(--v2-font-body);
    font-size: 20px;
    line-height: 1.5;
    color: var(--v2-dark);
    margin: 0 0 31px;
    max-width: 507px;
    margin-right: 0;
    margin-left: auto;
}

.v2-hero-desc strong,
.v2-hero-desc b {
    font-family: var(--v2-font-bold);
}

.v2-hero-btn {
    margin-bottom: 0;
}

/* ============================================
   Hero Features (under text content)
   ============================================ */
.v2-hero-features {
    margin-top: 45px;
    width: 100%;
    max-width: 765px;
    margin-right: 0;
    margin-left: auto;
}

.v2-hero-line {
    width: 100%;
    height: 1px;
    background: var(--v2-dark);
    margin-bottom: 20px;
}

.v2-features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.v2-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
}

.v2-feature-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.v2-feature-item span {
    font-family: var(--v2-font-bold);
    font-size: 20px;
    color: var(--v2-dark);
    white-space: nowrap;
}

/* ============================================
   Products Section (shared)
   ============================================ */
.v2-products-section {
    padding: 20px 0 60px;
}

.v2-bestsellers-section {
    padding-top: 10px;
}

.v2-section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    min-height: 74px;
}

.v2-section-title-group {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.v2-section-title {
    font-family: var(--v2-font-heading);
    font-size: 48px;
    color: var(--v2-dark);
    margin: 0;
    line-height: 1.2;
}

.v2-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 33px;
}

.v2-product-card {
    background: var(--v2-light-bg);
    border-radius: var(--v2-radius);
    padding: 11px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.v2-product-image {
    width: 90%;
    aspect-ratio: 305/243;
    border-radius: var(--v2-radius-sm);
    overflow: hidden;
}

.v2-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-product-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: center;
    padding: 0 15px 15px;
    width: 100%;
}

.v2-product-name {
    font-family: var(--v2-font-body);
    font-size: 20px;
    color: var(--v2-dark);
    margin: 0;
}

.v2-product-price {
    font-family: var(--v2-font-bold);
    font-size: 20px;
    color: var(--v2-dark);
    margin: 0;
}

.v2-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-direction: row-reverse;
    background: var(--v2-dark);
    color: var(--v2-white);
    border-radius: var(--v2-radius);
    padding: 13px 20px;
    font-family: var(--v2-font-body-regular);
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.v2-product-btn:hover {
    background: #2a2b2d;
    color: var(--v2-white);
}

/* ============================================
   Catalog Section
   ============================================ */
.v2-catalog-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

.v2-catalog-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 205px), -50%);
    width: min(1804px, 125%);
    height: 553px;
    z-index: 0;
    pointer-events: none;
}

.v2-catalog-bg-shape {
    position: absolute;
    inset: 0;
    background: var(--v2-light-bg);
    border-radius: 50px 400px 400px 50px;
}

.v2-catalog-bg-text {
    position: absolute;
    top: 42%;
    left: 58%;
    transform: translate(-50%, -50%);
    font-family: var(--v2-font-heading);
    font-size: clamp(120px, 19vw, 370px);
    line-height: 0.85;
    color: var(--v2-white);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    direction: ltr;
    user-select: none;
}

.v2-catalog-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.v2-catalog-header {
    text-align: right;
    margin-bottom: 40px;
    max-width: 250px;
    width: 100%;
}

.v2-catalog-title {
    font-family: var(--v2-font-heading);
    font-size: 64px;
    line-height: 1.05;
    color: var(--v2-dark);
    margin: 0 0 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.v2-catalog-title-line2 {
    display: block;
    color: var(--v2-dark);
}

.v2-catalog-desc {
    font-family: var(--v2-font-body);
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    margin: 0;
    max-width: 220px;
    margin-right: 0;
    margin-left: auto;
}

.v2-catalog-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 19px;
}

.v2-catalog-card {
    position: relative;
    border-radius: var(--v2-radius);
    overflow: hidden;
    height: 466px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.v2-catalog-card:hover {
    transform: translateY(-5px);
}

.v2-catalog-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.v2-catalog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(60, 61, 64, 0.16) 0%, rgba(60, 61, 64, 0.8) 100%);
}

.v2-catalog-card-content {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 25px 20px 37px;
    text-align: right;
}

.v2-catalog-card-content h3 {
    font-family: var(--v2-font-heading);
    font-size: 28px;
    line-height: 1.15;
    color: var(--v2-white);
    margin: 0;
}

.v2-catalog-card-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    z-index: 2;
    width: 49px;
    height: 49px;
}

.v2-catalog-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ============================================
   Deals / Special Section
   ============================================ */
.v2-deals-section {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
    isolation: isolate;
}

.v2-deals-inner {
    direction: ltr;
    display: flex;
    align-items: center;
    max-width: 1792px;
    margin: 0 auto;
    padding: 0 64px;
    min-height: 650px;
    position: relative;
}

.v2-deals-content {
    flex: 0 0 479px;
    max-width: 479px;
    direction: rtl;
    text-align: right;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.v2-deals-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.v2-deals-content .v2-deals-title,
.v2-deals-content .v2-deals-desc {
    margin: 0;
}

.v2-deals-title {
    font-family: var(--v2-font-heading);
    font-size: 64px;
    line-height: 70px;
    color: var(--v2-dark);
    max-width: 391px;
}

.v2-deals-desc {
    font-family: var(--v2-font-body);
    font-size: 20px;
    color: var(--v2-dark);
    line-height: 1.5;
    max-width: 391px;
}

.v2-deals-stage {
    flex: 1;
    position: relative;
    min-height: 553px;
    margin-left: 40px;
}

.v2-deals-bg-shape {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-45%);
    width: 1175px;
    max-width: 115%;
    height: 553px;
    background: var(--v2-green);
    border-radius: 400px 50px 50px 400px;
    z-index: 1;
}

.v2-deals-bg-text {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-52%);
    font-family: var(--v2-font-heading);
    font-size: clamp(100px, 20vw, 370px);
    line-height: 0.9;
    color: var(--v2-white);
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
    direction: ltr;
    user-select: none;
}

.v2-deals-image {
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translate(25%, -54%);
    width: 463px;
    max-width: 42%;
    z-index: 3;
}

.v2-deals-image img {
    width: 100%;
    height: auto;
    max-height: 719px;
    object-fit: contain;
    display: block;
}

/* ============================================
   Projects Section
   ============================================ */
.v2-projects-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
}

.v2-projects-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 63px), -50%);
    width: min(1852px, 125%);
    height: 553px;
    background: var(--v2-light-bg);
    border-radius: 50px 400px 400px 50px;
    z-index: 0;
}

.v2-projects-bg-text {
    position: absolute;
    top: 50%;
    right: max(40px, calc(50% - 820px));
    transform: translateY(-58%);
    font-family: var(--v2-font-heading);
    font-size: clamp(120px, 18vw, 370px);
    line-height: 0.9;
    color: var(--v2-white);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    direction: ltr;
    user-select: none;
}

.v2-projects-bg-shape {
    pointer-events: none;
}

.v2-projects-layout {
    position: relative;
    z-index: 1;
    direction: ltr;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 440px)) minmax(260px, 424px);
    gap: 59px;
    align-items: start;
    justify-content: space-between;
}

.v2-projects-layout > .v2-project-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.v2-projects-layout > .v2-project-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.v2-projects-layout > .v2-project-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.v2-projects-layout > .v2-projects-header {
    grid-column: 4;
    grid-row: 1;
}

.v2-projects-layout > .v2-project-card:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.v2-projects-layout > .v2-project-card:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
}

.v2-projects-layout > .v2-project-card:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
}

.v2-projects-header {
    direction: rtl;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.v2-projects-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
}

.v2-projects-title {
    font-family: var(--v2-font-heading);
    font-size: 48px;
    line-height: 50px;
    color: var(--v2-dark);
    margin: 0;
}

.v2-projects-title span {
    display: block;
}

.v2-projects-desc {
    font-family: var(--v2-font-body);
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    margin: 0;
    max-width: 227px;
}

.v2-project-card {
    position: relative;
    border-radius: var(--v2-radius);
    overflow: hidden;
    height: 538px;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.v2-project-card:hover {
    transform: translateY(-5px);
}

.v2-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(60, 61, 64, 0) 50%, rgba(60, 61, 64, 0.8) 100%);
}

.v2-project-card-content {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1;
}

.v2-project-card-content h3 {
    font-family: var(--v2-font-heading);
    font-size: 28px;
    line-height: 30px;
    color: var(--v2-white);
    margin: 0;
    text-align: right;
    flex: 1;
}

.v2-project-card-icon {
    width: 69px;
    height: 69px;
    flex-shrink: 0;
    transform: rotate(-45deg);
}

.v2-project-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   Reviews Section
   ============================================ */
.v2-reviews-section {
    padding: 80px 0;
}

.v2-reviews-title-group {
    text-align: right;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
}

.v2-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.v2-review-card {
    background: var(--v2-light-bg);
    border-radius: var(--v2-radius);
    padding: 40px 35px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v2-review-avatar {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.v2-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-review-name {
    font-family: var(--v2-font-heading);
    font-size: 28px;
    color: var(--v2-dark);
    margin: 0;
}

.v2-review-text {
    font-family: var(--v2-font-body);
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.v2-review-stars {
    display: flex;
    gap: 8px;
    background: var(--v2-green);
    border-radius: var(--v2-radius-pill);
    padding: 8px 30px;
    width: fit-content;
}

.v2-star {
    font-size: 28px;
    color: var(--v2-white);
}

/* ============================================
   Showroom Section
   ============================================ */
.v2-showroom-section {
    padding: 60px 0 80px;
}

.v2-showroom-card {
    position: relative;
    direction: ltr;
    border-radius: 50px;
    overflow: hidden;
    height: 439px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.v2-showroom-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-showroom-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(60, 61, 64, 0.9) 0%, rgba(60, 61, 64, 0.45) 35%, rgba(60, 61, 64, 0) 72%);
}

.v2-showroom-content {
    position: relative;
    z-index: 1;
    direction: rtl;
    width: min(540px, 100%);
    padding: 100px 0 97px 126px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    justify-content: center;
}

.v2-showroom-title {
    font-family: var(--v2-font-heading);
    font-size: 64px;
    line-height: 70px;
    color: var(--v2-white);
    margin: 0;
}

.v2-showroom-title-line {
    display: block;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1400px) {
    .v2-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .v2-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .v2-hero-title {
        font-size: 70px;
    }
    
    .v2-hero-section {
        min-height: 600px;
    }
    
    .v2-hero-bg-shape {
        width: 110%;
        height: 520px;
        top: 20px;
        border-radius: 280px 20px 20px 280px;
    }

    .v2-hero-bg-circle {
        width: 520px;
        height: 520px;
        left: 0;
        transform: translate(-50%, -50%);
    }
    
    .v2-catalog-bg-text,
    .v2-deals-bg-text,
    .v2-projects-bg-text {
        font-size: 250px;
    }

    .v2-catalog-stage {
        transform: translate(-50%, -50%);
        width: min(1400px, 130%);
        height: 480px;
    }

    .v2-catalog-bg-text {
        left: 50%;
        top: 44%;
    }
}

@media (max-width: 1400px) {
    .v2-hero-image {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .v2-hero-title {
        font-size: clamp(48px, 6vw, 90px);
    }
}

@media (max-width: 1200px) {
    .v2-container {
        padding: 0 40px;
    }
    
    .v2-hero-container {
        padding: 0 40px;
    }
    
    .v2-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .v2-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .v2-catalog-card {
        height: 380px;
    }
    
    .v2-projects-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .v2-projects-layout > .v2-project-card:nth-child(n),
    .v2-projects-layout > .v2-projects-header {
        grid-column: auto;
        grid-row: auto;
    }

    .v2-projects-layout > .v2-projects-header {
        grid-column: 1 / -1;
        order: -1;
    }
    
    .v2-project-card {
        height: 420px;
    }
    
    .v2-section-title {
        font-size: 38px;
    }
    
    .v2-deals-title,
    .v2-catalog-title,
    .v2-showroom-title {
        font-size: 48px;
    }

    .v2-hero-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .v2-hero-image {
        flex: none;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        align-self: center;
    }

    .v2-hero-content {
        flex: none;
        max-width: 100%;
    }

    .v2-hero-image img {
        max-height: 420px;
    }

    .v2-deals-inner {
        padding: 0 40px;
    }

    .v2-deals-stage {
        min-height: 480px;
    }

    .v2-projects-bg-shape {
        width: 135%;
        height: 460px;
        transform: translate(-50%, -48%);
    }

    .v2-projects-bg-text {
        font-size: clamp(90px, 16vw, 200px);
        right: 50%;
        top: 42%;
        transform: translate(50%, -50%);
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
    .home-page-v2 {
        overflow-x: hidden;
    }

    .v2-container {
        padding: 0 20px;
    }
    
    .v2-hero-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 24px;
    }
    
    .v2-hero-image,
    .v2-hero-content {
        flex: none;
        max-width: 100%;
    }
    
    .v2-hero-image {
        margin-top: 0;
        margin-bottom: 0;
        order: -1;
        align-self: center;
        width: 100%;
    }

    .v2-hero-image img {
        max-height: 320px;
        margin: 0 auto;
    }
    
    .v2-hero-content {
        padding-top: 0;
    }
    
    .v2-hero-title {
        font-size: 42px;
    }
    
    .v2-hero-desc {
        font-size: 16px;
        max-width: 100%;
        margin-left: 0;
    }
    
    .v2-hero-section {
        min-height: auto;
        padding: 30px 0 50px;
    }
    
    .v2-hero-bg-shape {
        width: 130%;
        height: 380px;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 200px 16px 16px 200px;
    }

    .v2-hero-bg-circle {
        width: 360px;
        height: 360px;
        left: 0;
        transform: translate(-50%, -50%);
    }
    
    .v2-hero-features {
        max-width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    
    .v2-features-row {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px 20px;
    }
    
    .v2-feature-item span {
        font-size: 14px;
        white-space: normal;
    }

    .v2-btn-pill {
        max-width: 100%;
    }

    .v2-btn-pill-text {
        min-width: 0;
        flex: 1;
        padding: 0 22px 0 32px;
        font-size: 16px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .v2-btn-pill-circle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .v2-btn-pill {
        height: 44px;
    }
    
    .v2-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        min-height: 0;
    }

    .v2-section-title-group {
        width: 100%;
    }
    
    .v2-section-title {
        font-size: 30px;
    }
    
    .v2-products-section {
        padding: 16px 0 40px;
    }

    .v2-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        overflow-x: visible;
    }
    
    .v2-product-card {
        padding: 8px;
        gap: 16px;
        min-width: 0;
    }

    .v2-product-info {
        gap: 12px;
        padding: 0 8px 10px;
    }
    
    .v2-product-name {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .v2-product-price {
        font-size: 16px;
    }
    
    .v2-product-btn {
        font-size: 13px;
        padding: 10px 12px;
        gap: 6px;
    }
    
    .v2-catalog-section {
        padding: 48px 0 40px;
    }

    .v2-catalog-stage {
        top: auto;
        bottom: 8%;
        left: 50%;
        width: 130%;
        height: 300px;
        transform: translate(-50%, 0);
    }

    .v2-catalog-bg-text {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: clamp(72px, 24vw, 120px);
    }

    .v2-catalog-layout {
        align-items: stretch;
    }
    
    .v2-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        position: relative;
        z-index: 2;
    }
    
    .v2-catalog-card {
        height: 280px;
        min-width: 0;
    }

    .v2-catalog-card-content {
        padding: 16px 14px 24px;
    }
    
    .v2-catalog-card-content h3 {
        font-size: 18px;
        line-height: 1.2;
    }

    .v2-catalog-card-icon {
        width: 40px;
        height: 40px;
        top: 12px;
        left: 12px;
    }
    
    .v2-catalog-header {
        padding-right: 0;
        max-width: 100%;
        position: relative;
        z-index: 2;
        margin-bottom: 28px;
    }

    .v2-catalog-title {
        align-items: flex-start;
        font-size: 36px;
        line-height: 1.15;
    }

    .v2-catalog-desc {
        max-width: 100%;
        margin-left: 0;
        font-size: 16px;
    }
    
    .v2-deals-section {
        padding: 40px 0 60px;
    }

    .v2-deals-title {
        font-size: 36px;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .v2-deals-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        min-height: auto;
        gap: 32px;
    }
    
    .v2-deals-content {
        flex: none;
        max-width: 100%;
        z-index: 2;
    }

    .v2-deals-copy {
        align-items: flex-start;
    }
    
    .v2-deals-desc {
        max-width: 100%;
        font-size: 16px;
    }
    
    .v2-deals-stage {
        min-height: 360px;
        margin-left: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .v2-deals-image {
        position: absolute;
        right: 50%;
        top: 52%;
        transform: translate(50%, -50%);
        max-width: 75%;
        width: 280px;
    }
    
    .v2-deals-bg-shape {
        width: 130%;
        right: 50%;
        transform: translate(50%, -45%);
        height: 340px;
    }

    .v2-deals-bg-text {
        right: 50%;
        top: 48%;
        transform: translate(50%, -50%);
        font-size: clamp(72px, 22vw, 120px);
    }
    
    .v2-projects-section {
        padding: 48px 0;
    }

    .v2-projects-bg-shape {
        width: 140%;
        height: 340px;
        top: 38%;
        transform: translate(-50%, -50%);
    }

    .v2-projects-bg-text {
        font-size: clamp(64px, 20vw, 110px);
        right: 50%;
        top: 32%;
        transform: translate(50%, -50%);
    }

    .v2-projects-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        position: relative;
        z-index: 2;
    }

    .v2-projects-layout > .v2-project-card:nth-child(n),
    .v2-projects-layout > .v2-projects-header {
        grid-column: auto;
        grid-row: auto;
    }

    .v2-projects-layout > .v2-projects-header {
        grid-column: 1;
        order: -1;
        margin-bottom: 12px;
        align-items: flex-start;
    }

    .v2-projects-heading {
        align-items: flex-start;
    }

    .v2-projects-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .v2-projects-desc {
        max-width: 100%;
        font-size: 16px;
    }
    
    .v2-project-card {
        height: 300px;
    }

    .v2-project-card-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        gap: 12px;
    }

    .v2-project-card-content h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .v2-project-card-icon {
        width: 52px;
        height: 52px;
    }
    
    .v2-reviews-section {
        padding: 48px 0;
    }

    .v2-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v2-review-card {
        padding: 28px 24px;
    }
    
    .v2-showroom-section {
        padding: 40px 0 56px;
    }

    .v2-showroom-card {
        height: auto;
        min-height: 320px;
        border-radius: 30px;
    }
    
    .v2-showroom-content {
        padding: 36px 24px;
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        gap: 20px;
    }
    
    .v2-showroom-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .v2-showroom-overlay {
        background: linear-gradient(180deg, rgba(60, 61, 64, 0.92) 0%, rgba(60, 61, 64, 0.72) 45%, rgba(60, 61, 64, 0.35) 100%);
    }
}

/* ============================================
   Scroll Animations
   ============================================ */
.v2-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.v2-animate.v2-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive - Small Mobile
   ============================================ */
@media (max-width: 480px) {
    .v2-hero-title {
        font-size: 32px;
    }

    .v2-hero-image img {
        max-height: 260px;
    }
    
    .v2-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    
    .v2-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .v2-catalog-card {
        height: 220px;
    }

    .v2-catalog-card-content h3 {
        font-size: 16px;
    }

    .v2-catalog-card-icon {
        width: 34px;
        height: 34px;
    }

    .v2-catalog-stage {
        height: 240px;
        bottom: 5%;
    }

    .v2-catalog-bg-text {
        font-size: clamp(56px, 20vw, 88px);
    }
    
    .v2-section-title {
        font-size: 26px;
    }

    .v2-catalog-title,
    .v2-deals-title,
    .v2-projects-title,
    .v2-showroom-title {
        font-size: 30px;
    }
    
    .v2-btn-pill-text {
        font-size: 14px;
        padding: 0 16px 0 24px;
    }

    .v2-btn-pill-circle {
        width: 40px;
        height: 40px;
    }

    .v2-btn-pill {
        height: 40px;
    }
    
    .v2-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .v2-deals-stage {
        min-height: 300px;
    }

    .v2-deals-bg-shape {
        height: 280px;
    }

    .v2-deals-image {
        width: 220px;
        max-width: 85%;
    }

    .v2-project-card {
        height: 260px;
    }

    .v2-showroom-card {
        min-height: 280px;
    }

    .v2-showroom-content {
        padding: 28px 20px;
    }
}
