/* ================= IMPORTS & VARIABLES ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:wght@400;600&display=swap');

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    --text-body: #4a4a4a;
}

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.5' stroke-linejoin='round'%3E%3Cpath d='M6 6 L26 16 L16 16 L16 26 Z' fill='white'/%3E%3C/svg%3E") 0 0, auto;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--black);
}

a {
    text-decoration: none;
    color: var(--black);
}

/* Background grid limited to the central 1200px container */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    /* Fades the grid towards the center to improve readability */
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 80%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 80%);
}

.bg-grid {
    /* The style is now globally managed via the body::before pseudo-element */
    background: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= NAVIGATION ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #888;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.lang-switch span {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lang-switch span.active {
    opacity: 1;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
    padding: 12px 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--black);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
}

/* ================= MEGA MENU ================= */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px;
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-col h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.mega-links {
    list-style: none;
}

.mega-links li {
    margin-bottom: 12px;
}

.mega-links a {
    font-size: 0.9rem;
    color: var(--black);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.mega-links a:hover {
    color: #888;
    padding-left: 5px;
}

/* ================= HERO SECTION ================= */
.hero {
    padding-top: 150px;
    text-align: center;
    border-bottom: 1px solid var(--gray-border);
}

.eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-body);
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.2;
}

.hero-image-container {
    margin-top: 50px;
    width: 100%;
    height: 500px;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--gray-border);
    overflow: visible;
    /* Allow markers to bleed slightly if needed, or keep hidden */
}

/* Precision Markers (+) */
.hero-image-container::before,
.hero-image-container::after,
.excellence-image-intro::before,
.excellence-image-intro::after,
.hero-image-container .corner-marker-bottom-left,
.hero-image-container .corner-marker-bottom-right,
.excellence-image-intro .corner-marker-bottom-left,
.excellence-image-intro .corner-marker-bottom-right {
    content: "+";
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    line-height: 1;
}

/* Hero Markers Positions */
.hero-image-container::before {
    top: -12px;
    left: -12px;
}

.hero-image-container::after {
    top: -12px;
    right: -12px;
}

.hero-image-container .corner-marker-bottom-left {
    bottom: -12px;
    left: -12px;
}

.hero-image-container .corner-marker-bottom-right {
    bottom: -12px;
    right: -12px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: grayscale(20%) contrast(105%);
}

.sketch-placeholder {
    font-family: 'Playfair Display', serif;
    color: #888;
    font-style: italic;
}

/* ================= TRUST BANNER ================= */
.trust-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-border);
    border-left: 1px solid var(--gray-border);
    border-right: 1px solid var(--gray-border);
    padding: 0;
}

.trust-banner div {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--gray-border);
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.trust-banner div:last-child {
    border-right: none;
}

/* ================= TRIANGLE DE SÉCURITÉ ================= */
.section-padding {
    padding: 100px 0;
    border-bottom: 1px solid var(--gray-border);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

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

.grid-item {
    padding: 48px 40px;
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-right: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.45s ease;
    cursor: default;
}

.grid-item:last-child {
    border-right: 1px solid var(--gray-border);
}

.grid-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background-color: #fafafa;
    z-index: 1;
}

.grid-item:hover::after {
    transform: scaleX(1);
}

.grid-item h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    transition: letter-spacing 0.4s ease;
}

.grid-item:hover h3 {
    letter-spacing: 0.03em;
}

.grid-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.75;
}

.grid-item .stat-label {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.grid-item:hover .stat-label {
    transform: scale(1.05) translateX(3px);
}

/* ================= FOOTER CTA & MEGA FOOTER ================= */
.bottom-cta {
    text-align: center;
    padding: 100px 0 0 0;
    position: relative;
}

.bottom-cta h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.cityscape-placeholder {
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gray-border);
    background-color: var(--white);
    overflow: hidden;
    padding: 40px 0;
}

.cityscape-placeholder img {
    width: 100%;
    max-width: 1000px;
    max-height: 350px;
    object-fit: contain;
    opacity: 0.8;
    mix-blend-mode: multiply;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cityscape-placeholder:hover img {
    opacity: 1;
}

.excellence-image-intro {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    overflow: visible;
    border: 1px solid var(--gray-border);
    position: relative;
}

/* Excellence Markers Positions */
.excellence-image-intro::before {
    top: -12px;
    left: -12px;
}

.excellence-image-intro::after {
    top: -12px;
    right: -12px;
}

.excellence-image-intro .corner-marker-bottom-left {
    bottom: -12px;
    left: -12px;
}

.excellence-image-intro .corner-marker-bottom-right {
    bottom: -12px;
    right: -12px;
}

.excellence-image-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(10%) contrast(102%);
    transition: all 0.6s ease;
}

.excellence-image-intro:hover img {
    opacity: 1;
}

footer {
    border-top: 1px solid var(--gray-border);
    padding: 60px 0 20px 0;
    font-size: 0.8rem;
}

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

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--black);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-body);
}

.footer-legal {
    border-top: 1px solid var(--gray-border);
    padding-top: 20px;
    color: #888;
    display: flex;
    justify-content: space-between;
}

.disclaimer-text {
    font-size: 0.7rem;
    color: #888;
    margin-top: 20px;
    text-align: justify;
}

/* ================= TRIANGLE DE SÉCURITÉ ================= */
.tri-wrapper {
    margin-top: 0;
}

.tri-svg-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 60px auto;
}

.tri-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.tri-line {
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: drawLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#tri-line-2 {
    animation-delay: 0.15s;
}

#tri-line-3 {
    animation-delay: 0.3s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.tri-center-circle {
    fill: var(--white);
    stroke: var(--gray-border);
    stroke-width: 1.5;
    animation: fadeIn 0.6s 1.6s both;
}

.tri-center-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    fill: var(--black);
    font-weight: 600;
    animation: fadeIn 0.6s 1.8s both;
}

.tri-center-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    fill: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 0.6s 1.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tri-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 1.5px solid var(--black);
    background: var(--white);
    color: var(--black);
    text-align: center;
    cursor: pointer;
    transition: background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    animation: fadeIn 0.5s both;
}

.tri-node--top {
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.tri-node--right {
    bottom: -2%;
    right: -2%;
    animation-delay: 0.7s;
}

.tri-node--left {
    bottom: -2%;
    left: -2%;
    animation-delay: 0.9s;
}

.tri-node:hover,
.tri-node.is-active {
    background: var(--black);
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.tri-node--top.is-active {
    transform: translateX(-50%) scale(1.12);
}

.tri-node-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    width: 100%;
    display: block;
    text-align: center;
}

.tri-node-name {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.tri-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.tri-card {
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-right: none;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tri-card:last-child {
    border-right: 1px solid var(--gray-border);
}

.tri-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tri-card.is-active,
.tri-card:hover {
    background: #fafafa;
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
    z-index: 1;
}

.tri-card.is-active::after,
.tri-card:hover::after {
    transform: scaleX(1);
}

.tri-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: letter-spacing 0.4s ease;
}

.tri-card.is-active h3,
.tri-card:hover h3 {
    letter-spacing: 0.03em;
}

.tri-card.is-active p,
.tri-card:hover p {
    color: var(--text-body);
}

/* ================= WHY LUXEMBOURG VERTICAL ================= */
.why-lux-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

/* ================= EXCELLENCE SECTION ================= */
.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 30px;
    margin-top: 60px;
}

.exc-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--gray-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.alloc-dynamic-card {
    padding: 20px;
}

.alloc-dynamic-card .alloc-radial {
    width: 200px;
    height: 200px;
    margin: 30px auto;
}

.alloc-dynamic-card .alloc-radial::before {
    width: 155px;
    height: 155px;
}

.alloc-dynamic-card .alloc-label {
    padding: 5px 10px;
    font-size: 0.7rem;
}

.alloc-dynamic-card .alloc-label b {
    font-size: 0.85rem;
}

.alloc-dynamic-card .alloc-center .tri {
    font-size: 1.1rem;
}

.alloc-dynamic-card .alloc-center .tri-val {
    font-size: 0.75rem;
}

.alloc-dynamic-card .profiles-nav {
    gap: 8px;
    margin-top: 30px;
}

.alloc-dynamic-card .profile-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.exc-card:hover {
    border-color: var(--black);
    transform: translateY(-5px);
}

.exc-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.exc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.exc-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
}

.exc-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-border);
}

.stat-box {
    flex: 1;
}

.stat-box span {
    display: block;
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.stat-box label {
    font-size: 0.75rem;
    color: #888;
}

.exc-list {
    list-style: none;
    margin-top: 25px;
}

.exc-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-body);
}

.exc-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--black);
}

.exc-arch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.arch-tag {
    background: var(--gray-light);
    padding: 10px 15px;
    font-size: 0.85rem;
    border-radius: 4px;
    border-left: 3px solid var(--black);
    color: var(--text-body);
}

.why-lux-image {
    width: 100%;
    height: 600px;
    background-color: var(--gray-light);
    border: 1px solid var(--gray-border);
    overflow: hidden;
}

.why-lux-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.why-lux-vertical-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vertical-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-border);
    transition: transform 0.3s ease;
}

.vertical-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vertical-item:hover {
    transform: translateX(10px);
}

.vertical-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 12px;
}

.vertical-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vertical-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vertical-content p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ================= CONTACT PAGE ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.contact-info-item label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.contact-info-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form {
    background: #fafafa;
    padding: 40px;
    border: 1px solid var(--gray-border);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-border);
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.btn-form {
    width: 100%;
    margin-top: 10px;
}

.tri-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* ================= ALLOCATIONS & PROFILES ================= */
.alloc-section {
    padding: 100px 0;
    background-color: #fafafa;
    text-align: center;
}

.alloc-radial {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 60px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(transparent 0%,
            transparent var(--uc-deg),
            #e0e0e0 var(--uc-deg),
            #e0e0e0 360deg);
    box-shadow: inset 0 0 0 20px #fff,
        inset 0 0 10px 20px rgba(0, 0, 0, 0.05),
        0 15px 35px rgba(0, 0, 0, 0.05);
    transition: background 0.5s ease;
}

.alloc-radial::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.alloc-center {
    position: relative;
    z-index: 10;
}

.alloc-center .tri {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.alloc-center .tri-val {
    font-size: 0.9rem;
    color: var(--text-body);
}

.alloc-label {
    position: absolute;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    white-space: nowrap;
}

.alloc-label.sec {
    top: 5%;
    right: -20%;
}

.alloc-label.uc {
    bottom: 5%;
    left: -20%;
}

.alloc-label b {
    font-size: 1rem;
}

.alloc-label span {
    color: var(--text-body);
}



.profiles-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.profile-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.profile-btn .sri {
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-btn .sri::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffaa00;
}

.profile-btn:hover {
    color: var(--black);
}

.profile-btn.active {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.profile-btn.active .sri {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: 0.3s;
}

/* ================= RESPONSIVE ================= */
/* ================= BOTTOM CTA ================= */
.bottom-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    z-index: 10;
    position: relative;
}

.cta-quote-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gray-light);
    padding: 30px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-inner {
        height: 70px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-actions .btn-primary {
        display: none;
        /* Hide redundant button in header on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        margin-top: 10px;
        display: none;
    }

    .nav-item-dropdown.active .mega-menu {
        display: block;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-container-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .why-lux-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tri-cards {
        grid-template-columns: 1fr;
    }

    .tri-card {
        border-right: 1px solid var(--gray-border) !important;
    }
}

@media (max-width: 768px) {
    .alloc-radial {
        width: 250px;
        height: 250px;
    }

    .alloc-radial::before {
        width: 190px;
        height: 190px;
    }

    .alloc-label.sec {
        right: -15%;
        top: -10%;
    }

    .alloc-label.uc {
        left: -15%;
        bottom: -10%;
    }

    .profiles-nav {
        gap: 10px;
    }

    .profile-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 140px 0 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .why-lux-image {
        height: auto;
        min-height: 300px;
    }

    .trust-banner {
        flex-wrap: wrap;
        border-right: none;
    }

    .trust-banner div {
        flex: 1 0 50%;
        border-bottom: 1px solid var(--gray-border);
    }

    .trust-banner div:nth-child(2n) {
        border-right: none;
    }

    .trust-banner div:last-child {
        flex: 1 0 100%;
        border-right: none;
        border-bottom: none;
    }

    .section-padding {
        padding: 60px 0;
    }

    .vertical-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vertical-icon {
        margin: 0 auto;
    }

    .hero-image-container {
        height: 300px;
        margin-top: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .vertical-content h3 {
        font-size: 1.1rem;
    }

    .why-lux-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-col {
        padding-right: 0;
    }

    .footer-col p {
        padding-right: 0 !important;
        text-align: center;
    }
}

/* ================= BACK TO TOP ================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #333;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}