:root {
    --cream: #f3eadc;
    --cream-soft: #fbf6ee;
    --cream-line: rgba(25, 20, 15, 0.12);
    --cream-ink: #15110d;
    --cream-muted: #6d6257;
    --surface: #0a0a0a;
    --surface-dim: #dadada;
    --surface-bright: #f9f9f9;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #111111;
    --surface-container: #1a1a1a;
    --surface-container-high: #e8e8e8;
    --surface-container-highest: #e2e2e2;
    --on-surface: #1a1c1c;
    --on-surface-variant: #b8aea4;
    --inverse-surface: #2f3131;
    --inverse-on-surface: #f1f1f1;
    --outline: rgba(212, 175, 55, 0.2);
    --outline-variant: #1a1a1a;
    --surface-tint: #5f5e5e;
    --primary: #f8f1e8;
    --on-primary: #000000;
    --primary-container: #333333;
    --on-primary-container: #ffffff;
    --inverse-primary: #000000;
    --secondary: #d4af37;
    --on-secondary: #000000;
    --secondary-container: #262114;
    --on-secondary-container: #d4af37;
    --background: #030303;
    --on-background: #f8f1e8;
    --font-display: 'Geist', sans-serif;
    --font-headline: 'Geist', sans-serif;
    --font-body: 'Geist', sans-serif;
    --font-mono: 'Geist', sans-serif;
    --spacing-unit: 8px;
    --container-max: 1440px;
    --container-max-wide: 1800px;
    --gutter: clamp(24px, 4vw, 56px);
    --margin-desktop: clamp(40px, 8vw, 112px);
    --margin-mobile: clamp(28px, 7vw, 34px);
    --section-gap: clamp(72px, 9vw, 132px);
    --section-gap-tight: clamp(48px, 6vw, 88px);
    --section-gap-loose: clamp(88px, 11vw, 150px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: hidden; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body {
    background-color: var(--background);
    color: var(--on-background);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: auto;
}
a, button, input, textarea, select { cursor: pointer; }
::selection { background-color: var(--secondary-container); color: var(--on-secondary-container); }
a { text-decoration: none; color: inherit; transition: color 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
.font-display { font-family: var(--font-display); font-weight: 900; line-height: 0.9; letter-spacing: -0.05em; }
.font-headline-lg { font-family: var(--font-headline); font-size: 48px; font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; }
.font-headline-md { font-family: var(--font-headline); font-size: 32px; font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; }
.font-body-lg { font-family: var(--font-body); font-size: 18px; line-height: 1.6; }
.font-body-md { font-family: var(--font-body); font-size: 16px; line-height: 1.5; }
.font-label-caps { font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.font-mono-label { font-family: var(--font-mono); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-on-surface-variant { color: var(--on-surface-variant); }

/* Layout */
.max-w-container { max-width: var(--container-max); margin: 0 auto; }
.max-w-container-wide { max-width: var(--container-max-wide); margin: 0 auto; }
.px-margin { padding-right: var(--margin-desktop); padding-left: var(--margin-desktop); }

/* ═══════════════════════════════════════════════ */
/* CINEMATIC DIAMOND INTRO                        */
/* ═══════════════════════════════════════════════ */
.diamond-intro {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 720px;
    background: #000000;
    z-index: 100;
    overflow: hidden;
}
.diamond-intro::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.42) 72%, #000 100%);
    z-index: 102;
    pointer-events: none;
}
#diamond-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 101;
    pointer-events: none;
}
/* PHASE 4: Bloom glow overlay — cinematic light bleed */
.diamond-intro::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: min(320px, 72vw);
    height: min(320px, 72vw);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(200, 220, 255, 0.05) 30%,
        rgba(180, 160, 255, 0.03) 50%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: 101;
    pointer-events: none;
    animation: bloomPulse 4s ease-in-out infinite alternate;
}
@keyframes bloomPulse {
    0% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -55%) scale(1.15); }
}
@keyframes mobileDiamondPulse {
    0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) rotate(45deg) scale(0.96); }
    50% { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1.03); }
}

/* Diamond Tagline — above the SLX logo */
.diamond-tagline {
    position: absolute;
    top: clamp(54px, 9vh, 86px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 102;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    text-align: center;
}
.tagline-top {
    font-family: var(--font-mono);
    font-size: clamp(9px, 0.9vw, 11px);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(248, 241, 232, 0.44);
    line-height: 1;
}
.tagline-bottom {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

/* SLX Logo Reveal */
.slx-logo-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.82);
    z-index: 102;
    display: flex;
    gap: 0;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
}
.slx-letter {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 132px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.06em;
    line-height: 1;
    display: inline-block;
    opacity: 0.92;
    transform: translateY(0px) scale(1);
    filter: blur(0px);
}
.izaragems-reveal-icon {
    height: clamp(72px, 12vw, 148px);
    width: auto;
    opacity: 0.92;
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: clamp(74px, 10vh, 104px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 103;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-text {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(248, 241, 232, 0.46);
    white-space: nowrap;
}
.scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, rgba(248,241,232,0.56), rgba(248,241,232,0));
    animation: scrollPulse 3.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════ */
/* SITE WRAPPER — warm cream world                */
/* ═══════════════════════════════════════════════ */
.site-wrapper {
    position: relative;
    background: var(--background);
    z-index: 1;
}

/* Buttons */
.btn-editorial {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.08em;
}
.btn-editorial::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary);
    transform: scaleX(0); transform-origin: right;
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-editorial:hover { color: var(--on-primary); }
.btn-editorial:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-dark { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-dark:hover { color: var(--on-primary); }
.btn-white { border-color: #fff; color: #fff; background: transparent; }
.btn-white::before { background: transparent; }
.btn-white:hover { color: #000; background: #fff; border-color: #fff; }
.icon-arrow { margin-left: 12px; font-size: 18px; transition: transform 0.3s; }
.btn-editorial:hover .icon-arrow { transform: translateX(5px); }

/* Glass Effects */
.liquid-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Nav */
.navbar { position: fixed; top: 0; width: 100%; z-index: 50; background: rgba(3, 3, 3, 0.75); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: clamp(12px, 1.8vw, 24px) 0; transition: all 0.4s; }
.navbar.scrolled { padding: clamp(8px, 1.2vw, 16px) 0; background: rgba(3, 3, 3, 0.92); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand.font-headline-lg { font-family: var(--font-display); font-size: clamp(26px, 2.5vw, 38px); font-weight: 900; letter-spacing: -0.06em; color: var(--primary); }
.nav-brand-lockup { display: inline-flex; align-items: center; gap: clamp(10px, 1.2vw, 16px); }
.nav-brand-wordmark { font-size: clamp(14px, 1.5vw, 19px); letter-spacing: 0.04em; white-space: nowrap; }
.nav-links { display: flex; gap: clamp(16px, 2.5vw, 36px); color: var(--primary); }
.nav-links a { font-size: clamp(12px, 1.2vw, 14px); padding-bottom: 4px; border-bottom: 1px solid transparent; color: var(--on-surface-variant); transition: color 0.3s, border-color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom-color: var(--primary); }
.btn-editorial.nav-btn { padding: clamp(10px, 1.2vw, 16px) clamp(20px, 2vw, 32px); font-size: clamp(10px, 1vw, 13px); white-space: nowrap; }
.nav-mobile-toggle { display: none; min-width: 44px; min-height: 44px; place-items: center; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--primary); }

/* Hero */
.hero-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding-top: clamp(96px, 10vw, 132px); padding-bottom: var(--section-gap-tight); }
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(248, 241, 232, 0.09), transparent 34%),
        linear-gradient(180deg, rgba(3,3,3,0) 0%, rgba(3,3,3,0.72) 100%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; align-items: center; justify-items: center; width: 100%; }
.hero-text { color: var(--primary); max-width: min(100%, 980px); margin: 0 auto; text-align: center; }
.hero-eyebrow { display: block; margin-bottom: clamp(16px, 2vw, 24px); letter-spacing: 0.34em; color: rgba(212, 175, 55, 0.82); }
.hero-title { font-size: clamp(56px, 8vw, 120px); text-transform: uppercase; margin-bottom: clamp(24px, 3vw, 36px); text-wrap: balance; text-shadow: 0 28px 70px rgba(0,0,0,0.62); }
.hero-italic { font-style: italic; font-weight: 300; }
.hero-subtitle { max-width: 680px; margin: 0 auto clamp(32px, 4vw, 48px); color: var(--on-surface-variant); }
.hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 640px;
    margin: clamp(22px, 3vw, 34px) auto 0;
}
.hero-proof-strip div {
    border-top: 1px solid var(--outline);
    padding-top: 14px;
}
.hero-proof-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--primary);
}
.hero-proof-strip span {
    display: block;
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
}
.hero-visual { position: relative; margin-top: 80px; }
.hero-image-container { position: relative; z-index: 10; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); aspect-ratio: 3/4; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.hero-image-container:hover .hero-img { transform: scale(1.05); }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.15), transparent); pointer-events: none; }

/* Brands */
.brands-section { position: relative; padding: var(--section-gap) 0; background: transparent; }
.brands-showcase-card {
    position: relative;
    background: radial-gradient(circle at 30% 30%, #151515 0%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: clamp(24px, 3vw, 40px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    gap: clamp(28px, 4vw, 64px);
    padding: clamp(24px, 3vw, 48px);
    align-items: center;
    overflow: hidden;
}
.showcase-slider-col {
    position: relative; flex: 1.15; width: 55%;
    height: clamp(300px, 35vw, 480px);
    border-radius: clamp(16px, 2vw, 24px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.showcase-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.06);
}
.showcase-slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.showcase-slide img { width: 100%; height: 100%; object-fit: cover; }
.showcase-info-col {
    flex: 0.85; width: 45%;
    display: flex; flex-direction: column; justify-content: center;
    color: #ffffff;
    padding-right: clamp(16px, 2vw, 48px);
}
.partner-label { color: var(--secondary); font-size: clamp(10px, 1.1vw, 13px); letter-spacing: 0.25em; font-weight: 700; margin-bottom: 16px; display: block; }
.partner-title { font-size: clamp(28px, 3.5vw, 48px); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: clamp(16px, 2vw, 22px); font-weight: 900; text-transform: uppercase; }
.partner-desc { color: rgba(255, 255, 255, 0.7); font-size: clamp(14px, 1.3vw, 16px); line-height: 1.6; margin-bottom: clamp(24px, 3vw, 34px); }
.partner-logos-wrap { display: flex; gap: clamp(32px, 4vw, 64px); align-items: center; width: 100%; }
.partner-logo-capsule {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: clamp(32px, 4vw, 48px) clamp(48px, 6vw, 96px);
    display: flex; align-items: center; justify-content: center; flex: 1;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(212, 175, 55, 0.1);
    overflow: hidden;
}
.partner-logo-capsule::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(150px circle at var(--x, 50%) var(--y, 50%), rgba(212, 175, 55, 0.12), transparent 80%);
    opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 1;
}
.partner-logo-capsule:hover::before { opacity: 1; }
.partner-logo-capsule:hover { border-color: rgba(212, 175, 55, 0.35); background: rgba(212, 175, 55, 0.03); box-shadow: 0 20px 30px rgba(212, 175, 55, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.04); }
.partner-img-logo { position: relative; z-index: 2; max-height: clamp(48px, 6vw, 100px); width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1) brightness(0.6) contrast(1.3); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.partner-logo-capsule:hover .partner-img-logo { filter: grayscale(0) brightness(1.1) contrast(1) drop-shadow(0 10px 20px rgba(212, 175, 55, 0.4)); }

/* Services */
.services-section { padding: var(--section-gap-tight) 0 var(--section-gap); position: relative; }
.services-section.px-margin { padding: var(--section-gap-tight) var(--margin-desktop) var(--section-gap); }
.services-header { max-width: 560px; margin-bottom: clamp(48px, 6vw, 72px); }
.services-title { text-transform: uppercase; margin-bottom: clamp(24px, 3vw, 32px); font-size: clamp(40px, 5vw, 64px); }
.services-subtitle { color: var(--on-surface-variant); margin-bottom: clamp(32px, 4vw, 48px); }
.divider-line { width: 80px; height: 1px; background-color: var(--primary); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2vw, 28px); }
.service-card { padding: clamp(24px, 3vw, 36px); border-radius: 24px; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover { transform: translateY(-8px); }
.service-icon { font-size: 32px; font-weight: 300; margin-bottom: 20px; display: block; }
.service-card-title { text-transform: uppercase; margin-bottom: 12px; font-size: 24px; letter-spacing: -0.02em; }
.service-card-desc { color: var(--on-surface-variant); margin-bottom: 24px; font-size: 16px; }
.service-img-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; position: relative; background: #0b0907; }
.service-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.22));
    pointer-events: none;
    opacity: 0.72;
    transition: opacity 0.8s ease;
}
.service-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05) sepia(0.08); transition: filter 0.8s ease, transform 0.8s ease; }
.service-card:hover .service-img { filter: grayscale(12%) contrast(1.08) sepia(0.04); transform: scale(1.055); }
.service-card:hover .service-img-wrap::after { opacity: 0.2; }

/* Portfolio */
.portfolio-section { padding: var(--section-gap) 0; }
.portfolio-section.px-margin { padding: var(--section-gap) var(--margin-desktop); }
.portfolio-header { margin-bottom: clamp(48px, 6vw, 72px); }
.section-label { letter-spacing: 0.2em; display: block; margin-bottom: 16px; }
.portfolio-title { font-size: clamp(40px, 5vw, 80px); }
.portfolio-showcase { display: flex; flex-direction: column; gap: clamp(72px, 9vw, 112px); margin-top: clamp(40px, 5vw, 64px); }
.showcase-item { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; position: relative; }
.showcase-img-col { grid-column: 1 / 9; position: relative; aspect-ratio: 16/10; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3); }
.showcase-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.showcase-item:hover .showcase-img { transform: scale(1.05); }
.showcase-text-col { grid-column: 7 / 13; z-index: 10; padding: clamp(36px, 5vw, 60px); transform: translateY(40px); }
.showcase-item:nth-child(even) .showcase-img-col { grid-column: 5 / 13; grid-row: 1; }
.showcase-item:nth-child(even) .showcase-text-col { grid-column: 1 / 7; grid-row: 1; z-index: 10; transform: translateY(-40px); }
.port-info h3 { margin-bottom: 16px; font-size: 32px; letter-spacing: -0.02em; }
.port-info p { margin-bottom: 32px; font-size: 18px; line-height: 1.6; }
.port-metric { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 24px; border-top: 1px solid var(--outline-variant); width: 100%; }

/* Cream editorial surfaces */
#jewelflow-pillar,
.services-section,
.portfolio-section,
.footer {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0) 18%),
        var(--cream);
    color: var(--cream-ink);
}
#jewelflow-pillar .text-primary,
.services-section .text-primary,
.portfolio-section .text-primary,
.footer .text-primary {
    color: var(--cream-ink);
}
#jewelflow-pillar .text-on-surface-variant,
.services-section .text-on-surface-variant,
.portfolio-section .text-on-surface-variant,
.footer .text-on-surface-variant,
#jewelflow-pillar .service-card-desc,
.services-section .service-card-desc,
.portfolio-section .port-info p {
    color: var(--cream-muted);
}
#jewelflow-pillar .section-label,
.services-section .section-label,
.portfolio-section .section-label,
.footer .font-mono-label {
    color: #8a6f2d;
}
#jewelflow-pillar .liquid-glass,
.services-section .liquid-glass,
.portfolio-section .liquid-glass,
.portfolio-section .liquid-glass-heavy,
.services-section .liquid-glass-heavy {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.32)),
        rgba(255, 255, 255, 0.42);
    border-color: rgba(25, 20, 15, 0.13);
    box-shadow: 0 28px 70px rgba(45, 34, 22, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.services-section .divider-line {
    background: var(--cream-ink);
}
.portfolio-section .port-metric {
    border-top-color: var(--cream-line);
}
.footer a:hover,
.footer-col a:hover,
.footer-socials a:hover {
    color: #8a6f2d;
}

/* CTA */
.cta-section { position: relative; padding: var(--section-gap-loose) 0; background: #030303; color: var(--primary); text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: url('assets/images/rarecut/rarecut_banner_mobile.jpg'); background-size: cover; background-position: center; opacity: 0.2; mix-blend-mode: luminosity; }
.cta-content { position: relative; z-index: 10; }
.cta-title { font-size: clamp(48px, 8vw, 120px); text-transform: uppercase; margin-bottom: clamp(32px, 4vw, 48px); }
.cta-btn { font-size: 16px; padding: 24px 48px; border-width: 2px; }

/* Footer */
.footer { padding: clamp(64px, 8vw, 112px) 0; border-top: 1px solid var(--cream-line); }
.footer-container { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 4vw, 56px); }
.footer-logo { font-size: 48px; font-weight: 900; margin-bottom: 24px; }
.footer-links { display: flex; justify-content: flex-end; gap: clamp(40px, 6vw, 80px); }
.footer-col { display: flex; flex-direction: column; gap: 24px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { grid-column: span 2; margin-top: clamp(48px, 6vw, 72px); padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; color: var(--on-surface-variant); }
.footer-socials { display: flex; gap: 32px; }
.footer-socials a:hover { color: var(--primary); }

/* Site-wide spacing normalization for legacy inline page sections */
main[style*="padding-top"] {
    padding-top: clamp(96px, 10vw, 124px) !important;
}
.content-prowess-section.px-margin {
    padding: var(--section-gap) var(--margin-desktop) !important;
}
.instagram-live-status {
    width: min(100%, 640px);
    margin: 0 auto 28px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    box-shadow: 0 22px 60px rgba(0,0,0,0.3);
}
.instagram-live-status div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.instagram-live-status strong {
    color: #fff;
    font-weight: 900;
}
.instagram-live-status span:last-child {
    color: rgba(255,255,255,0.56);
    font-size: 13px;
}
.ig-live-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 99px;
    background: rgba(37, 211, 102, 0.14);
    color: #25D366 !important;
    font-size: 11px !important;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ig-live-dot::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
}
.ig-live-link {
    flex-shrink: 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ig-live-link:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}
.ig-live-tile {
    display: block;
    position: relative;
    overflow: hidden;
}
.ig-live-tile::after {
    content: "Open";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.44);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.ig-live-tile:hover::after {
    opacity: 1;
}
section.max-w-container.px-margin[style*="padding-bottom"] {
    padding-bottom: var(--section-gap) !important;
}
section.portfolio-section[style*="padding-bottom"] {
    padding-bottom: var(--section-gap-tight) !important;
}
section.max-w-container.px-margin > div[style*="padding-top: 80px"] {
    padding-top: var(--section-gap-tight) !important;
}
section.max-w-container.px-margin div[style*="grid-template-columns: repeat(4, 1fr)"] {
    gap: clamp(20px, 3vw, 32px) !important;
}
section.max-w-container.px-margin div[style*="grid-template-columns: repeat(3, 1fr)"] {
    gap: clamp(24px, 4vw, 40px) !important;
}
section.max-w-container.px-margin div[style*="font-size: 72px"] {
    font-size: clamp(44px, 7vw, 72px) !important;
}

/* Native cursor keeps the black/cream editorial system clean. */
.cursor-follower {
    display: none;
}

/* Hover over clickable elements/buttons */
.cursor-follower.hover-btn {
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 1);
    border: none;
    mix-blend-mode: exclusion;
}

/* Hover over images/media */
.cursor-follower.hover-img {
    width: 72px; height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    mix-blend-mode: normal;
}
.cursor-follower.hover-img::after {
    content: "VIEW";
}

/* Smooth tilt transitions */
.service-card, .portfolio-card, .hero-image-container, .jewelflow-mockup, .partner-logo-capsule, .brands-showcase-card {
    will-change: transform;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

/* ═══════════════════════════════════════════════ */
/* RESPONSIVE                                     */
/* ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-section.px-margin,
    .portfolio-section.px-margin {
        padding-right: clamp(56px, 8vw, 76px);
        padding-left: clamp(56px, 8vw, 76px);
    }
    .px-margin { padding-right: clamp(56px, 8vw, 76px); padding-left: clamp(56px, 8vw, 76px); }
    .nav-btn { display: none; }
    .nav-links { gap: clamp(14px, 2vw, 22px); }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 48px; border-left: none; padding-left: 0; }
    .hero-visual { margin-top: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-links { justify-content: flex-start; flex-wrap: wrap; }
    .portfolio-showcase { gap: clamp(56px, 8vw, 80px); }
    .showcase-item, .showcase-item:nth-child(even) { display: flex; flex-direction: column; }
    .showcase-img-col, .showcase-item:nth-child(even) .showcase-img-col { width: 100%; aspect-ratio: 16/10; }
    .showcase-text-col, .showcase-item:nth-child(even) .showcase-text-col { width: min(92%, 760px); transform: translateY(-32px) !important; padding: clamp(28px, 5vw, 44px); margin: 0 auto; z-index: 10; }
    .brands-showcase-card { flex-direction: column; align-items: stretch; gap: 32px; padding: 24px; }
    .showcase-slider-col { width: 100%; height: 350px; }
    .showcase-info-col { width: 100%; padding-right: 0; }
    section.max-w-container.px-margin div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    section.max-w-container.px-margin div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    a, button, input, textarea, select { cursor: pointer; }
    .px-margin { padding-right: var(--margin-mobile); padding-left: var(--margin-mobile); }
    .navbar { padding: 10px 0; }
    .nav-container { position: relative; min-height: 48px; }
    .nav-brand.font-headline-lg { font-size: 30px; }
    .nav-links {
        position: fixed;
        top: 69px;
        right: var(--margin-mobile);
        left: var(--margin-mobile);
        z-index: 80;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 8px;
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 18px;
        background: #030303;
        box-shadow: 0 24px 70px rgba(0,0,0,0.86);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .navbar.mobile-open .nav-links { display: flex; }
    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 16px;
        border-bottom: 0;
        border-radius: 12px;
        font-size: 13px;
    }
    .nav-links a.active { background: rgba(255,255,255,0.08); }
    .nav-btn { display: none; }
    .nav-mobile-toggle { display: grid; }
    .hero-title { font-size: clamp(44px, 12vw, 50px); line-height: 0.92; }
    .hero-subtitle { max-width: 31rem; margin-bottom: 32px; font-size: 16px; }
    .hero-proof-strip {
        grid-template-columns: 1fr;
        max-width: 31rem;
        margin-right: auto;
        margin-left: auto;
        gap: 16px;
        text-align: left;
    }
    .hero-proof-strip strong {
        font-size: 30px;
    }
    .hero-cta,
    .cta-btn,
    .jewelflow-actions a,
    .btn-solid {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        text-align: center;
        padding: 16px 22px !important;
    }
    .services-title, .portfolio-title, .cta-title { font-size: clamp(34px, 9vw, 40px); line-height: 0.98; overflow-wrap: break-word; }
    .font-headline-md { font-size: 26px; }
    .font-body-lg { font-size: 16px; }
    .service-card { padding: 24px; }
    .services-header, .portfolio-header { margin-bottom: 36px; }
    .cta-section { padding: 72px 0; }
    .hero-section { padding-top: 104px; padding-bottom: 64px; min-height: auto; }
    .services-section, .portfolio-section { padding: 56px 0; }
    .services-section.px-margin,
    .portfolio-section.px-margin {
        padding-right: var(--margin-mobile);
        padding-left: var(--margin-mobile);
    }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .footer { padding: 56px 0 44px; }
    .footer-logo { font-size: 38px; }
    .footer-links { display: grid; grid-template-columns: 1fr; gap: 28px; }
    .footer-col { gap: 14px; }
    .portfolio-showcase { gap: 56px; margin-top: 32px; }
    .showcase-img-col, .showcase-item:nth-child(even) .showcase-img-col { border-radius: 16px; aspect-ratio: 4/3; }
    .showcase-text-col, .showcase-item:nth-child(even) .showcase-text-col { width: calc(100% - 18px); padding: 22px; border-radius: 16px; transform: translateY(-22px) !important; }
    .slx-letter { font-size: clamp(58px, 18vw, 76px); }
    .slx-logo-reveal { top: 49%; }
    .mobile-static-diamond {
        display: flex;
        min-height: 100svh;
        align-items: center;
        justify-content: center;
    }
    .mobile-static-diamond::after {
        top: 47%;
        width: min(210px, 54vw);
        height: min(210px, 54vw);
        border: 1px solid rgba(248,241,232,0.42);
        background:
            linear-gradient(135deg, rgba(255,255,255,0.9), rgba(150,185,255,0.22) 34%, rgba(0,0,0,0) 35%),
            linear-gradient(45deg, rgba(248,241,232,0.28), rgba(255,255,255,0.08) 48%, rgba(0,0,0,0) 50%),
            radial-gradient(circle, rgba(255,255,255,0.24), rgba(120,160,255,0.08) 56%, rgba(0,0,0,0) 70%);
        box-shadow: inset 0 0 44px rgba(255,255,255,0.18), 0 0 70px rgba(180,210,255,0.14);
        transform: translate(-50%, -50%) rotate(45deg);
        filter: none;
        animation: mobileDiamondPulse 4.8s ease-in-out infinite;
    }
    .mobile-static-diamond .slx-logo-reveal {
        display: none;
    }
    .diamond-tagline {
        top: max(72px, calc(env(safe-area-inset-top) + 62px));
        width: calc(100% - (var(--margin-mobile) * 2));
    }
    .tagline-top { font-size: 10px; letter-spacing: 0.18em; line-height: 1.35; }
    .tagline-bottom { font-size: clamp(20px, 7vw, 28px); line-height: 1; }
    .scroll-indicator { bottom: max(28px, calc(env(safe-area-inset-bottom) + 20px)); }
    .scroll-line { height: 32px; }
    .diamond-intro { height: 100vh; height: 100dvh; min-height: 0; }
    .diamond-intro::after {
        transform: translate(-50%, -48%);
        filter: blur(28px);
        opacity: 0.72;
    }
    .content-prowess-section.px-margin {
        padding: 56px var(--margin-mobile) !important;
    }
    .instagram-live-status {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 20px;
        padding: 14px;
        border-radius: 16px;
    }
    .instagram-live-status div {
        justify-content: center;
        text-align: center;
    }
    .ig-live-link {
        width: 100%;
    }
    .content-prowess-section .max-w-container > div[style*="max-width: 375px"] {
        max-width: min(100%, 356px) !important;
        height: min(720px, 78vh) !important;
        border-width: 9px !important;
        border-radius: 34px !important;
    }
    .brands-section { padding: 60px 0; }
    .brands-showcase-card { border-radius: 18px; padding: 18px; gap: 24px; }
    .showcase-slider-col { height: auto; aspect-ratio: 4 / 3; border-radius: 14px; }
    .custom-scrollbar,
    .pillar-container,
    .pillar-text,
    .showcase-slider-col {
        max-width: 100%;
        overflow-x: hidden;
    }
    .custom-scrollbar > div:first-child {
        gap: 14px !important;
        padding: 12px !important;
    }
    .custom-scrollbar > div:first-child > div:first-child {
        width: 68px !important;
        height: 68px !important;
    }
    .custom-scrollbar > div:first-child > div:nth-child(2) {
        gap: 12px !important;
        min-width: 0;
        justify-content: space-between !important;
    }
    .custom-scrollbar > div:first-child > div:nth-child(2) span {
        font-size: 12px !important;
    }
    .custom-scrollbar > div:first-child > div:nth-child(2) span:first-child {
        font-size: 14px !important;
    }
    .custom-scrollbar div[style*="Bridal"] {
        max-width: 100%;
    }
    .custom-scrollbar > div[style*="overflow-x: auto"] {
        max-width: 100%;
        overflow-x: hidden !important;
        gap: 10px !important;
    }
    .custom-scrollbar > div[style*="overflow-x: auto"] > div {
        flex-shrink: 1 !important;
        min-width: 0;
    }
    .custom-scrollbar > div[style*="overflow-x: auto"] > div > div {
        width: 54px !important;
        height: 54px !important;
    }
    .pillar-title {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .showcase-slider-col {
        width: 100% !important;
        box-sizing: border-box;
    }
    .showcase-slide {
        max-width: 100%;
        transform: scale(1);
    }
    .partner-logos-wrap { flex-direction: column; gap: 16px; }
    .partner-logo-capsule { width: 100%; padding: 24px 36px; border-radius: 16px; }
    .partner-title { font-size: clamp(30px, 8vw, 38px); }
    .partner-desc { margin-bottom: 22px; }
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .about-hero,
    .contact-hero,
    .legal-hero {
        padding-top: 104px !important;
        padding-bottom: 48px !important;
        min-height: auto !important;
    }
    .about-title,
    .contact-title {
        font-size: clamp(42px, 12vw, 54px) !important;
        line-height: 0.95;
    }
    .legal-content,
    .about-card {
        border-radius: 18px !important;
        padding: 24px !important;
    }
    section.max-w-container.px-margin div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    section.max-w-container.px-margin div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    main[style*="padding-top"] {
        padding-top: 94px !important;
    }
}

/* Metric Pillar Sections */
.pillar-section { padding: var(--section-gap) var(--margin-desktop); position: relative; }
.pillar-container { display: flex; align-items: center; justify-content: space-between; gap: clamp(32px, 6vw, 88px); }
.pillar-container.reverse-layout { flex-direction: row-reverse; }
.pillar-text { flex: 1; min-width: 300px; max-width: 600px; }
.pillar-title { font-size: clamp(48px, 6vw, 96px); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; text-transform: uppercase; }
.pillar-desc { margin-bottom: clamp(32px, 4vw, 48px); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; }
.pillar-metrics { display: flex; gap: clamp(28px, 4vw, 48px); border-left: 2px solid rgba(212, 175, 55, 0.3); padding-left: 24px; margin-bottom: clamp(32px, 4vw, 48px); }
.metric-item { display: flex; flex-direction: column; }
.metric-value { font-size: clamp(40px, 5vw, 64px); color: var(--secondary); line-height: 1; }
.metric-label { font-size: 14px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-top: 8px; text-transform: uppercase; }
.pillar-visual { flex: 1; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); width: 100%; border: 1px solid rgba(255,255,255,0.05); }

.jewelflow-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: clamp(18px, 3vw, 32px);
    align-items: center;
    padding: clamp(18px, 3vw, 32px);
    background: radial-gradient(circle at 20% 10%, rgba(37, 211, 102, 0.16), transparent 34%), #050505;
}
.jewelflow-dashboard-shot {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 22px 52px rgba(0,0,0,0.55);
    padding: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(circle at 15% 0%, rgba(212,175,55,0.18), transparent 34%),
        linear-gradient(145deg, #101010, #020202);
    color: #fff;
}
.jf-dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.jf-dashboard-top strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(18px, 1.65vw, 24px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.jf-live-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 99px;
    background: rgba(37,211,102,0.14);
    color: #25D366;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.jf-live-dot::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
}
.jf-dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.jf-dashboard-metrics div,
.jf-inventory-list,
.jf-dashboard-footer {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.jf-dashboard-metrics div {
    min-height: auto;
    padding: 14px;
    border-radius: 14px;
}
.jf-dashboard-metrics span,
.jf-inventory-list span,
.jf-dashboard-footer span {
    color: rgba(255,255,255,0.58);
}
.jf-dashboard-metrics span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.jf-dashboard-metrics strong {
    display: block;
    margin-top: 8px;
    color: var(--secondary);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 0.9;
}
.jf-inventory-list {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border-radius: 14px;
}
.jf-inventory-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px;
    background: rgba(0,0,0,0.28);
}
.jf-inventory-list strong {
    color: #fff;
}
.jf-dashboard-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 99px;
    font-size: 12px;
}
.whatsapp-phone-demo {
    max-width: 310px;
    margin: 0 auto;
    border: 10px solid #050505;
    border-radius: 34px;
    overflow: hidden;
    background: #efe7dc;
    color: #111;
    box-shadow: 0 26px 60px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
    font-family: var(--font-body);
}
.wa-phone-top {
    height: 18px;
    background: #050505;
    position: relative;
}
.wa-phone-top::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 5px;
    width: 72px;
    height: 5px;
    border-radius: 99px;
    background: #1a1a1a;
    transform: translateX(-50%);
}
.wa-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #075e54;
    color: #fff;
}
.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #032018;
    font-size: 12px;
    font-weight: 900;
}
.wa-contact {
    font-weight: 800;
    line-height: 1;
    text-transform: lowercase;
}
.wa-status {
    margin-top: 3px;
    font-size: 11px;
    opacity: 0.78;
}
.wa-chat-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 360px;
    padding: 18px 12px;
    background:
        linear-gradient(rgba(239,231,220,0.92), rgba(239,231,220,0.92)),
        radial-gradient(circle at 20% 20%, rgba(37,211,102,0.25), transparent 28%);
}
.wa-bubble {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.42;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.wa-out {
    align-self: flex-end;
    border-bottom-right-radius: 3px;
    background: #dcf8c6;
}
.wa-in {
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    background: #fff;
}
.wa-ai-note {
    align-self: center;
    margin-top: auto;
    padding: 6px 10px;
    border-radius: 99px;
    background: rgba(255,255,255,0.62);
    color: #606060;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ai-vote-lab {
    width: min(100%, 980px);
    margin-top: clamp(56px, 7vw, 92px);
    padding: clamp(22px, 4vw, 40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
    box-shadow: 0 30px 70px rgba(0,0,0,0.32);
    text-align: center;
}
.ai-vote-title {
    margin: 14px auto 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.95;
    text-transform: uppercase;
}
.ai-vote-copy {
    margin: 0 auto clamp(22px, 3vw, 32px);
    max-width: 520px;
}
.ai-vote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2.5vw, 24px);
}
.ai-vote-card {
    position: relative;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    overflow: hidden;
    background: #050505;
    color: #fff;
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.ai-vote-card:hover,
.ai-vote-card.selected {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.7);
    box-shadow: 0 22px 46px rgba(0,0,0,0.45);
}
.ai-vote-card img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
}
.ai-vote-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 99px;
    background: rgba(0,0,0,0.64);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ai-vote-result {
    min-height: 58px;
    margin-top: 22px;
    color: var(--primary);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.45;
}
.ai-vote-result strong {
    color: var(--secondary);
}

.consulting-advisory-panel {
    padding: clamp(24px, 4vw, 42px);
    background:
        radial-gradient(circle at 85% 10%, rgba(212,175,55,0.18), transparent 30%),
        linear-gradient(145deg, #101010, #020202);
}
.advisory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: clamp(20px, 3vw, 32px);
}
.advisory-header strong {
    max-width: 280px;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
    text-align: right;
    text-transform: uppercase;
}
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.advisory-card {
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
}
.advisory-card span,
.advisory-card small {
    display: block;
    color: rgba(255,255,255,0.55);
}
.advisory-card span {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.advisory-card strong {
    display: block;
    color: #fff;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.08;
}
.advisory-card small {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.45;
}
.advisory-bar {
    height: 8px;
    margin-top: 20px;
    border-radius: 99px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}
.advisory-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d4af37, #25D366);
}

@media (max-width: 1024px) {
    .pillar-section { padding-right: clamp(56px, 8vw, 76px); padding-left: clamp(56px, 8vw, 76px); }
    .pillar-container, .pillar-container.reverse-layout { flex-direction: column; }
    .pillar-text { max-width: 100%; }
    .jewelflow-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .pillar-section { padding: 64px var(--margin-mobile); }
    .pillar-title { font-size: clamp(42px, 11vw, 54px); }
    .pillar-text { min-width: 0; }
    .pillar-metrics { flex-direction: column; gap: 22px; padding-left: 18px; }
    .pillar-visual { border-radius: 18px; }
    .jewelflow-showcase { padding: 14px; gap: 16px; }
    .jewelflow-dashboard-shot { padding: 16px; border-radius: 14px; }
    .jf-dashboard-top { align-items: flex-start; }
    .jf-live-dot { padding: 6px 8px; font-size: 10px; }
    .jf-inventory-list div,
    .jf-dashboard-footer {
        gap: 10px;
        font-size: 12px;
    }
    .whatsapp-phone-demo {
        width: 100%;
        max-width: 286px;
        border-width: 8px;
        border-radius: 28px;
    }
    .wa-chat-body { min-height: 300px; }
    .ai-vote-lab { border-radius: 18px; padding: 18px; margin-top: 42px; }
    .ai-vote-grid,
    .advisory-grid {
        grid-template-columns: 1fr;
    }
    .advisory-header {
        flex-direction: column;
    }
    .advisory-header strong {
        text-align: left;
    }
    .advisory-card { min-height: auto; }
}

@media (max-width: 430px) {
    :root { --margin-mobile: 30px; }
    .nav-links { right: 18px; left: 18px; }
    .content-prowess-section .max-w-container > div[style*="max-width: 375px"] {
        max-width: 100% !important;
        height: min(690px, 76vh) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
