/* ============================================
   Trusted Business Awards - Premium Design
   Navy (#1B2A4A) & Gold (#C5A55A)
   ============================================ */

:root {
    --navy: #1B2A4A;
    --navy-light: #253a5e;
    --navy-dark: #0f1a2e;
    --gold: #C5A55A;
    --gold-light: #d9c07e;
    --gold-dark: #a88b3d;
    --gold-glow: rgba(197, 165, 90, 0.15);
    --text: #2d3748;
    --text-muted: #718096;
    --text-soft: #94a3b8;
    --bg-warm: #faf9f7;
    --bg-section: #f7f6f3;
    --bg-subtle: #f3f4f6;
    --border-light: #e8e6e1;
    --border-soft: #eef0f3;
    --success: #2f855a;
    --success-soft: rgba(56,161,105,0.08);
    --danger: #c53030;
    --danger-soft: rgba(229,62,62,0.08);
    --warning: #b7791f;
    --warning-soft: rgba(183,121,31,0.08);
    --info: #2c5282;
    --info-soft: rgba(44,82,130,0.08);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-xs: 0 1px 2px rgba(27,42,74,0.04);
    --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
    --shadow: 0 4px 20px rgba(27,42,74,0.08);
    --shadow-lg: 0 12px 40px rgba(27,42,74,0.12);
    --shadow-gold: 0 4px 20px rgba(197,165,90,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* === Base === */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    font-size: 0.95rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.3;
    color: var(--navy);
}

a {
    color: var(--navy);
    transition: var(--transition);
}
a:hover {
    color: var(--gold);
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* === Utility Classes === */
.bg-navy { background-color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-warm { background-color: var(--bg-warm) !important; }
.text-navy { color: var(--navy) !important; }
.text-gold { color: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }
.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* === Buttons === */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
    letter-spacing: 0.01em;
    font-size: 0.9rem;
    position: relative;
}
.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-navy {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(27,42,74,0.25);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    font-weight: 600;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.6) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Hero CTA buttons */
.hero-cta-primary {
    padding: 0.9rem 2.2rem;
    font-size: 1.02rem;
    box-shadow: 0 4px 15px rgba(197,165,90,0.3);
}
.hero-cta-primary:hover {
    box-shadow: 0 8px 30px rgba(197,165,90,0.4);
}
.hero-cta-secondary {
    padding: 0.9rem 2.2rem;
    font-size: 1.02rem;
}

/* === Navbar === */
.navbar {
    padding: 0.7rem 0;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}
.navbar-dark.bg-navy {
    background: rgba(15,26,46,0.95) !important;
    border-bottom: 1px solid rgba(197,165,90,0.08);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar-dark .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: var(--gold) !important;
    background: rgba(197,165,90,0.06);
}
.navbar-brand {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}
.navbar-brand i {
    filter: drop-shadow(0 0 10px rgba(197,165,90,0.5));
}

/* === Hero Section === */
.hero {
    background: linear-gradient(165deg, #080e1a 0%, var(--navy-dark) 25%, var(--navy) 55%, var(--navy-light) 100%);
    color: #fff;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}
/* Subtle grid pattern */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(197,165,90,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197,165,90,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
}
/* Decorative accents */
.hero-orb {
    position: absolute;
    pointer-events: none;
}
.hero-orb-1 {
    width: 1px;
    height: 100%;
    top: 0;
    right: 20%;
    background: linear-gradient(to bottom, transparent 0%, rgba(197,165,90,0.06) 50%, transparent 100%);
}
.hero-orb-2 {
    width: 1px;
    height: 100%;
    top: 0;
    left: 15%;
    background: linear-gradient(to bottom, transparent 0%, rgba(197,165,90,0.04) 50%, transparent 100%);
}
.hero-orb-3 {
    width: 100%;
    height: 1px;
    top: 70%;
    left: 0;
    background: linear-gradient(to right, transparent 0%, rgba(197,165,90,0.05) 50%, transparent 100%);
}

.hero::after {
    display: none;
}
.hero > .container {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.12;
}
.hero h1 .text-gold-gradient {
    background: linear-gradient(135deg, #f0dfa0 0%, #d4b96a 30%, #c5a55a 60%, #e8d48b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(197,165,90,0.2));
}
.hero .lead {
    font-size: 1.08rem;
    opacity: 0.75;
    line-height: 1.85;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
/* Badge wrapper with glow */
.hero-badge-wrapper {
    position: relative;
    display: inline-block;
}
.hero-badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(197,165,90,0.08);
    background: radial-gradient(circle, rgba(197,165,90,0.06) 0%, transparent 60%);
    animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}
.hero-badge-img {
    width: 300px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.35));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-0.5deg); }
}
/* Inner page hero (smaller) */
.hero-inner {
    min-height: auto !important;
    padding: 3.5rem 0 3rem !important;
}
.hero-inner h1 {
    font-size: 2.5rem;
    color: #fff;
}
.hero-inner::after {
    display: none;
}

.hero-mini-stat {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}
.hero-mini-stat i {
    color: var(--gold);
}

/* === Trust Bar === */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.trust-bar-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.3rem 0;
}
.trust-bar-bordered {
    border-right: 1px solid var(--border-light);
}
.trust-bar-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-bar-icon i {
    color: var(--gold-dark);
    font-size: 1rem;
}

/* === Cards === */
.card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: #fff;
}
.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.card-navy {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* === Category Cards === */
.category-card {
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.category-card:hover::before {
    transform: scaleX(1);
}
.category-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-lg);
}
.category-card .category-icon {
    font-size: 2.2rem;
    color: var(--gold);
    transition: var(--transition);
}
.category-card:hover .category-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(197,165,90,0.3));
}

/* === Section Styles === */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-label-gold {
    background: var(--gold-glow);
    color: var(--gold-dark);
    border: 1px solid rgba(197,165,90,0.25);
}
.section-label-navy {
    background: rgba(27,42,74,0.06);
    color: var(--navy);
    border: 1px solid rgba(27,42,74,0.12);
}
.section-label-danger {
    background: rgba(220,53,69,0.06);
    color: #c62828;
    border: 1px solid rgba(220,53,69,0.15);
}

/* === How It Works / Steps === */
.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(27,42,74,0.2);
    position: relative;
}
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}
.step-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition);
}
.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(197,165,90,0.3);
}
.step-card:hover::before {
    opacity: 1;
}
.step-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

/* === Auth Pages === */
.auth-body {
    background: linear-gradient(165deg, #080e1a 0%, var(--navy-dark) 30%, var(--navy) 60%, var(--navy-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-wrapper {
    width: 100%;
    max-width: 460px;
    padding: 1rem;
}
.auth-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}
.auth-logo {
    text-decoration: none;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.auth-logo i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(197,165,90,0.3));
}

/* === Form Controls === */
.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid #d2d6dc;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.12);
    background: #fff;
}
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.form-control::placeholder {
    color: #adb5bd;
}

/* === Form Stepper === */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #dee2e6;
    z-index: 0;
}
.stepper .step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.stepper .step-number {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e2e8f0;
    color: #a0aec0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.stepper .step.active .step-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
}
.stepper .step.completed .step-number {
    background: var(--navy);
    color: var(--gold);
}
.stepper .step-label {
    font-size: 0.75rem;
    color: #a0aec0;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.stepper .step.active .step-label {
    color: var(--navy);
    font-weight: 700;
}
.step-content { display: none; }
.step-content.active { display: block; }

/* === Dashboard === */
.stat-card {
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
}
.stat-card .stat-number,
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
}
.stat-card .stat-label,
.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* === Badge / Verification === */
.verification-card {
    max-width: 560px;
    margin: 0 auto;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.verified-badge {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 10px 24px rgba(197,165,90,0.32));
}

/* === Embed Code === */
.embed-code-box {
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.2rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.82rem;
    word-break: break-all;
    color: var(--navy);
}

/* === Pricing Card === */
.pricing-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: var(--transition);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.pricing-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-header h4 {
    color: #fff;
    font-size: 1.3rem;
}
.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Progress Bar Gold === */
.progress {
    border-radius: 20px;
    background: #e2e8f0;
    overflow: hidden;
}
.progress-bar.bg-gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark)) !important;
}

/* === Badges === */
.badge {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    padding: 0.35em 0.7em;
    border-radius: 6px;
}
.badge.bg-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #fff !important;
}

/* === Footer === */
footer {
    border-top: 1px solid rgba(197,165,90,0.12);
}
footer h5, footer h6 {
    color: var(--gold) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* === Featured / Scarcity Section === */
.featured-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}
.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e53e3e, #dd6b20, var(--gold));
}
.featured-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

/* === CTA Section === */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(165deg, #080e1a 0%, var(--navy-dark) 30%, var(--navy) 60%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197,165,90,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(197,165,90,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* === Divider Decorations === */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    margin: 0 auto 1.5rem;
}

/* === Alert override === */
.alert {
    border-radius: var(--radius);
    border: none;
    font-size: 0.9rem;
}

/* === Tables === */
.table th {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* === Input Group === */
.input-group-text {
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
}
.input-group .form-control {
    border-radius: 0 8px 8px 0;
}

/* === Card hover control === */
.card.no-hover:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

/* === Dropdown === */
.dropdown-menu {
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}
.dropdown-item {
    border-radius: 6px;
    font-size: 0.9rem;
}
.dropdown-item:hover {
    background: var(--bg-warm);
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: #c5c5c5; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a0a0a0; }

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* === Page Header (dashboard/inner pages) === */
.page-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}
.page-header .page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}
.page-header .page-subtitle {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}
.page-header .page-subtitle i {
    color: var(--gold);
}
.page-header .page-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* === Info Card (used on detail pages) === */
.info-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
}
.info-card:hover {
    box-shadow: var(--shadow-sm);
}
.info-card.no-hover:hover {
    box-shadow: var(--shadow-xs);
}
.info-card.accent-top {
    border-top: 3px solid var(--gold);
}
.info-card.accent-left {
    border-left: 3px solid var(--gold);
}
.info-card .info-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-soft);
    background: #fff;
}
.info-card .info-card-header h5,
.info-card .info-card-header h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.005em;
}
.info-card .info-card-header .header-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gold-glow);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.info-card .info-card-header .header-spacer {
    flex-grow: 1;
}
.info-card .info-card-body {
    padding: 1.25rem;
}
.info-card .info-card-body.compact {
    padding: 0.75rem 1.25rem;
}
.info-card .info-card-body p:last-child {
    margin-bottom: 0;
}

/* === Info Rows (label/value pairs) === */
.info-row {
    display: flex;
    gap: 1rem;
    padding: 0.6rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-soft);
}
.info-row:last-child {
    border-bottom: none;
}
.info-row .info-label {
    flex: 0 0 35%;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.info-row .info-value {
    flex: 1;
    color: var(--navy);
    font-weight: 500;
    word-break: break-word;
}
.info-row .info-value.muted {
    color: var(--text-muted);
    font-weight: 400;
}

/* === Detail Block (for prose content inside cards) === */
.detail-block {
    margin-bottom: 1.25rem;
}
.detail-block:last-child {
    margin-bottom: 0;
}
.detail-block .detail-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.detail-block p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
}

/* === Timeline (vertical) === */
.timeline {
    position: relative;
    padding-left: 1.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 10px;
    width: 2px;
    background: var(--border-light);
}
.timeline-item {
    position: relative;
    padding-bottom: 1rem;
    font-size: 0.85rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -1.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.timeline-item .timeline-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}
.timeline-item .timeline-value {
    font-weight: 600;
    color: var(--navy);
}

/* === Enhanced Stat Cards === */
.stat-tile {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem 1.2rem;
    transition: var(--transition);
    overflow: hidden;
}
.stat-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    opacity: 0.85;
    transition: var(--transition);
}
.stat-tile.tone-navy::before { background: var(--navy); }
.stat-tile.tone-success::before { background: var(--success); }
.stat-tile.tone-warning::before { background: var(--warning); }
.stat-tile.tone-danger::before { background: var(--danger); }
.stat-tile.tone-info::before { background: var(--info); }
.stat-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.stat-tile:hover::before {
    width: 5px;
}
.stat-tile .stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}
.stat-tile .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.stat-tile .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--gold-glow);
    color: var(--gold-dark);
}
.stat-tile.tone-navy .stat-icon { background: rgba(27,42,74,0.08); color: var(--navy); }
.stat-tile.tone-success .stat-icon { background: var(--success-soft); color: var(--success); }
.stat-tile.tone-warning .stat-icon { background: var(--warning-soft); color: var(--warning); }
.stat-tile.tone-danger .stat-icon { background: var(--danger-soft); color: var(--danger); }
.stat-tile.tone-info .stat-icon { background: var(--info-soft); color: var(--info); }
.stat-tile .stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.stat-tile .stat-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}
.stat-tile .stat-hint i {
    margin-right: 0.25rem;
}
.stat-tile .stat-hint.trend-up { color: var(--success); }
.stat-tile .stat-hint.trend-down { color: var(--danger); }

/* === Empty States === */
.empty-state {
    text-align: center;
    padding: 2.5rem 1.5rem;
    color: var(--text-muted);
}
.empty-state .empty-icon {
    font-size: 2.75rem;
    color: var(--border-light);
    margin-bottom: 0.75rem;
    line-height: 1;
}
.empty-state .empty-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.empty-state .empty-text {
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

/* === Mini badge summary (dashboard right column) === */
.mini-badge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: #fff;
    transition: var(--transition);
    margin-bottom: 0.6rem;
}
.mini-badge:last-child { margin-bottom: 0; }
.mini-badge:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(2px);
}
.mini-badge img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(197,165,90,0.25));
}
.mini-badge .mini-badge-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--navy);
    display: block;
    line-height: 1.25;
}
.mini-badge .mini-badge-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* === Refined table styling for data views === */
.table-clean {
    margin-bottom: 0;
}
.table-clean thead th {
    background: var(--bg-section);
    border-top: none;
    border-bottom: 1px solid var(--border-light);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 0.85rem 1rem;
}
.table-clean tbody td {
    padding: 0.9rem 1rem;
    vertical-align: middle;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-soft);
}
.table-clean tbody tr:last-child td {
    border-bottom: none;
}
.table-clean tbody tr {
    transition: var(--transition-fast);
}
.table-clean tbody tr:hover {
    background: var(--bg-warm);
}

/* === Status pills (semantic) === */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
}
.status-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.status-pill.is-success { background: var(--success-soft); color: var(--success); }
.status-pill.is-warning { background: var(--warning-soft); color: var(--warning); }
.status-pill.is-danger  { background: var(--danger-soft); color: var(--danger); }
.status-pill.is-info    { background: var(--info-soft); color: var(--info); }
.status-pill.is-muted   { background: #edf0f3; color: var(--text-muted); }

/* === Section background variants === */
.section-bg-warm { background: var(--bg-warm); }
.section-bg-soft { background: var(--bg-section); }
.section-bg-subtle { background: var(--bg-subtle); }

/* === Verification page refinements === */
.verification-card {
    background: #fff;
}
.verification-card .verification-header {
    padding: 2.2rem 1.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(197,165,90,0.06) 0%, rgba(255,255,255,0) 100%);
    border-bottom: 1px solid var(--border-soft);
}
.verification-card.revoked .verification-header {
    background: linear-gradient(180deg, rgba(229,62,62,0.05) 0%, rgba(255,255,255,0) 100%);
}
.verification-card .verification-body {
    padding: 1.5rem 2rem 2rem;
}
.verification-card .verification-footer {
    padding: 1rem 1.5rem 1.5rem;
}
.verification-status-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}
.verified-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,161,105,0.18) 0%, rgba(56,161,105,0) 70%);
    margin-bottom: 0.75rem;
}
.verified-check i {
    font-size: 3.5rem;
    color: var(--success);
    animation: scaleIn 0.5s ease;
}
.revoked-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,62,62,0.15) 0%, rgba(229,62,62,0) 70%);
    margin-bottom: 0.75rem;
}
.revoked-x i {
    font-size: 3.5rem;
    color: var(--danger);
    animation: scaleIn 0.5s ease;
}

/* === Responsive === */
@media (max-width: 992px) {
    .hero-title { font-size: 2.6rem; }
    .hero { padding: 4rem 0 3rem; min-height: auto; }
    .section-title { font-size: 1.8rem; }
    .trust-bar-bordered { border-right: none; }
    .stat-tile .stat-value { font-size: 1.5rem; }
    body { padding-bottom: 70px; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.1rem; }
    .hero { padding: 3.5rem 0 2.5rem; }
    .hero-badge-img { width: 200px; }
    .stepper .step-label { display: none; }
    .section-title { font-size: 1.5rem; }
    .pricing-price { font-size: 2.5rem; }
    .hero-cta-primary, .hero-cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    .page-header { flex-direction: column; align-items: flex-start; }
    .page-header .page-actions { width: 100%; }
    .info-row { flex-direction: column; gap: 0.15rem; }
    .info-row .info-label { flex: none; }
    .verification-card .verification-body { padding: 1.25rem 1.25rem 1.5rem; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero .lead { font-size: 0.95rem; }
    .trust-bar-item { font-size: 0.75rem; }
    .trust-bar-icon { width: 28px; height: 28px; }
    .trust-bar-icon i { font-size: 0.8rem; }
    .stat-tile .stat-value { font-size: 1.4rem; }
}

/* === Social Proof Ticker === */
.social-proof-ticker {
    white-space: nowrap;
    position: relative;
}
.social-proof-ticker::before,
.social-proof-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.social-proof-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-warm), transparent);
}
.social-proof-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-warm), transparent);
}
.ticker-track {
    display: inline-flex;
    gap: 3rem;
    animation: tickerScroll 150s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text);
    padding: 0.2rem 0;
}
.ticker-item strong {
    font-weight: 600;
    color: var(--navy);
}
.ticker-location {
    color: var(--text-muted);
    font-size: 0.78rem;
}
.ticker-location::before {
    content: '\2022';
    margin: 0 0.35rem;
}
.ticker-time {
    color: var(--text-soft);
    font-size: 0.75rem;
}
.ticker-time::before {
    content: '\2022';
    margin: 0 0.35rem;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 576px) {
    .ticker-item { font-size: 0.75rem; }
    .ticker-track { gap: 2rem; }
}

/* === Global Trust Credentials Bar === */
.trust-credentials-bar {
    background: linear-gradient(165deg, #080e1a 0%, var(--navy-dark) 40%, var(--navy) 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(197,165,90,0.15);
}
.trust-credentials-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.tc-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.tc-stat {
    text-align: center;
}
.tc-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}
.tc-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}
.tc-divider {
    width: 1px;
    height: 50px;
    background: rgba(197,165,90,0.2);
    flex-shrink: 0;
}
.tc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
    transition: var(--transition-fast);
}
.tc-badge i {
    color: var(--gold);
    font-size: 0.82rem;
}
.tc-badge:hover {
    background: rgba(197,165,90,0.08);
    border-color: rgba(197,165,90,0.2);
    color: rgba(255,255,255,0.9);
}
@media (max-width: 768px) {
    .trust-credentials-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .tc-group {
        gap: 1.5rem;
    }
    .tc-divider {
        width: 60px;
        height: 1px;
    }
    .tc-stat-number {
        font-size: 1.3rem;
    }
    .tc-badges {
        gap: 0.4rem;
    }
    .tc-badge {
        font-size: 0.68rem;
        padding: 0.35rem 0.6rem;
    }
}
