/* ============================================
   ASSET RECOVERY GROUP — COMPLETE STYLE.CSS
   Fixed: No horizontal scroll on any device
   Professional | Dark | Navy + Gold
   ============================================ */

/* ============================================
   FORCE NO HORIZONTAL SCROLL — OVERRIDE
   ============================================ */

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

body {
    overflow-x: hidden !important;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================
   CSS VARIABLES — GOLD THEME
   ============================================ */

:root {
    --bg-deep:        #050814;
    --bg-surface:     #0a1128;
    --bg-elevated:    #0f172a;
    --bg-card:        #131c2e;
    --border-subtle:  #1e293b;
    --border-medium:  #2d3a52;
    --gold:           #c9a84c;
    --gold-light:     #dbb85c;
    --gold-dim:       #8e7340;
    --gold-glow:      rgba(201, 168, 76, 0.08);
    --text-primary:   #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted:     #64748b;
    --danger:         #c96b6b;
    --danger-glow:    rgba(201, 107, 107, 0.1);
    --warning:        #d4943a;
    --warning-glow:   rgba(212, 148, 58, 0.1);
    --success:        #2a7a5e;
    --success-glow:   rgba(42, 122, 94, 0.1);
    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      24px;
    --radius-xl:      32px;
    --radius-pill:    999px;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
    --shadow-md:      0 8px 24px rgba(0,0,0,0.5);
    --shadow-lg:      0 20px 48px rgba(0,0,0,0.6);
    --transition:     all 0.25s cubic-bezier(0.2, 0.8, 0.4, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.55;
    overflow-x: hidden;
    width: 100%;
}

img, svg, iframe, video, canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'DM Sans', sans-serif;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

h1 {
    font-size: clamp(36px, 6vw, 76px);
    font-weight: 700;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
}

h3 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
}

.gold { color: var(--gold); }

.section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    border: 1px solid var(--border-subtle);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.65;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-medium);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-deep);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    margin-top: 12px;
}

.btn-contact:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-contact-email {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.btn-contact-email:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 26px;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-primary);
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.055;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(5, 8, 20, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-stage {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    max-width: 960px;
    width: 100%;
    margin-top: 72px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-dim);
}

.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    width: 100%;
}

.hero-line {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-line-1 {
    font-size: clamp(44px, 8vw, 120px);
    color: var(--text-primary);
    font-weight: 700;
}

.hero-line-2 {
    font-size: clamp(44px, 8vw, 120px);
    color: var(--gold);
    font-style: italic;
}

.hero-line-3 {
    font-size: clamp(44px, 8vw, 120px);
    color: var(--text-primary);
}

.hero-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
    padding: 0 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.hero-stats-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(10, 17, 40, 0.7);
    backdrop-filter: blur(16px);
    padding: 28px 20px;
}

.hero-stat {
    text-align: center;
    flex: 0 1 auto;
    min-width: 100px;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.hero-stat-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-track span i {
    color: var(--gold-dim);
    font-size: 11px;
}

.marquee-dot {
    color: var(--border-medium) !important;
    font-size: 20px !important;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
    width: 100%;
}

.trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--gold);
    font-size: 13px;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border-subtle);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    padding: 80px 0;
    background: var(--bg-deep);
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 80px 0;
    background: var(--bg-surface);
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.step-icon {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-us {
    padding: 80px 0;
    background: var(--bg-deep);
    width: 100%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.why-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   SCAM DATABASE
   ============================================ */

.scam-database {
    padding: 80px 0;
    background: var(--bg-surface);
    width: 100%;
    overflow-x: hidden;
}

.db-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.db-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 0 16px;
    width: 280px;
}

.db-search i {
    color: var(--text-muted);
    font-size: 13px;
}

.db-search input {
    background: none;
    border: none;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 13px;
    width: 100%;
    outline: none;
}

.db-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.db-filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.db-filter-btn:hover,
.db-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
}

.db-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.db-table-wrapper {
    width: 100%;
    overflow-x: visible;
}

.db-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: fixed;
}

.db-table thead tr {
    border-bottom: 1px solid var(--border-medium);
}

.db-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.db-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: top;
}

.db-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.03);
}

.db-table td strong {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.db-table td p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.db-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.db-type.crypto     { background: rgba(201, 168, 76, 0.1); color: var(--gold); border: 1px solid rgba(201, 168, 76, 0.2); }
.db-type.rental     { background: var(--danger-glow); color: var(--danger); }
.db-type.investment { background: var(--success-glow); color: #3aaa82; }
.db-type.forex      { background: var(--warning-glow); color: var(--warning); }
.db-type.phishing   { background: rgba(201, 168, 76, 0.05); color: var(--text-secondary); }

.warning-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.warning-badge.high   { background: var(--danger-glow); color: var(--danger); }
.warning-badge.medium { background: var(--warning-glow); color: var(--warning); }
.warning-badge.low    { background: rgba(201, 168, 76, 0.08); color: var(--text-secondary); }

.db-view-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.db-view-btn:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-tag {
    display: inline-block;
    background: var(--gold-glow);
    border: 1px solid var(--border-subtle);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.modal-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.modal-warning {
    background: var(--danger-glow);
    border-left: 3px solid var(--danger);
    padding: 12px 16px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--danger);
}

.modal-body {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    text-align: center;
}

/* ============================================
   EVIDENCE & REPORTS
   ============================================ */

.evidence {
    padding: 80px 0;
    background: var(--bg-surface);
    width: 100%;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.evidence-card {
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.evidence-preview {
    background: var(--bg-elevated);
    padding: 28px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.fake-doc {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 20px;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

.fake-doc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.fake-doc-header i { color: var(--gold); }

.fake-doc-title {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.fake-doc-meta {
    display: flex;
    gap: 12px;
    font-size: 8px;
    color: #64748b;
    margin-bottom: 12px;
}

.fake-doc-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doc-line {
    height: 5px;
    background: #e2e8f0;
    border-radius: 3px;
}

.doc-line.long   { width: 100%; }
.doc-line.medium { width: 68%; }
.doc-line.short  { width: 40%; }

.fake-doc-stamp {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 8px;
    font-weight: 800;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    transform: rotate(-12deg);
}

.fake-doc.blockchain {
    background: #0d1117;
}

.blockchain .fake-doc-header { color: #94a3b8; }
.blockchain .fake-doc-title  { color: #e2e8f0; }

.chain-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
}

.chain-node {
    background: #1e293b;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.chain-arrow {
    font-size: 10px;
    color: var(--gold);
}

.evidence-info {
    padding: 28px;
}

.evidence-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.evidence-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.evidence-list {
    list-style: none;
}

.evidence-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.evidence-list i {
    color: var(--gold);
    font-size: 11px;
}

/* ============================================
   PARTNERSHIPS
   ============================================ */

.partnerships {
    padding: 80px 0;
    background: var(--bg-deep);
    width: 100%;
}

.recent-partnership-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold-glow);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 6px 20px;
    width: fit-content;
    margin: 0 auto 32px;
}

.partner-profile {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 860px;
    margin: 0 auto 60px;
}

.partner-avatar {
    width: 100px;
    height: 100px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
    flex-shrink: 0;
    overflow: hidden;
}

.partner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-doj-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.partner-info h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.partner-title {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.recent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-pill);
    padding: 3px 10px;
    margin: 8px 0 12px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
}

.partner-doj-role {
    font-size: 12px;
    color: var(--gold-dim);
    font-style: italic;
    margin-bottom: 14px;
}

.partner-info > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partner-tags span {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
}

.institutional-partners {
    text-align: center;
}

.inst-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.inst-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.inst-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.inst-item i {
    font-size: 28px;
    color: var(--gold-dim);
}

.inst-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.inst-desc {
    font-size: 10px;
    color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 80px 0;
    background: var(--bg-surface);
    width: 100%;
    overflow: hidden;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold-glow);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--gold);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 11px;
    color: var(--text-muted);
}

.recovery-amount {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.t-arrow {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
}

.t-arrow:hover {
    background: var(--gold);
    color: var(--bg-deep);
}

.t-dots {
    display: flex;
    gap: 10px;
}

.t-dot {
    width: 7px;
    height: 7px;
    background: var(--border-medium);
    border-radius: 50%;
    cursor: pointer;
}

.t-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */

.consultation {
    padding: 80px 0;
    background: var(--bg-deep);
    width: 100%;
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.consultation-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.consultation-info > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

.consult-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.consult-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.consult-feature i {
    color: var(--gold);
    width: 20px;
}

.consultation-contact-box {
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-option {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.contact-divider {
    height: 1px;
    background: var(--border-subtle);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 14px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    padding: 80px 0;
    background: var(--bg-surface);
    width: 100%;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 14px;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 28px;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 24px;
    color: var(--gold);
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    text-align: center;
}

.copyright {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer-text {
    font-size: 9px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   CASE TEAM SECTION
   ============================================ */

.case-team {
    padding: 80px 0;
    background: var(--bg-surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.team-card {
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.team-image {
    padding: 24px 24px 0 24px;
    display: flex;
    justify-content: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.team-info {
    padding: 0 24px 24px 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-title {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-glow);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 14px;
}

.team-badge i {
    color: var(--gold);
    font-size: 10px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.team-expertise span {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-info h3 {
        font-size: 18px;
    }
}