/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gold: #FFD700;
    --primary-gold-dark: #FFA500;
    --secondary-blue: #1E3A8A;
    --secondary-blue-light: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-green: #10B981;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --gradient-rainbow: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #8B5CF6 50%, #3B82F6 75%, #10B981 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px 0;
    --element-spacing: 2rem;
    
    /* Effects */
    --shadow-primary: 0 10px 30px rgba(255, 215, 0, 0.3);
    --shadow-secondary: 0 5px 20px rgba(30, 58, 138, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Logo */
.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
    color: #111827;
    box-shadow: var(--shadow-primary);
    flex: 0 0 auto;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

/* Utility */
.muted {
    color: #64748b;
    font-weight: 600;
}

/* Rates (City + Live pages) */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.rate-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.rate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.purity-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gradient-gold);
    color: #111827;
    font-weight: 900;
    font-size: 0.9rem;
}

.rate-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .rate-price { font-size: 1.85rem; }
    .rates-grid { grid-template-columns: 1fr; }
}

/* Homepage (Search-engine style) */
.home-hero {
    padding-top: 48px;
    padding-bottom: 72px;
    background: linear-gradient(180deg, #f8f6f1 0%, #f1f5f9 45%, #ffffff 100%);
}

.home-hero-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.10);
    max-width: 980px;
    margin: 0 auto;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 18px;
}

.search-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.18);
    font-weight: 700;
    outline: none;
}

.search-input:focus {
    border-color: rgba(255,165,0,0.9);
    box-shadow: 0 0 0 4px rgba(255,165,0,0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 900;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #111827;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-dark {
    background: #0f172a;
    color: #fff;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.8);
    color: #111827;
    text-decoration: none;
    font-weight: 800;
}

.product-cards {
    margin-top: 22px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card2 {
    border-radius: 18px;
    padding: 18px;
    color: #0f172a;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.92);
    position: relative;
    overflow: hidden;
}

.product-card2::before {
    content:"";
    position:absolute;
    inset:0;
    opacity:0.18;
    background: radial-gradient(800px 300px at 30% 0%, #FFD700, transparent),
                radial-gradient(700px 260px at 100% 10%, #3B82F6, transparent),
                radial-gradient(900px 300px at 0% 100%, #8B5CF6, transparent);
    pointer-events:none;
}

.product-card2 h3 { margin-top: 10px; margin-bottom: 8px; }
.product-card2 p { color: #334155; font-weight: 600; margin-bottom: 12px; }
.product-card2 ul { margin: 0; padding-left: 18px; color:#0f172a; font-weight:700; }

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 1000;
    background: rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .search-row { grid-template-columns: 1fr; }
    .home-hero { padding-top: 95px; padding-bottom: 54px; }
    .home-hero-card { padding: 18px; }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .cta-link {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        margin-left: 0;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.ai-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 2rem;
    }
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--primary-gold-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-more {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-more__summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-more__summary::-webkit-details-marker {
    display: none;
}

.nav-more__summary i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-more[open] .nav-more__summary i {
    transform: rotate(180deg);
}

.nav-more__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    min-width: 210px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 0.45rem;
    display: grid;
    gap: 0.2rem;
    z-index: 1200;
}

.nav-more__item {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-more__item:hover {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.06);
}

.cta-link {
    background: var(--gradient-gold);
    color: #111827 !important;
    padding: 0.6rem 1.75rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    margin-left: 0.5rem;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.golden-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--accent-purple), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--secondary-blue-light), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--accent-green), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: var(--section-padding);
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--secondary-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: var(--shadow-primary);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: white;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
}

.cta-button.secondary:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-icon.inventory {
    background: var(--gradient-gold);
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.floating-icon.analytics {
    background: var(--gradient-blue);
    top: 50%;
    left: -30px;
    animation-delay: 1s;
}

.floating-icon.invoice {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-green));
    bottom: 20%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 6px;
    height: 30px;
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

/* About Section — premium jeweler layout */
.about--lux {
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(201, 162, 39, 0.09) 0%, transparent 55%),
        linear-gradient(180deg, #fdfcfa 0%, #f7f3ec 45%, #faf8f5 100%);
    padding: 5.5rem 0 5rem;
    position: relative;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    border-bottom: 1px solid rgba(30, 58, 138, 0.06);
}

.about--lux__header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.about--lux__header .section-title {
    margin-bottom: 0.75rem;
    font-family: "Cormorant Garamond", var(--font-display), serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #0f172a;
    letter-spacing: 0.02em;
}

.about--lux__kicker {
    font-family: "Cormorant Garamond", var(--font-display), serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 600;
    font-style: italic;
    color: #7a6230;
    margin: 0;
    letter-spacing: 0.03em;
}

.about--lux__intro {
    max-width: 40rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.about--lux__intro p {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 1.25rem;
}

.about--lux__intro p:last-child {
    margin-bottom: 0;
}

.about--lux__intro strong {
    color: #1e293b;
    font-weight: 700;
}

.about--lux__strap {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.65;
}

.about--lux__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.65rem 1.35rem;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.about-stat-card::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b8860b, #e8c547, #b8860b);
    margin-bottom: 1rem;
}

.about-stat-card__figure {
    font-family: "Cormorant Garamond", var(--font-display), serif;
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.about-stat-card__name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #926c1a;
    margin-bottom: 0.75rem;
}

.about-stat-card__copy {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    text-align: center;
    max-width: 22rem;
}

.about--lux__panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.about-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.about-panel__heading {
    font-family: "Cormorant Garamond", var(--font-display), serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    letter-spacing: 0.02em;
}

.about-panel__heading--sub {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.about-timeline-lux {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-timeline-lux__row {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1rem 1.25rem;
    align-items: stretch;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.about-timeline-lux__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-timeline-lux__date {
    font-family: "Cormorant Garamond", var(--font-display), serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, #1e3a8a 0%, #2d4a7c 50%, #1a2f5c 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem 0.35rem;
    border: 1px solid rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
}

.about-timeline-lux__card {
    background: linear-gradient(180deg, #fffefb 0%, #f8f6f0 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.about-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-pillar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    margin: 0;
}

.about-pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.2) 0%, rgba(30, 58, 138, 0.12) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: #6b4e16;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-pillar__ttl {
    display: block;
    font-family: "Cormorant Garamond", var(--font-display), serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.about-pillar p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.about-vision p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

@media (max-width: 992px) {
    .about--lux__stats {
        grid-template-columns: 1fr;
        max-width: 28rem;
    }

    .about--lux__panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-timeline-lux__row {
        grid-template-columns: 1fr;
    }

    .about-timeline-lux__date {
        min-height: 2.5rem;
    }
}

/* Legacy mission / features still use .mission-points — About lux uses .about-pillar-list */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point i {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.point h4 {
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.point p {
    color: #64748b;
    margin: 0;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.product-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-gold);
}

.product-card.featured::before {
    background: var(--gradient-rainbow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.product-card.featured .product-icon {
    background: var(--gradient-rainbow);
}

.product-title {
    font-size: 1.75rem;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

.product-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #f8fafc;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.125rem;
}

.product-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #64748b;
    font-size: 0.875rem;
}

.product-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.product-cta.featured-cta {
    background: var(--gradient-gold);
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.features-kicker {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--secondary-blue);
    margin-bottom: 0.75rem !important;
}

.features-lead {
    max-width: 52rem;
    margin: 0 auto 2.25rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    font-weight: 500;
}

.feature-promise {
    margin-top: 3rem;
    padding: 2rem 1.75rem;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.14) 0%, #f1f5f9 45%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.feature-promise__title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--secondary-blue);
    margin: 0 0 0.75rem;
}

.feature-promise__text {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.65;
    color: #334155;
}

/* Revolution Section */
.revolution {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e293b 100%);
    color: white;
}

.revolution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.revolution-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.revolution-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.revolution-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.point-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.impact-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.metric-label {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Testimonials */
.testimonials {
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 162, 39, 0.45);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
}

.testimonial-author h4 {
    color: var(--secondary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-gold);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.cta-feature i {
    color: white;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-item h4 {
    color: var(--secondary-blue);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Footer */
.footer {
    background: var(--secondary-blue);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .about--lux__panels {
        grid-template-columns: 1fr;
    }

    .revolution-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-features {
        justify-content: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ========== Premium navigation (lux) ========== */
.navbar--lux {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 1px 0 rgba(255, 215, 0, 0.12);
}

.navbar--lux .nav-container {
    padding: 0.85rem 2rem;
}

.navbar--lux .logo-text {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.navbar--lux .nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #334155;
    padding: 0.2rem 0;
}

.navbar--lux .nav-link:hover {
    color: var(--secondary-blue);
}

.navbar--lux .nav-link::after {
    height: 2px;
    bottom: -4px;
    background: linear-gradient(90deg, #c9a227, #f59e0b);
}

.navbar--lux .cta-link {
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 162, 39, 0.45);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
}

.logo-img--fallback {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@media (min-width: 1101px) {
    .nav-container--lux {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        column-gap: 1.5rem;
    }

    .nav-container--lux .nav-menu {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: clamp(0.45rem, 1vw, 1.1rem);
    }

    .navbar--lux .nav-link {
        font-size: clamp(0.65rem, 0.55vw + 0.45rem, 0.8125rem);
        letter-spacing: 0.05em;
    }

    .navbar--lux .cta-link {
        padding: 0.5rem 1.15rem;
        flex-shrink: 0;
    }
}

@media (max-width: 1100px) {
    .navbar--lux .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        flex-wrap: nowrap;
        gap: 0;
    }

    .navbar--lux .nav-menu.active {
        left: 0;
    }

    .navbar--lux .nav-toggle {
        display: flex;
    }

    .nav-more {
        width: 100%;
    }

    .nav-more__summary {
        justify-content: center;
        width: 100%;
    }

    .nav-more__menu {
        position: static;
        min-width: 100%;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.35rem;
    }
}

.products-premium-grid--home {
    margin-top: 1.75rem;
    margin-bottom: 0.25rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 1200px) {
    .products-premium-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========== Hero image slider (max 3 slides) ========== */
.hero-slider {
    position: relative;
    margin-top: 72px;
    min-height: min(72vh, 640px);
    background: #0f172a;
    overflow: hidden;
}

.hero-slider__track {
    position: relative;
    width: 100%;
    height: min(72vh, 640px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease, visibility 0.85s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.45) 45%,
        rgba(15, 23, 42, 0.25) 100%
    );
    z-index: 0;
}

.hero-slide__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 1.5rem 3.25rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-slide__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e2c77a;
    margin-bottom: 0.75rem;
}

.hero-slide__title {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 18ch;
}

.hero-slide__desc {
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.9);
    max-width: 36ch;
    line-height: 1.55;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.35);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider__arrow:hover {
    background: rgba(201, 162, 39, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-slider__arrow--prev {
    left: 1rem;
}

.hero-slider__arrow--prev::before {
    content: "\2039";
    font-size: 1.5rem;
    line-height: 1;
}

.hero-slider__arrow--next {
    right: 1rem;
}

.hero-slider__arrow--next::before {
    content: "\203A";
    font-size: 1.5rem;
    line-height: 1;
}

.hero-slider__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider__dot.is-active {
    background: #e2c77a;
    border-color: #e2c77a;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .hero-slider {
        margin-top: 64px;
    }
    .hero-slider__track {
        height: 52vh;
        min-height: 320px;
    }
    .hero-slider__arrow {
        display: none;
    }
    .hero-slide__content {
        padding-bottom: 1.75rem;
    }
}

/* ========== Products page premium grid ========== */
.products-page-hero {
    padding: 7rem 0 2.75rem;
    background: linear-gradient(180deg, #0b1222 0%, #1e293b 55%, #1e293b 100%);
    border-bottom: 1px solid rgba(226, 199, 122, 0.2);
}

.products-page-hero h1 {
    color: #fff;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    margin-bottom: 0.75rem;
}

.products-page-hero__sub {
    color: rgba(248, 250, 252, 0.9);
    max-width: 52ch;
    font-size: 1.125rem;
    line-height: 1.65;
}

.products-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-premium-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
}

.product-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
}

.product-premium-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-premium-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-premium-card__body {
    padding: 1.75rem 1.75rem 2rem;
}

.product-premium-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 0.75rem;
}

.product-premium-card h2 {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: 1.65rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.product-premium-card p.lead {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.product-premium-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.product-premium-card ul li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #475569;
    font-size: 0.9rem;
}

.product-premium-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227, #f59e0b);
}

.product-premium-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1e3a8a;
    text-decoration: none;
    border-bottom: 2px solid rgba(30, 58, 138, 0.25);
    padding-bottom: 2px;
    transition: var(--transition);
}

.product-premium-card__cta:hover {
    color: #c9a227;
    border-color: rgba(201, 162, 39, 0.6);
}

/* ========== Company page (premium) ========== */
.company-premium-page {
    background: #faf9f7;
}

.company-premium {
    padding-top: 72px;
}

.company-premium__inner {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.company-premium__narrow {
    max-width: 840px;
}

.company-premium__hero {
    background: linear-gradient(165deg, #0f172a 0%, #1e3a5f 42%, #152a45 100%);
    color: #f8fafc;
    padding: 3.5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.company-premium__eyebrow {
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    margin: 0 0 1rem;
}

.company-premium__title {
    font-family: "Playfair Display", var(--font-display), serif;
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    font-weight: 600;
    line-height: 1.28;
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.company-premium__lead {
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.88);
    max-width: 40rem;
    margin: 0 auto;
    font-weight: 400;
}

.company-premium__surface {
    padding: 3.5rem 0 4.5rem;
}

.company-premium__duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .company-premium__duo {
        grid-template-columns: 1fr;
    }
}

.company-premium__panel {
    background: #fff;
    border-radius: 16px;
    padding: 1.85rem 1.65rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.company-premium__h2 {
    font-family: "Playfair Display", var(--font-display), serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1rem;
    letter-spacing: 0.03em;
}

.company-premium__h2--inline {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.company-premium__emphasis {
    font-family: "Playfair Display", var(--font-display), serif;
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    color: #1e3a8a;
    margin: 0 0 0.85rem;
    line-height: 1.45;
}

.company-premium__p {
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.company-premium__quote {
    margin: 0 0 2.75rem;
    padding: 0;
}

.company-premium__quote blockquote {
    margin: 0;
    padding: 1.35rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(30, 58, 138, 0.06) 100%);
    border-left: 4px solid #d4af37;
    border-radius: 0 12px 12px 0;
}

.company-premium__quote p {
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1e293b;
    line-height: 1.55;
    margin: 0;
}

.company-premium__trust {
    margin-bottom: 2.75rem;
}

.company-premium__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.company-premium__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.company-premium__list-marker {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(30, 58, 138, 0.08));
    color: #7c5e12;
    flex-shrink: 0;
}

.company-premium__list strong {
    font-family: "Montserrat", var(--font-primary), sans-serif;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.company-premium__list li > div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.company-premium__list li > div > span {
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.55;
    font-weight: 400;
}

.company-premium__concierge {
    margin-bottom: 2.5rem;
}

.company-premium__table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.company-premium__table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 0.925rem;
}

.company-premium__table th {
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #0f172a;
    width: 38%;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.company-premium__table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.company-premium__table tr:last-child th,
.company-premium__table tr:last-child td {
    border-bottom: none;
}

.company-premium__table a {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 58, 138, 0.25);
}

.company-premium__table a:hover {
    color: #b8860b;
    border-color: rgba(184, 134, 11, 0.45);
}

.company-premium__cta-wrap {
    text-align: center;
    margin: 0;
}

.company-premium__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", var(--font-primary), sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    color: #1e3a8a;
    background: transparent;
    border: 2px solid #d4af37;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
}

.company-premium__cta:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(30, 58, 138, 0.08));
    border-color: #c9a227;
    transform: translateY(-2px);
}
