/* =====================================================
   VARLIKLAR PAGE — varliklar.css
   ===================================================== */

.vrl-page {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #1a1a1a;
    padding-top: 80px;
}

/* =====================================================
   SHARED UTILITIES
   ===================================================== */

.vrl-section-badge {
    display: inline-block;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bc7636;
    margin-bottom: 14px;
    border: 1px solid rgba(188, 118, 54, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
}

.vrl-section-badge--light {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.3);
}

.vrl-section-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.vrl-section-desc {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.vrl-section-subdesc {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

.vrl-link-arrow {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bc7636;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.vrl-link-arrow:hover {
    color: #a06028;
    gap: 12px;
    text-decoration: none;
}

/* Buttons */
.vrl-btn {
    display: inline-block;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.vrl-btn--primary {
    background: #bc7636;
    color: #fff;
    border-color: #bc7636;
}

.vrl-btn--primary:hover {
    background: #a06028;
    border-color: #a06028;
    color: #fff;
    text-decoration: none;
}

.vrl-btn--outline {
    background: transparent;
    color: #1a1a1a;
    border-color: rgba(26, 26, 26, 0.35);
}

.vrl-btn--outline:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
}

.vrl-btn--outline-dark {
    background: transparent;
    color: #1a1a1a;
    border-color: #c0c0c0;
}

.vrl-btn--outline-dark:hover {
    border-color: #1a1a1a;
    text-decoration: none;
    color: #1a1a1a;
}

.vrl-btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.vrl-btn--outline-light:hover {
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.vrl-btn--white {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.vrl-btn--white:hover {
    background: #f0ece6;
    border-color: #f0ece6;
    color: #1a1a1a;
    text-decoration: none;
}

.vrl-btn--gold {
    background: #bc7636;
    color: #fff;
    border-color: #bc7636;
}

.vrl-btn--gold:hover {
    background: #a06028;
    border-color: #a06028;
    color: #fff;
    text-decoration: none;
}

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

.vrl-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.vrl-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.vrl-hero:hover .vrl-hero-bg {
    transform: scale(1);
}

.vrl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.78) 100%);
}

.vrl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 64px 0;
    margin-top: 120px;
}

.vrl-hero-eyebrow {
    display: block;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.vrl-hero-title {
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}

.vrl-hero-desc {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.vrl-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.vrl-hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 28px 64px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.vrl-hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 40px 0 0;
}

.vrl-hero-stat-num {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 5px;
}

.vrl-hero-stat-lbl {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.vrl-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    margin: 0 40px 0 0;
    flex-shrink: 0;
}

/* =====================================================
   CATEGORIES
   ===================================================== */

.vrl-categories {
    padding: 60px 0;
    background: #fff;
}

.vrl-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vrl-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    background: #fff;
}

.vrl-cat-card:hover,
.vrl-cat-card--active {
    border-color: #bc7636;
    box-shadow: 0 8px 32px rgba(188, 118, 54, 0.12);
    transform: translateY(-3px);
    color: #1a1a1a;
    text-decoration: none;
}

.vrl-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f7f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #bc7636;
    margin-bottom: 16px;
    transition: background 0.25s;
}

.vrl-cat-card:hover .vrl-cat-icon,
.vrl-cat-card--active .vrl-cat-icon {
    background: #bc7636;
    color: #fff;
}

.vrl-cat-name {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.vrl-cat-sub {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.04em;
}

/* =====================================================
   WHO WE ARE
   ===================================================== */

.vrl-whowe {
    padding: 80px 0;
    background: #faf9f7;
}

.vrl-whowe-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.vrl-whowe-text {
    padding-right: 24px;
}

.vrl-whowe-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px;
    gap: 12px;
}

.vrl-mosaic-item {
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vrl-mosaic-item--tall {
    grid-row: span 2;
}

.vrl-mosaic-item--wide {
    grid-column: span 2;
}

/* =====================================================
   FEATURING BANNER
   ===================================================== */

.vrl-featuring {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vrl-featuring-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.vrl-featuring-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
}

.vrl-featuring-content {
    position: relative;
    z-index: 2;
    padding: 60px 32px;
}

.vrl-featuring-content h2 {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.vrl-featuring-content p {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}

/* =====================================================
   GLOBAL REACH
   ===================================================== */

.vrl-reach {
    padding: 80px 0;
    background: #fff;
}

.vrl-reach-head {
    text-align: center;
    margin-bottom: 56px;
}

.vrl-reach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

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

.vrl-reach-item {
    padding: 36px 24px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.vrl-reach-item:hover {
    border-color: #bc7636;
    box-shadow: 0 6px 24px rgba(188,118,54,0.10);
}

.vrl-reach-icon {
    font-size: 28px;
    color: #bc7636;
    margin-bottom: 18px;
}

.vrl-reach-item h3 {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}

.vrl-reach-item p {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   TESTIMONIAL
   ===================================================== */

.vrl-testimonial {
    padding: 80px 0;
    background: #faf9f7;
}

.vrl-testimonial-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.vrl-testimonial-quote {
    padding: 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

.vrl-quote-icon {
    font-size: 32px;
    color: #bc7636;
    margin-bottom: 20px;
    display: block;
}

.vrl-quote-text {
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: #2a2a2a;
    margin-bottom: 28px;
}

.vrl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0ece6;
}

.vrl-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f7f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #bc7636;
    flex-shrink: 0;
}

.vrl-author-info strong {
    display: block;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.vrl-author-info span {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.04em;
}

.vrl-testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vrl-t-stat {
    text-align: center;
}

.vrl-t-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 300;
    color: #bc7636;
    margin-bottom: 4px;
}

.vrl-t-stat-lbl {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.vrl-testimonial-image {
    height: 460px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

/* =====================================================
   PARTNERS
   ===================================================== */

/* Seçkin İş Ortaklarımız — anasayfa ile aynı yapı (luxury-logo-grid) */
.luxury-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    padding: 20px 0 10px;
}

.luxury-logo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.luxury-logo-item img {
    width: 110px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.luxury-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =====================================================
   MARKET REPORT
   ===================================================== */

.vrl-report {
    background: #0d0d0d;
    padding: 80px 64px;
    display: flex;
    justify-content: center;
}

.vrl-report-inner {
    max-width: 680px;
    text-align: center;
}

.vrl-report-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bc7636;
    border: 1px solid rgba(188, 118, 54, 0.4);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.vrl-report-title {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.vrl-report-desc {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 28px;
}

.vrl-report-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    margin-bottom: 36px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.vrl-report-point {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vrl-report-point i {
    color: #bc7636;
    font-size: 11px;
    flex-shrink: 0;
}

/* =====================================================
   PLATFORM FEATURES
   ===================================================== */

.vrl-platform {
    padding: 80px 0;
    background: #faf9f7;
}

.vrl-platform-head {
    text-align: center;
    margin-bottom: 64px;
}

.vrl-platform-blocks {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.vrl-platform-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vrl-platform-block--right .vrl-platform-mockup {
    order: -1;
}

.vrl-platform-text h3 {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.vrl-platform-text p {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vrl-platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vrl-platform-list li {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vrl-platform-list li i {
    color: #bc7636;
    font-size: 13px;
}

/* Mockup Cards */
.vrl-mockup-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    overflow: hidden;
    max-width: 360px;
}

.vrl-mockup-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.vrl-mockup-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vrl-mockup-title {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.vrl-mockup-price {
    font-size: 18px;
    font-weight: 300;
    color: #bc7636;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.vrl-mockup-meta {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Feature icon grid */
.vrl-mockup-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
}

.vrl-mockup-feat {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vrl-mockup-feat:hover {
    border-color: #bc7636;
    box-shadow: 0 4px 16px rgba(188,118,54,0.10);
}

.vrl-mockup-feat i {
    font-size: 20px;
    color: #bc7636;
}

.vrl-mockup-feat span {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.04em;
}

/* Dashboard mockup */
.vrl-mockup-dashboard {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    padding: 28px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vrl-dash-row {
    display: grid;
    grid-template-columns: 90px 1fr 48px;
    align-items: center;
    gap: 12px;
}

.vrl-dash-label {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: #777;
    font-weight: 500;
}

.vrl-dash-bar {
    height: 6px;
    background: #f0ece6;
    border-radius: 3px;
    overflow: hidden;
}

.vrl-dash-bar span {
    display: block;
    height: 100%;
    background: #bc7636;
    border-radius: 3px;
}

.vrl-dash-val {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
}

/* =====================================================
   BY THE NUMBERS / STATS
   ===================================================== */

.vrl-stats {
    padding: 80px 0;
    background: #fff;
}

.vrl-stats-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.vrl-stats-note {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.06em;
    margin-top: 6px;
}

.vrl-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.vrl-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid #f0ece6;
    border-bottom: 1px solid #f0ece6;
}

.vrl-stat-item:nth-child(6n) {
    border-right: none;
}

.vrl-stat-num {
    font-size: 38px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 0.01em;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.vrl-stat-lbl {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #999;
    line-height: 1.4;
}

/* =====================================================
   ARTICLES / HOW TO SUCCEED
   ===================================================== */

.vrl-articles {
    padding: 80px 0;
    background: #faf9f7;
}

.vrl-articles-head {
    margin-bottom: 40px;
}

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

.vrl-article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.vrl-article-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    text-decoration: none;
    color: #1a1a1a;
}

.vrl-article-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.vrl-article-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vrl-article-cat {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bc7636;
}

.vrl-article-body h3 {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.vrl-article-body p {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   TRENDING LISTINGS SWIPER
   ===================================================== */

.vrl-trending {
    padding: 80px 0;
    background: #fff;
}

.vrl-trending-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
}

.vrl-trending-head .vrl-section-title {
    margin-bottom: 0;
}

.vrl-listing-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
}

.vrl-listing-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.vrl-listing-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.vrl-listing-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vrl-listing-cat {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bc7636;
}

.vrl-listing-title {
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    line-height: 1.35;
    color: #1a1a1a;
}

.vrl-listing-loc {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.vrl-listing-price {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 4px;
}

/* Swiper custom styles */
.vrl-trending-swiper {
    padding-bottom: 44px !important;
}

.vrl-swiper-pagination {
    bottom: 0 !important;
}

.vrl-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d0c8bc;
    opacity: 1;
}

.vrl-swiper-pagination .swiper-pagination-bullet-active {
    background: #bc7636;
}

.vrl-swiper-btn {
    color: #bc7636 !important;
}

.vrl-swiper-btn::after {
    font-size: 18px !important;
}

/* =====================================================
   EASY TO JOIN
   ===================================================== */

.vrl-join-types {
    padding: 80px 0;
    background: #faf9f7;
}

.vrl-join-head {
    text-align: center;
    margin-bottom: 48px;
}

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

.vrl-join-card {
    position: relative;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 40px 32px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.vrl-join-card:hover {
    border-color: #bc7636;
    box-shadow: 0 8px 36px rgba(188,118,54,0.10);
}

.vrl-join-card--featured {
    border-color: #bc7636;
    box-shadow: 0 8px 36px rgba(188,118,54,0.15);
}

.vrl-join-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #bc7636;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.vrl-join-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f7f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #bc7636;
    margin-bottom: 20px;
}

.vrl-join-card h3 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.vrl-join-card p {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vrl-join-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vrl-join-list li {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #555;
    padding-left: 16px;
    position: relative;
}

.vrl-join-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 1px;
    background: #bc7636;
}

/* =====================================================
   PRICING TABLE
   ===================================================== */

.vrl-pricing {
    padding: 80px 0;
    background: #fff;
}

.vrl-pricing-head {
    text-align: center;
    margin-bottom: 48px;
}

.vrl-pricing-table {
    display: grid;
    grid-template-columns: 180px repeat(3, 1fr);
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
}

.vrl-pricing-labels {
    display: flex;
    flex-direction: column;
    background: #faf9f7;
}

.vrl-pricing-label-top,
.vrl-pricing-cta-row {
    min-height: 80px;
}

.vrl-pricing-label {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    padding: 18px 24px;
    border-top: 1px solid #ebebeb;
    display: flex;
    align-items: center;
}

.vrl-pricing-col {
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ebebeb;
    transition: box-shadow 0.2s;
}

.vrl-pricing-col--featured {
    background: #fffaf6;
    box-shadow: 0 0 0 2px #bc7636 inset;
    z-index: 1;
}

.vrl-pricing-badge-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #bc7636;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
}

.vrl-pricing-col-head {
    padding: 24px 24px 16px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
}

.vrl-pricing-col--featured .vrl-pricing-col-head {
    padding-top: 36px;
}

.vrl-pricing-col-head h3 {
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.02em;
}

.vrl-pricing-price {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #bc7636;
}

.vrl-pricing-row {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #444;
    padding: 18px 24px;
    border-top: 1px solid #ebebeb;
    display: flex;
    align-items: center;
}

.vrl-pricing-cta-row {
    padding: 20px 24px;
    border-top: 1px solid #ebebeb;
    display: flex;
    align-items: center;
}

.vrl-check {
    color: #bc7636;
    font-size: 14px;
}

.vrl-minus {
    color: #ccc;
    font-size: 14px;
}

/* =====================================================
   FAQ
   ===================================================== */

.vrl-faq {
    padding: 80px 0;
    background: #faf9f7;
}

.vrl-faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

.vrl-faq-head {
    margin-bottom: 36px;
}

.vrl-accordion-item {
    background: #fff;
    border: 1px solid #ebebeb !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.vrl-accordion-btn {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    background: #fff !important;
    padding: 20px 24px !important;
    box-shadow: none !important;
}

.vrl-accordion-btn:not(.collapsed) {
    color: #bc7636 !important;
    background: #fff !important;
}

.vrl-accordion-btn::after {
    filter: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23bc7636'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.vrl-accordion-body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    padding: 4px 24px 20px !important;
    background: #fff;
}

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

.vrl-cta {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vrl-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.vrl-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.72);
}

.vrl-cta-content {
    position: relative;
    z-index: 2;
    padding: 60px 32px;
    max-width: 620px;
}

.vrl-cta-title {
    font-size: 44px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    margin-top: 12px;
}

.vrl-cta-desc {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 32px;
}

.vrl-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

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

@media (max-width: 1200px) {
    .vrl-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vrl-stat-item:nth-child(3n) {
        border-right: none;
    }

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

@media (max-width: 992px) {
    .vrl-hero-content {
        padding: 0 36px 0;
    }

    .vrl-hero-stats {
        padding: 20px 36px;
        gap: 0;
    }

    .vrl-hero-stat {
        padding-right: 24px;
    }

    .vrl-hero-stat-divider {
        margin-right: 24px;
    }

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

    .vrl-whowe-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vrl-whowe-text {
        padding-right: 0;
    }

    .vrl-testimonial-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vrl-testimonial-image {
        height: 280px;
    }

    .vrl-platform-block {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .vrl-platform-block--right .vrl-platform-mockup {
        order: -1;
    }

    .vrl-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vrl-join-grid {
        grid-template-columns: 1fr;
    }

    .vrl-pricing-table {
        grid-template-columns: 1fr;
        overflow-x: auto;
    }

    .vrl-pricing-labels {
        display: none;
    }

    .vrl-pricing-col {
        border-left: none;
        border-top: 1px solid #ebebeb;
    }

    .vrl-pricing-row {
        border-top: 1px solid #f5f5f5;
    }
}

@media (max-width: 768px) {
    .vrl-hero-title {
        font-size: 34px;
    }

    .vrl-hero-content {
        padding: 0 24px 0;
        margin-top: 80px;
    }

    .vrl-hero-stats {
        flex-wrap: wrap;
        padding: 16px 24px;
        gap: 12px 0;
    }

    .vrl-hero-stat-divider {
        display: none;
    }

    .vrl-hero-stat {
        width: 33%;
        padding-right: 0;
        align-items: center;
    }

    .vrl-section-title {
        font-size: 28px;
    }

    .vrl-whowe-mosaic {
        grid-template-rows: 160px 130px;
    }

    .vrl-reach-grid {
        grid-template-columns: 1fr;
    }

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

    .vrl-stat-item:nth-child(2n) {
        border-right: none;
    }

    .vrl-trending-head {
        flex-direction: column;
        gap: 8px;
    }

    .vrl-report {
        padding: 60px 24px;
    }

    .vrl-report-points {
        grid-template-columns: 1fr;
    }

    .vrl-cta-title {
        font-size: 30px;
    }

    .vrl-featuring-content h2 {
        font-size: 28px;
    }
}
