@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* =========================================
   1. CSS VARIABLES & THEME SETTINGS (LIGHT)
   ========================================= */
:root {
    --color-red: #C40007;
    --color-red-dark: #91010a;
    --color-gold: #c8a96e;
    --color-gold-light: #e8d5a3;
    --color-black: #050505;
    --color-charcoal: #111827;
    --color-ivory: #faf8f4;
    --color-white: #ffffff;
    --color-gray: #6b7280;
    --color-gray-light: #dee2e6;
    /* Luxury palette additions */
    --color-champagne: #f5ede0;
    --color-parchment: #f0e8d8;
    --color-pearl: #fdfaf6;
    --grad-ivory: linear-gradient(160deg, #fdfaf6 0%, #f5ede0 50%, #ede0cc 100%);
    --grad-gold-subtle: linear-gradient(135deg, rgba(200, 169, 110, 0.08) 0%, rgba(232, 213, 163, 0.04) 100%);
    --grad-dark: linear-gradient(160deg, #0e0e12 0%, #1a1209 60%, #0e0c08 100%);
    --shadow-gold-warm: 0 20px 60px -10px rgba(200, 169, 110, 0.25);
    --shadow-gold-glow: 0 0 80px rgba(200, 169, 110, 0.12);

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;

    --shadow-luxury: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    --shadow-luxury-light: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-red: 0 10px 40px -10px rgba(196, 0, 7, 0.3);
    --shadow-gold: 0 10px 40px -10px rgba(200, 169, 110, 0.2);

    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --container-width: 1280px;
    --spacing-section: clamp(60px, 10vw, 120px);
    --spacing-inline: clamp(20px, 5vw, 48px);
}

/* =========================================
   2. RESET & BASE STYLES FOR LANDING PAGE
   ========================================= */
.bh-stuller-wrapper {
    background: var(--grad-ivory);
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

.bh-stuller-wrapper *,
.bh-stuller-wrapper *::before,
.bh-stuller-wrapper *::after {
    box-sizing: border-box;
}

.bh-stuller-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bh-stuller-wrapper a {
    text-decoration: none;
    color: inherit;
}

.bh-stuller-wrapper button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

.bh-stuller-wrapper ul {
    list-style: none;
}

.bh-stuller-wrapper h1,
.bh-stuller-wrapper h2,
.bh-stuller-wrapper h3,
.bh-stuller-wrapper h4,
.bh-stuller-wrapper h5,
.bh-stuller-wrapper h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
}

.bh-stuller-wrapper .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-inline);
}

.bh-stuller-wrapper .text-gradient-gold {
    background: linear-gradient(135deg, #a68446 0%, #c8a96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bh-stuller-wrapper .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 16px;
    display: block;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px var(--spacing-inline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scaleX(0.85);
}

.brand-icon span {
    font-family: var(--font-serif);
    font-size: 32px;
    color: #fff;
    line-height: 1;
    font-weight: 300;
    position: absolute;
}

.brand-icon span:first-child {
    left: 4px;
}

.brand-icon span:last-child {
    right: 6px;
    top: 10px;
    font-size: 28px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 2px;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 4px;
    background: linear-gradient(180deg, #fceb9c 0%, #cca32d 100%);
    color: #111827 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.nav-cta:hover {
    background: linear-gradient(180deg, #fff2b3 0%, #dcb53f 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #380000, #1a0000);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

/* Warm champagne gradient overlay with left-side readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(253, 250, 246, 0.98) 0%,
            rgba(245, 237, 224, 0.92) 45%,
            rgba(245, 237, 224, 0.55) 70%,
            rgba(245, 237, 224, 0.1) 100%);
    z-index: 1;
}

/* Gold ambient glow bottom-right */
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(196, 0, 7, 0.2);
    background: rgba(196, 0, 7, 0.05);
    width: fit-content;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-red);
    animation: pulse 2s infinite;
}

.hero-badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-red);
}

.hero-title {
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.05;
    color: var(--color-black);
}


.stuller-logo {
    display: inline-block !important;
    height: clamp(40px, 5vw, 70px);
    vertical-align: middle;
    margin-top: 4px;
    mix-blend-mode: multiply;
	max-width:150px !important;
}

.hero-text {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: #4b5563;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
}

.btn-primary {
    padding: 16px 32px;
    border-radius: var(--radius-full);
    background: var(--color-red);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: var(--shadow-red);
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(17, 24, 39, 0.05);
}

.hero-pillars {
    position: relative;
}

.hero-pillars-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #fdfaf6, #f5ede0);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 169, 110, 0.15);
    transform: rotate(3deg) scale(1.05);
    opacity: 0.9;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 169, 110, 0.1);
}

.hero-pillars-content {
    position: relative;
    background: linear-gradient(145deg, rgba(253, 250, 246, 0.97) 0%, rgba(245, 237, 224, 0.93) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(200, 169, 110, 0.18);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 169, 110, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: background 0.3s;
}

.pillar-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.icon-gold {
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    color: var(--color-gold);
}

.icon-red {
    background: rgba(196, 0, 7, 0.1);
    border: 1px solid rgba(196, 0, 7, 0.2);
    color: var(--color-red);
}

.icon-black {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-black);
}

.pillar-text h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 8px;
}

.pillar-text p {
    font-size: 12px;
    color: #4b5563;
}

.pillar-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.35), transparent);
}

/* =========================================
   5. THE CHALLENGE (Editorial Section)
   ========================================= */
.challenge-section {
    padding: var(--spacing-section) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle marble-vein top accent */
.challenge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 169, 110, 0.6) 30%, rgba(196, 0, 7, 0.3) 60%, transparent 100%);
}

/* Ambient gold orb top-right */
.challenge-section::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.challenge-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
}

.challenge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.challenge-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 32px;
}

.challenge-text p {
    color: #4b5563;
    font-weight: 400;
    margin-bottom: 32px;
}

.challenge-visual {
    position: relative;
    min-height: 500px;
    background: url('../images/editorial_banner_light.png') center/cover no-repeat;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-light);
}

.challenge-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.challenge-cards {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 40px;
}

.c-card {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf6 100%);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.12);
    backdrop-filter: blur(4px);
}

.c-card-1 {
    top: 40px;
    right: 40px;
    width: 60%;
}

.c-card-2 {
    top: 30%;
    left: 40px;
    width: 60%;
}

.c-card-3 {
    bottom: 40px;
    right: 40px;
    width: 70%;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    box-shadow: var(--shadow-red);
}

.c-card-icon {
    width: 40px;
    height: 40px;
    background: var(--color-ivory);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
}

.c-card-3 .c-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.c-card h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-black);
}

.c-card-3 h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-white);
    text-transform: none;
    letter-spacing: 0;
}

.c-card p {
    font-size: 12px;
    color: #6b7280;
}

.c-card-3 p {
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   6. HOW IT WORKS (Timeline)
   ========================================= */
.timeline-section {
    padding: var(--spacing-section) 0;
    position: relative;
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    overflow: hidden;
}

/* Decorative diagonal gold accent line */
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(196, 0, 7, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.timeline-header {
    text-align: center;
    margin-bottom: 96px;
}

.timeline-header h2 {
    font-size: clamp(36px, 5vw, 60px);
}

.timeline-header span {
    color: var(--color-gray);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 64px;
}

.timeline-track {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(200, 169, 110, 0.6) 0%, rgba(200, 169, 110, 0.2) 60%, transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 96px;
}

.timeline-number {
    position: absolute;
    left: -86px;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    z-index: 10;
}

.timeline-item.active .timeline-number {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: var(--shadow-red);
}

.timeline-content {
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf6 100%);
    border: 1px solid rgba(200, 169, 110, 0.15);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(200, 169, 110, 0.08);
}

.t-who {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-red);
    margin-bottom: 12px;
    display: block;
}

.t-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-black);
}

.t-desc {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 24px;
}

.t-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.t-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
    font-weight: 400;
}

.t-list span {
    color: var(--color-red);
    font-weight: bold;
}

.t-note {
    margin-top: 32px;
    padding: 16px;
    background: rgba(196, 0, 7, 0.05);
    border-left: 2px solid var(--color-red);
    font-size: 12px;
    color: var(--color-charcoal);
    font-style: italic;
}

/* =========================================
   7. SHOWCASE COMPARISON
   ========================================= */
.showcase-section {
    padding: var(--spacing-section) 0;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    position: relative;
    overflow: hidden;
}

.showcase-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 64px;
}

.showcase-header h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 16px;
}

.showcase-header p {
    color: #4b5563;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.toggle-bg {
    background: var(--color-ivory);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    color: #6b7280;
    transition: all 0.3s;
}

.toggle-btn.active.red {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-red);
}

.toggle-btn.active.gold {
    background: var(--color-black);
    color: var(--color-gold);
    box-shadow: var(--shadow-luxury);
}

.browser-mockup {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #faf8f4;
    color: #111827;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.browser-chrome {
    background: #e5e5e5;
    padding: 16px 24px;
    border-bottom: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-r {
    background: #ff5f56;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #27c93f;
}

.url-bar {
    background: #fff;
    padding: 6px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-family: monospace;
    color: #6b7280;
    width: 50%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.view-ugly,
.view-nice {
    display: none;
}

.view-ugly.active,
.view-nice.active {
    display: block;
}

/* UGLY UI */
.u-nav {
    background: #f3f4f6;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
}

.u-body {
    padding: 24px;
}

.u-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.u-card {
    border: 1px solid #e5e7eb;
    padding: 8px;
    text-align: center;
    background: #fff;
}

.u-img {
    aspect-ratio: 1;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.u-card h5 {
    font-size: 9px;
    font-family: sans-serif;
    font-weight: bold;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.u-card p {
    font-size: 8px;
    color: #6b7280;
    margin-bottom: 8px;
}

.u-card button {
    width: 100%;
    background: #2563eb;
    color: #fff;
    font-size: 10px;
    padding: 4px;
}

/* NICE UI */
.n-nav {
    background: #ffffff;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    color: #111827;
    align-items: center;
}

.n-nav-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-black);
    letter-spacing: 4px;
    font-weight: bold;
}

.n-nav-links {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6b7280;
}

.n-body {
    padding: 40px;
    background: #faf8f4;
}

.n-header {
    text-align: center;
    margin-bottom: 40px;
}

.n-header h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 8px;
}

.n-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.n-filter {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #d1d5db;
    color: #6b7280;
}

.n-filter.active {
    background: #111827;
    color: var(--color-white);
    border-color: #111827;
}

.n-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.n-card {
    cursor: pointer;
}

.n-img-wrap {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
    transition: box-shadow 0.3s;
}

.n-card:hover .n-img-wrap {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.n-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-red);
    color: var(--color-white);
    font-weight: bold;
    font-size: 8px;
    padding: 4px 8px;
    border-radius: 20px;
}

.n-card h5 {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #111827;
    font-weight: 600;
    margin-bottom: 4px;
}

.n-card p {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}

.n-card .price {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #111827;
    font-weight: 600;
}

.ring-1 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    position: relative;
}

.ring-1::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid var(--color-gold);
}

.ring-2 {
    width: 48px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #111827;
    position: relative;
}

.ring-3 {
    display: flex;
    gap: 4px;
    align-items: flex-start;
}

.ring-3 div {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.ring-3 div:nth-child(2) {
    width: 16px;
    height: 16px;
    margin-top: -4px;
}

.ring-4 {
    width: 32px;
    height: 48px;
    border-bottom: 2px solid #111827;
    border-left: 2px solid #111827;
    border-right: 2px solid #111827;
    border-radius: 0 0 50% 50%;
}

.diffs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.diff-box {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.diff-ugly {
    background: var(--color-ivory);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.diff-ugly h4 {
    color: #6b7280;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.diff-nice {
    background: var(--color-black);
    color: var(--color-ivory);
    box-shadow: var(--shadow-luxury);
}

.diff-nice h4 {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.diff-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}

.diff-ugly .diff-list li {
    color: #4b5563;
}

.diff-nice .diff-list li {
    color: var(--color-gray-light);
}

/* =========================================
   8. FEATURES
   ========================================= */
.features-section {
    padding: var(--spacing-section) 0;
    position: relative;
    overflow: hidden;
}

/* Two-tone ambient orbs for features */
.features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 0, 7, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header h2 {
    font-size: clamp(36px, 5vw, 48px);
}

.features-header span {
    color: #6b7280;
}

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

.f-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdfaf6 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 169, 110, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(200, 169, 110, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle gold shimmer top edge on cards */
.f-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

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

.f-card:hover {
    border-color: rgba(196, 0, 7, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.f-card.accent {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: var(--shadow-red);
}

.f-card.accent:hover {
    background: var(--color-red-dark);
}

.f-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

.f-icon.red {
    background: rgba(196, 0, 7, 0.05);
    color: var(--color-red);
}

.f-icon.white {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.f-icon.gray {
    background: #f3f4f6;
    color: var(--color-black);
}

.f-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.f-card.accent h4 {
    color: var(--color-white);
}

.f-card p {
    font-size: 14px;
    color: #4b5563;
}

.f-card.accent p {
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   9. FAQ & CTA
   ========================================= */
.footer-section {
    padding: var(--spacing-section) 0 0;
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 500px;
    background: var(--color-red);
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.05;
    pointer-events: none;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto 120px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-header h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.faq-item {
    border: 1px solid rgba(200, 169, 110, 0.18);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #fdfaf6 0%, #f5ede0 100%);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(200, 169, 110, 0.06);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(200, 169, 110, 0.12);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    color: var(--color-red);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-content {
    padding: 0 32px 24px;
    color: #4b5563;
    font-size: 14px;
    display: none;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 80px;
    border-radius: 24px;
    border: 1px solid rgba(200, 169, 110, 0.25);
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(200, 169, 110, 0.1), inset 0 1px 0 rgba(200, 169, 110, 0.15);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Gold radial glow inside CTA box */
.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Thin gold top border line on CTA */
.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.7), transparent);
}

.cta-box h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 24px;
    color: #f5ede0;
}

.cta-box h2 em {
    background: linear-gradient(135deg, #fceb9c 0%, #c8a96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.cta-box p {
    color: rgba(245, 237, 224, 0.7);
    margin-bottom: 48px;
    max-width: 600px;
    margin-inline: auto;
    font-weight: 400;
}

.cta-form {
    display: flex;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.cta-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: #f5ede0;
    font-weight: 500;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-input::placeholder {
    color: rgba(245, 237, 224, 0.35);
}

.cta-input:focus {
    outline: none;
    border-color: rgba(200, 169, 110, 0.7);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-links a {
    color: var(--color-red);
    transition: color 0.3s;
}

.cta-links a:hover {
    color: var(--color-red-dark);
}

.site-footer {
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    padding: 48px 0;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--color-black);
    font-weight: 600;
    letter-spacing: 2px;
}

.f-logo span {
    color: var(--color-red);
}

.f-copy {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.f-links {
    display: flex;
    gap: 32px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.f-links a:hover {
    color: var(--color-red);
}

/* =========================================
   10. MEDIA QUERIES (Responsiveness)
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-pillars {
        display: none;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

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

    .c-card-1 {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .c-card-2 {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .c-card-3 {
        position: static;
        width: 100%;
    }

    .challenge-visual {
        padding: 40px;
        background: none;
        min-height: auto;
    }

    .challenge-cards {
        position: relative;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .u-grid,
    .n-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .u-card:nth-child(3),
    .u-card:nth-child(4),
    .n-card:nth-child(3),
    .n-card:nth-child(4) {
        display: none;
    }

    .diffs-grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .site-footer .container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .timeline-wrapper {
        padding-left: 32px;
    }

    .timeline-number {
        left: -54px;
        width: 32px;
        height: 32px;
        font-size: 16px;
        top: 10px;
    }

    .timeline-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .brand-subtitle {
        display: none;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .brand-icon span {
        font-size: 26px;
    }

    .brand-icon span:last-child {
        font-size: 22px;
        top: 8px;
        right: 4px;
    }

    .u-grid,
    .n-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .u-card:nth-child(2),
    .n-card:nth-child(2) {
        display: none;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 40px);
    }

    .hero-container {
        gap: 30px;
    }

    .url-bar {
        font-size: 10px;
        padding: 4px 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60%;
    }

    .showcase-header h2 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .toggle-btn {
        padding: 12px;
        font-size: 10px;
    }

    .faq-btn {
        font-size: 16px;
        padding: 16px;
    }

    .cta-box h2 {
        font-size: clamp(28px, 6vw, 32px);
    }
}

/* =========================================
   LUXURY DECORATIVE ELEMENTS
   ========================================= */
.lux-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.lux-deco svg {
    position: absolute;
}

/* Float animation for large shapes */
@keyframes lux-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-18px) rotate(2deg);
    }

    66% {
        transform: translateY(-8px) rotate(-1.5deg);
    }
}

/* Slow drift for secondary shapes */
@keyframes lux-drift {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) translateX(6px) rotate(3deg);
    }

    75% {
        transform: translateY(8px) translateX(-4px) rotate(-2deg);
    }
}

/* Pulse glow for sparkle dots */
@keyframes lux-sparkle {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Slow spin for ring outlines */
@keyframes lux-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lux-float-a {
    animation: lux-float 8s ease-in-out infinite;
}

.lux-float-b {
    animation: lux-float 11s ease-in-out infinite 2s;
}

.lux-float-c {
    animation: lux-float 14s ease-in-out infinite 4s;
}

.lux-drift-a {
    animation: lux-drift 10s ease-in-out infinite;
}

.lux-drift-b {
    animation: lux-drift 13s ease-in-out infinite 3s;
}

.lux-sparkle-a {
    animation: lux-sparkle 3s ease-in-out infinite;
}

.lux-sparkle-b {
    animation: lux-sparkle 4s ease-in-out infinite 1s;
}

.lux-sparkle-c {
    animation: lux-sparkle 5s ease-in-out infinite 2s;
}

.lux-spin {
    animation: lux-spin-slow 30s linear infinite;
}

.lux-spin-r {
    animation: lux-spin-slow 40s linear infinite reverse;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 0, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(196, 0, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 0, 7, 0);
    }
}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding: 0 !important;
}