:root {
    --lux-gold: #BFA181;
}

/* Page-specific additions */
.lseo-visibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.lseo-vis-card {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 44px 32px;
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.lseo-vis-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lseo-vis-card:hover::before {
    opacity: 1;
}

.lseo-vis-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.lseo-vis-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(191, 161, 129, 0.1);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.lseo-vis-card:hover .lseo-vis-icon {
    background: rgba(191, 161, 129, 0.18);
    border-color: var(--gold);
    transform: scale(1.08);
}

.lseo-vis-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.lseo-vis-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.lseo-vis-card p {
    font-size: 15px;
    color: var(--light);
    line-height: 1.8;
}

/* =========================================
   HERO V4 — PREMIUM CINEMATIC HERO
   ========================================= */
.lseo-hero {
    min-height: 100vh;
    position: relative;
    background: #060606;
    overflow: hidden;
    display: block;
}

/* Breadcrumb */
.lseo-hero .location-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 28px;
    animation: heroFadeUp 0.7s ease-out both;
}

/* Eyebrow badge */
.lseo-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 18px;
    border: 1px solid rgba(191, 161, 129, 0.2);
    border-radius: 100px;
    background: rgba(191, 161, 129, 0.06);
    margin-bottom: 30px;
    animation: heroFadeUp 0.7s 0.1s ease-out both;
}

.lseo-hero-eyebrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

/* H1 */
.lseo-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5.4vw, 82px);
    font-weight: 500;
    color: #fff;
    line-height: 0.98;
    letter-spacing: -1.8px;
    margin: 0 0 28px;
    max-width: 12ch;
    animation: heroFadeUp 0.7s 0.2s ease-out both;
}

.lseo-hero h1 .gold {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

.lseo-hero h1 .hero-line {
    display: block;
}

/* Subtitle */
.lseo-hero-sub {
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 0 40px;
    font-weight: 400;
    animation: heroFadeUp 0.7s 0.3s ease-out both;
}

/* CTA row */
.lseo-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: heroFadeUp 0.7s 0.4s ease-out both;
}

.lseo-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: var(--gold);
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

.lseo-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lseo-cta-primary:hover {
    background: #fff;
    box-shadow: 0 4px 30px rgba(191, 161, 129, 0.3);
    transform: translateY(-2px);
}

.lseo-cta-primary:hover::before {
    opacity: 1;
}

.lseo-cta-primary svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.lseo-cta-primary:hover svg {
    transform: translateX(4px);
}

.lseo-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.35s ease;
}

.lseo-cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(191, 161, 129, 0.04);
}

/* Proof metrics row */
.lseo-hero-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin-top: 10px;
    padding-top: 40px;
    border-top: 1px solid rgba(191, 161, 129, 0.12);
    animation: heroFadeUp 0.7s 0.55s ease-out both;
}

.lseo-proof-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 34px 18px 28px;
    min-width: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
    overflow: visible;
    text-align: center;
}

.lseo-proof-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.lseo-proof-val {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--white);
    font-size: clamp(48px, 4.5vw, 72px);
    line-height: 0.95;
    letter-spacing: -1.2px;
    margin-bottom: 10px;
}

.lseo-proof-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* ---- RIGHT COLUMN: Visual Card ---- */
.lseo-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFadeUp 0.8s 0.35s ease-out both;
}

/* Google Maps mockup card */
.lseo-maps-card {
    width: 100%;
    max-width: 460px;
    background: rgba(8, 8, 8, 0.62);
    border: 1px solid rgba(191, 161, 129, 0.12);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Card header bar */
.lseo-maps-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.lseo-maps-header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(191, 161, 129, 0.4);
}

.lseo-maps-header-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.lseo-maps-header-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #34d399;
    padding: 3px 10px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 100px;
}

/* Card body: ranking list */
.lseo-maps-body {
    padding: 20px 22px;
}

.lseo-rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lseo-rank-item--active {
    background: rgba(191, 161, 129, 0.06);
    border-color: rgba(191, 161, 129, 0.15);
}

.lseo-rank-num {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.lseo-rank-item--active .lseo-rank-num {
    color: var(--gold);
}

.lseo-rank-item:not(.lseo-rank-item--active) .lseo-rank-num {
    color: rgba(255, 255, 255, 0.2);
}

.lseo-rank-info {
    flex: 1;
}

.lseo-rank-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.lseo-rank-item:not(.lseo-rank-item--active) .lseo-rank-name {
    color: rgba(255, 255, 255, 0.3);
}

.lseo-rank-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lseo-rank-stars {
    color: #facc15;
    font-size: 11px;
    letter-spacing: 1px;
}

.lseo-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    padding: 2px 8px;
    background: rgba(191, 161, 129, 0.08);
    border-radius: 4px;
    margin-left: auto;
}

.lseo-rank-badge svg {
    width: 10px;
    height: 10px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2.5;
}

/* Card footer metrics */
.lseo-maps-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
}

.lseo-maps-metric {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.lseo-maps-metric:last-child {
    border-right: none;
}

.lseo-maps-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.lseo-maps-metric-lbl {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

/* Floating accent badges around card */
.lseo-hero-float {
    position: absolute;
    z-index: 3;
    padding: 10px 16px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: heroFloat 6s ease-in-out infinite;
}

.lseo-hero-float--top {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.lseo-hero-float--bottom {
    bottom: 8%;
    left: -8%;
    animation-delay: 3s;
}

.lseo-hero-float svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lseo-hero-float .float-val {
    font-weight: 700;
    color: #34d399;
    font-size: 13px;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Entrance animation */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .lseo-hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 150px 5% 80px;
        text-align: center;
    }

    .lseo-hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .lseo-hero .location-breadcrumb {
        justify-content: center;
    }

    .lseo-hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .lseo-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .lseo-hero-ctas {
        justify-content: center;
    }

    .lseo-hero-proof {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lseo-hero-visual {
        order: -1;
    }

    .lseo-maps-card {
        max-width: 400px;
    }

    .lseo-hero-float--top {
        right: 0%;
    }

    .lseo-hero-float--bottom {
        left: 0%;
    }
}

@media (max-width: 768px) {
    .lseo-hero {
        padding: 140px 20px 60px;
        gap: 40px;
    }

    .lseo-hero h1 {
        letter-spacing: -1.5px;
        font-size: clamp(30px, 8vw, 44px);
    }

    .lseo-hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lseo-hero-float {
        display: none;
    }

    .lseo-maps-card {
        max-width: 340px;
    }

    .lseo-hero-orb--gold {
        width: 280px;
        height: 280px;
    }

    .lseo-hero-orb--blue {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .lseo-hero-visual {
        display: none;
    }

    .lseo-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 130px 16px 60px;
    }

    .lseo-hero-proof {
        grid-template-columns: 1fr;
        padding-top: 28px;
    }

    .lseo-proof-item {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .lseo-proof-item:not(:first-child) {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* Conversion row */
.lseo-conversion-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.lseo-conv-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--light);
    padding: 12px 18px;
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 100px;
    background: rgba(8, 8, 8, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lseo-conv-item span {
    color: var(--gold);
    font-size: 18px;
}

/* =========================================
   DUBAI ADVANTAGE SECTION STYLE RULES
   ========================================= */
.da-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.da-intro p {
    font-size: clamp(16px, 1.25vw, 20px);
    color: var(--gray);
    line-height: 1.8;
}

.da-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .da-features {
        grid-template-columns: 1fr;
    }
}

.da-feature-card {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    padding: 44px 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.da-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.da-feature-card:hover::before {
    opacity: 1;
}

.da-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.da-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191, 161, 129, 0.2);
    border-radius: 50%;
    background: rgba(191, 161, 129, 0.05);
    margin-bottom: 25px;
    color: var(--gold);
}

.da-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.da-feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.da-feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.da-verticals-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
    padding: 60px 0;
    border-top: 1px solid rgba(191, 161, 129, 0.1);
    border-bottom: 1px solid rgba(191, 161, 129, 0.1);
}

@media (max-width: 991px) {
    .da-verticals-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.da-verticals-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.da-verticals-header h3 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.da-verticals-header p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.da-verticals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 576px) {
    .da-verticals-grid {
        grid-template-columns: 1fr;
    }
}

.da-vertical-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: rgba(8, 8, 8, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.da-vertical-item:hover {
    border-color: rgba(191, 161, 129, 0.3);
    background: rgba(191, 161, 129, 0.06);
    transform: translateX(6px);
    box-shadow: var(--shadow-gold);
}

.da-vertical-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.da-vertical-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--light);
}

.da-neighborhoods {
    text-align: center;
    padding: 30px 0;
}

.da-neighborhoods-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

/* =========================================
   NEIGHBORHOOD TAGS & OTHER ELEMENTS
   ========================================= */
.lseo-neighborhood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.lseo-neighborhood-tag {
    padding: 10px 18px;
    background: rgba(8, 8, 8, 0.45);
    border: 1px solid rgba(191, 161, 129, 0.14);
    border-radius: 999px;
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 1.2px;
    transition: all 0.35s ease;
}

.lseo-neighborhood-tag:hover {
    background: var(--gold-gradient);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.lseo-system-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.lseo-system-step {
    text-align: center;
    padding: 40px 24px;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lseo-system-step:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.lseo-system-num {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--gold);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 50%;
    background: rgba(191, 161, 129, 0.06);
}

.lseo-system-step h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lseo-system-step p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.lseo-subsections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.lseo-subsection {
    padding: 32px;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.lseo-subsection:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.lseo-subsection h3 {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.lseo-subsection p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.lseo-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lseo-area-card {
    padding: 40px 30px;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.lseo-area-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.lseo-area-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.lseo-area-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.lseo-area-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lseo-mid-cta {
    padding: 100px var(--container-padding);
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(191, 161, 129, 0.05) 0%, transparent 70%),
        var(--dark);
    text-align: center;
    border-top: 1px solid rgba(191, 161, 129, 0.1);
    border-bottom: 1px solid rgba(191, 161, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.lseo-mid-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(191, 161, 129, 0.04), transparent 45%, rgba(191, 161, 129, 0.03));
    pointer-events: none;
}

.lseo-mid-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.lseo-mid-cta p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.lseo-case-grid {
    display: grid;
    gap: 40px;
}

.lseo-case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.78));
    border: 1px solid rgba(191, 161, 129, 0.14);
    border-radius: 22px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.lseo-case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(191, 161, 129, 0.06), transparent 55%);
    pointer-events: none;
}

.lseo-case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.lseo-case-metrics > div {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 14px;
}

.lseo-case-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    font-weight: 700;
}

.lseo-case-metric-lbl {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.lseo-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.lseo-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(191, 161, 129, 0.3), rgba(191, 161, 129, 0.05));
}

.lseo-timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.lseo-timeline-dot {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(8, 8, 8, 0.95);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(191, 161, 129, 0.06);
}

.lseo-timeline-content {
    background: rgba(8, 8, 8, 0.6);
    padding: 30px 32px;
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex: 1;
    transition: all 0.35s ease;
}

.lseo-timeline-content:hover {
    border-color: rgba(191, 161, 129, 0.22);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.lseo-timeline-content h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.lseo-timeline-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

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

    .lseo-system-flow {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .lseo-case-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lseo-visibility-grid,
    .lseo-system-flow,
    .lseo-subsections,
    .lseo-areas-grid {
        grid-template-columns: 1fr;
    }

    .lseo-landscape-grid {
        grid-template-columns: 1fr;
    }

    .lseo-conversion-row {
        flex-direction: column;
        align-items: center;
    }

    .lseo-case-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

/* Override location-pages.css pseudo-element for custom SVG markers */
.problem-list li::before {
    display: none !important;
}

/* =========================================
   RTL (ARABIC) OVERRIDES
   ========================================= */
[dir="rtl"] .lseo-proof-item {
    padding-left: 18px;
    padding-right: 20px;
}

[dir="rtl"] .lseo-timeline::before {
    left: auto;
    right: 30px;
}

[dir="rtl"] .da-vertical-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .lseo-hero .location-breadcrumb {
    justify-content: flex-start;
}

/* =========================================
   LUXURY UPGRADE — complete section styles
   ========================================= */

/* --- Section wrappers --- */
.services-section,
.usp-section,
.case-study-section,
.faq-section {
    padding: var(--section-spacing-desktop) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.services-section {
    background:
        linear-gradient(180deg, rgba(191, 161, 129, 0.02), transparent 18%),
        var(--black);
}

.usp-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 20%),
        var(--charcoal);
}

.case-study-section {
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(191, 161, 129, 0.03) 0%, transparent 68%),
        var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* --- Premium CTA Buttons (location-cta) --- */
.location-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gold-gradient);
    color: var(--black) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.location-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.location-cta:hover::before {
    transform: translateX(0);
}

.location-cta:hover {
    color: var(--gold) !important;
}

.location-cta-secondary {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.location-cta-secondary::before {
    background: var(--gold-gradient);
}

.location-cta-secondary:hover {
    color: var(--black) !important;
}

/* --- Problems Grid --- */
.problems-luxury {
    position: relative;
}

.problems-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(191, 161, 129, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.problem-card {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    padding: 44px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.problem-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.problem-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 161, 129, 0.1);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.problem-card:hover .problem-card-icon {
    background: rgba(191, 161, 129, 0.18);
    border-color: var(--gold);
    transform: scale(1.08);
}

.problem-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.problem-card p {
    font-size: 15px;
    color: var(--light);
    line-height: 1.7;
    margin: 0;
}

.problems-tagline {
    text-align: center;
    margin-top: 60px;
}

.problems-tagline p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 24px;
}

/* --- USP Grid (used by Citations, Reviews, Reporting, Visibility) --- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.usp-card {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    padding: 44px 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.usp-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.usp-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 161, 129, 0.1);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.5s ease;
}

.usp-card:hover .usp-icon {
    background: rgba(191, 161, 129, 0.18);
    border-color: var(--gold);
    transform: scale(1.08);
}

.usp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.usp-card p {
    font-size: 15px;
    color: var(--light);
    line-height: 1.8;
}

/* --- Services Grid (used by Local Authority & Link Building) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.service-card {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    padding: 44px 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 161, 129, 0.1);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: rgba(191, 161, 129, 0.18);
    border-color: var(--gold);
    transform: scale(1.08);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: var(--light);
    line-height: 1.8;
}

/* --- Subsection icons (GBP Optimization, Location Pages) --- */
.lseo-subsection-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 161, 129, 0.1);
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 50%;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.lseo-subsection-grid-item:hover .lseo-subsection-icon {
    background: rgba(191, 161, 129, 0.18);
    border-color: var(--gold);
    transform: scale(1.08);
}

.lseo-subsection-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.lseo-subsection-grid-item {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.lseo-subsection-grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lseo-subsection-grid-item:hover::before {
    opacity: 1;
}

.lseo-subsection-grid-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.lseo-subsection-grid-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.lseo-subsection-grid-item p {
    font-size: 14px;
    color: var(--light);
    line-height: 1.8;
}

/* --- Stats Bar --- */
.location-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(191, 161, 129, 0.06);
    padding: var(--section-spacing-desktop) 0;
    position: relative;
}

.location-stat {
    background: var(--black);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.location-stat:hover::after {
    transform: translateX(0);
}

.location-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 4vw, 72px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.location-stat:hover .location-stat-number {
    color: var(--white);
}

.location-stat-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--section-spacing-desktop) var(--container-padding);
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(191, 161, 129, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 70% 60%, rgba(191, 161, 129, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.location-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* --- Local Presence System upgrade --- */
.lseo-system-flow {
    position: relative;
    padding: 0 var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    counter-reset: step;
}

.lseo-system-flow::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(10% + 30px);
    right: calc(10% + 30px);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(191, 161, 129, 0.2), var(--gold));
    z-index: 0;
}

.lseo-system-step {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.6));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lseo-system-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lseo-system-step:hover::before {
    opacity: 1;
}

.lseo-system-step:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.lseo-system-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(191, 161, 129, 0.25);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    background: rgba(191, 161, 129, 0.06);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.lseo-system-step:hover .lseo-system-num {
    background: var(--gold-gradient);
    color: var(--black);
    transform: scale(1.1);
}

.lseo-system-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.lseo-system-step p {
    font-size: 13px;
    color: var(--light);
    line-height: 1.7;
}

/* --- Case Studies upgrade --- */
.lseo-case-card {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.78));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 161, 129, 0.12);
    border-radius: 22px;
    padding: 44px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.lseo-case-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(191, 161, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lseo-case-card:hover::before {
    opacity: 1;
}

.lseo-case-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 200px var(--container-padding);
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(191, 161, 129, 0.03) 0%, transparent 70%),
        var(--black);
    position: relative;
    overflow: hidden;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Trust Section --- */
.trust-section {
    padding: 60px var(--container-padding);
    background:
        linear-gradient(180deg, rgba(191, 161, 129, 0.02), transparent 30%),
        var(--dark);
    border-top: 1px solid rgba(191, 161, 129, 0.08);
    border-bottom: 1px solid rgba(191, 161, 129, 0.08);
    position: relative;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    padding: 12px 28px;
    border: 1px solid rgba(191, 161, 129, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--light);
    letter-spacing: 0.5px;
    background: rgba(191, 161, 129, 0.04);
    transition: all 0.4s ease;
}

.trust-badge:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(191, 161, 129, 0.1);
}

/* --- Internal Links Section --- */
.internal-links-section {
    padding: 80px var(--container-padding);
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(191, 161, 129, 0.03) 0%, transparent 70%),
        var(--black);
    border-top: 1px solid rgba(191, 161, 129, 0.06);
}

.internal-links-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.internal-links-group {
    padding: 30px;
    background: rgba(8, 8, 8, 0.5);
    border: 1px solid rgba(191, 161, 129, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.internal-links-group h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.internal-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.internal-links-group a {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.internal-links-group a:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .lseo-system-flow {
        grid-template-columns: repeat(3, 1fr);
    }

    .lseo-system-flow::before {
        display: none;
    }

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

@media (max-width: 768px) {
    .services-section,
    .usp-section,
    .case-study-section,
    .cta-section {
        padding: var(--section-spacing-mobile) 20px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .usp-grid,
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .lseo-system-flow {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .internal-links-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .faq-section {
        padding: 120px 20px;
    }

    .location-stats {
        grid-template-columns: 1fr;
    }

    .location-cta-group {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* NEW HERO STYLES */
.lseo-hero-eyebrow-new {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 500;
}
.lseo-hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
}
.lseo-hero-sub-new {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 45px;
    max-width: 650px;
}
.lseo-hero-ctas-new {
    display: flex;
    gap: 20px;
    align-items: center;
}
.lseo-btn-gold-new {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold) 0%, #a68962 100%);
    color: var(--black);
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lseo-btn-gold-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 161, 129, 0.2);
}
.lseo-btn-outline-new {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(191, 161, 129, 0.4);
    color: var(--gold);
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.lseo-btn-outline-new:hover {
    border-color: var(--gold);
    background: rgba(191, 161, 129, 0.05);
}
.lseo-hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}
.lseo-metric h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}
.lseo-metric p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 991px) {
    .lseo-hero-headline { font-size: 3rem; }
    .lseo-hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 767px) {
    .lseo-hero-headline { font-size: 2.2rem; }
    .lseo-hero-ctas-new { flex-direction: column; align-items: stretch; }
    .lseo-btn-gold-new, .lseo-btn-outline-new { justify-content: center; }
    .lseo-hero-metrics { grid-template-columns: 1fr; }
}
