/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    min-height: 100vh;
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.5;
}



/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: #0B0B0B;
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    min-height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo svg {
    width: 120px;
    height: 36px;
    transition: transform 0.3s ease;
}

.logo svg:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
}

.logo:hover .logo-text {
    color: #F8D12F;
}

/* Header Right */
.header-right {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* Wallet Button */
.btn-wallet {
    background: transparent !important;
    color: #FF6B35 !important;
    padding: 14px 32px !important;
    border: 2px solid #FF6B35 !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    font-size: 1rem !important;
}

.btn-wallet:hover {
    background: transparent !important;
    color: #FF6B35 !important;
    border-color: #FF6B35 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Hero Section */
.hero {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 4rem 0 0 0;
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.3rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-primary {
    background: #FF6B35;
    color: #000;
    box-shadow: none;
}

.btn-primary:hover {
    background: #FF6B35;
    transform: none;
    box-shadow: none;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
}

.main-illustration {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-illustration:hover {
    transform: scale(1.02);
}

/* About Service Section */
.about-service {
    padding: 2rem 0;
    background-color: #000;
}

/* Report Section */
.report-section {
    padding: 6rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #FF6B35;
}

/* Floating Balls */
.floating-balls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, rgba(255, 107, 53, 0.2) 30%, rgba(255, 107, 53, 0.05) 70%, transparent 100%);
    filter: blur(20px);
    animation: float 8s ease-in-out infinite;
}

.ball-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    filter: blur(25px);
}

.ball-2 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 12%;
    animation-delay: 2s;
    filter: blur(30px);
}

.ball-3 {
    width: 90px;
    height: 90px;
    top: 25%;
    right: 20%;
    animation-delay: 4s;
    filter: blur(20px);
}

.ball-4 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
    filter: blur(28px);
}

.ball-5 {
    width: 110px;
    height: 110px;
    top: 65%;
    left: 55%;
    animation-delay: 1s;
    filter: blur(22px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.05);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-8px) translateX(-5px) scale(0.95);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-25px) translateX(8px) scale(1.1);
        opacity: 0.5;
    }
}

.report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.report-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.report-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.report-subtitle {
    font-size: 1.3rem;
    color: #B7BDC6;
    max-width: 600px;
    margin: 0 auto;
}

.report-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.report-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.report-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.report-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.report-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.report-info p {
    font-size: 0.95rem;
    color: #B7BDC6;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.verification-summary {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.verification-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.summary-chart {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.chart-circle {
    position: relative;
    width: 220px;
    height: 220px;
}

.chart-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}



.chart-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.chart-label {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-actions {
    flex: 1;
    position: relative;
    z-index: 2;
}

.summary-actions h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.summary-actions p {
    font-size: 1.1rem;
    color: #B7BDC6;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 0;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    position: relative;
    z-index: 2;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #B7BDC6;
    line-height: 1.5;
    margin: 0;
}

.verification-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.verification-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #B7BDC6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.report-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Chart Container */
.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(43, 49, 57, 0.5);
    border-bottom: 1px solid rgba(43, 49, 57, 0.5);
}

.circular-chart {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(43, 49, 57, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.1);
}

.chart-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.chart-bg {
    transition: all 0.8s ease;
    stroke: #2B3139;
    stroke-width: 8;
    fill: none;
}

.chart-progress {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: chartFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    stroke: #FF6B35;
    stroke-width: 8;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(240, 185, 11, 0.4));
}

@keyframes chartFill {
    to {
        stroke-dashoffset: 64.8; /* 87.3% of 502.4 */
    }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.chart-percentage {
    font-size: 2.6rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-family: 'IBM Plex Sans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chart-label {
    font-size: 1rem;
    color: #B7BDC6;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.7s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Chart background glow effect */
.chart-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.06) 0%, transparent 70%);
    border-radius: 0;
    z-index: -1;
}

/* Verification Details */
.verification-details {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 0;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.details-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
}

.condition-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(11, 14, 17, 0.4);
    border-radius: 0;
    border: 1px solid rgba(43, 49, 57, 0.5);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out both;
}

.condition-item:nth-child(2) { animation-delay: 0.1s; }
.condition-item:nth-child(3) { animation-delay: 0.2s; }
.condition-item:nth-child(4) { animation-delay: 0.3s; }

.condition-item:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.condition-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.condition-icon.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.condition-icon.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.condition-content {
    flex: 1;
}

.condition-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.condition-content p {
    font-size: 0.9rem;
    color: #B7BDC6;
    margin: 0;
}

.condition-status {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22C55E;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 0;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.condition-status.warning {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Verification Summary */
.verification-summary {
    margin-top: 2rem;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(11, 14, 17, 0.3);
    border-radius: 0;
    border: 1px solid rgba(43, 49, 57, 0.3);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out both;
}

.summary-item:nth-child(1) { animation-delay: 0.4s; }
.summary-item:nth-child(2) { animation-delay: 0.5s; }

.summary-item:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.summary-content {
    flex: 1;
}

.summary-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.summary-content p {
    font-size: 0.95rem;
    color: #B7BDC6;
    margin: 0;
    line-height: 1.5;
}

/* Check Wallet Section */
.check-wallet-section {
    margin-top: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(43, 49, 57, 0.5);
}

.btn-check-wallet {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
    color: #0B0E11;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-check-wallet:hover {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 30%, transparent 70%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(to bottom, #FF6B35 0%, #FF6B35 70%, transparent 100%) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}



.advantage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}



.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-description {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

.advantage-link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    align-self: flex-start;
}



/* FAQ Section */
.faq-section {
    background: #000;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #FF6B35;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #B7BDC6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.faq-item.active {
    border-color: #FF6B35;
}

.faq-question {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
}

.faq-question h3 {
    margin: 0;
    flex: 1;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    background: #0B0B0B;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 2.5rem 2rem 2rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #B7BDC6;
    line-height: 1.6;
    margin: 0;
}

.faq-answer p strong {
    color: #FF6B35;
    font-weight: 600;
}

.faq-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.faq-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-content p {
    font-size: 1rem;
    color: #B7BDC6;
    line-height: 1.6;
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 50%, transparent 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-description {
    font-size: 1rem;
    color: #B7BDC6;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(43, 49, 57, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(240, 185, 11, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF6B35;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #FF6B35;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle:hover {
    background: #F8D12F;
    transform: scale(1.1);
}

.faq-toggle svg {
    color: #0B0E11;
    transition: all 0.3s ease;
}

.faq-icon-minus {
    display: block;
}

.faq-icon-plus {
    display: none;
}

.faq-item:not(.active) .faq-icon-minus {
    display: none;
}

.faq-item:not(.active) .faq-icon-plus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    background: #0B0B0B;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 2.5rem 2rem 2rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #B7BDC6;
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}

.faq-answer p strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Report Page Styles */
.report-hero {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 1rem 0 0 0;
}

.report-hero::before {
    display: none;
}

.report-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.report-header {
    margin-bottom: 3rem;
}

.report-main-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF4500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-section {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.rating-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rating-progress {
    text-align: left;
}

.progress-label {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #2B3139;
    border-radius: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8A65 100%);
    border-radius: 0;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
}

.check-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22C55E;
    font-weight: 500;
    font-size: 1rem;
}

.check-status svg {
    width: 20px;
    height: 20px;
}

.account-details {
    background: rgba(43, 49, 57, 0.3);
    border: 1px solid #2B3139;
    border-radius: 0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.details-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(43, 49, 57, 0.5);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 1rem;
    color: #B7BDC6;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.detail-value.address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    max-width: 50%;
}

.action-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-bottom: 3rem;
}

.btn-full-width {
    width: 100%;
    max-width: 100%;
}

.btn-secondary {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-secondary:hover {
    background: transparent;
    color: #FF6B35;
    border-color: #FF6B35;
    transform: none;
    box-shadow: none;
}

/* Footer Section */
.footer {
    background: #0B0B0B;
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    display: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-logo svg {
    width: 120px;
    height: 36px;
    transition: transform 0.3s ease;
}

.footer-logo:hover svg {
    transform: scale(1.1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-text {
    color: #F8D12F;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 0;
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    color: #FF8A65;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(43, 49, 57, 0.5);
}

.footer-copyright p {
    color: #B7BDC6;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 769px) {
    .container {
        padding: 0 60px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: 0.75rem 0;
        min-height: 60px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo svg {
        width: 100px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-right {
        flex-shrink: 0;
    }
    
    .btn-wallet {
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
        border: 2px solid #FF6B35 !important;
        background: transparent !important;
        color: #FF6B35 !important;
    }
    
    .hero {
        margin-top: 60px;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .about-service {
        padding: 1.5rem 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.2rem;
    }
    
    .advantage-img {
        height: 140px;
    }
    
    .advantage-description {
        font-size: 13px;
    }
    
    /* Report Section Mobile */
    .report-section {
        padding: 3rem 0;
    }
    
    .report-title {
        font-size: 2.5rem;
    }
    
    .report-subtitle {
        font-size: 1.1rem;
    }
    
    .report-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .verification-details {
        padding: 1.5rem;
    }
    
    .details-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .condition-item {
        padding: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .condition-icon {
        width: 42px;
        height: 42px;
        margin-right: 1.2rem;
    }
    
    .condition-content h4 {
        font-size: 1.1rem;
    }
    
    .condition-content p {
        font-size: 0.9rem;
    }
    
    .condition-status {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .chart-container {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .circular-chart {
        width: 250px;
        height: 250px;
    }
    
    .chart-container::before {
        width: 290px;
        height: 290px;
    }
    
    .chart-percentage {
        font-size: 2rem;
    }
    
    .chart-label {
        font-size: 1rem;
    }
    
    .summary-item {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .summary-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .summary-content h4 {
        font-size: 1.1rem;
    }
    
    .summary-content p {
        font-size: 0.9rem;
    }
    
    .check-wallet-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .btn-check-wallet {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .verification-summary {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .summary-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .summary-actions .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding-left: 0;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-left: 0;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Report Page Mobile Styles */
    .report-hero {
        margin-top: 55px;
        padding: 2rem 0;
    }
    
    .report-main-title {
        font-size: 2.5rem;
    }
    
    .rating-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-percentage {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .progress-label {
        font-size: 1rem;
    }
    
    .account-details {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .details-title {
        font-size: 1.6rem;
    }
    
    .detail-item {
        padding: 0.8rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
        text-align: left;
        max-width: 100%;
    }
    
    .detail-value.address {
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .action-buttons {
        width: 100%;
        max-width: 100%;
    }
    
    .btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .report-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 0.6rem 0;
        min-height: 55px;
    }
    
    .logo svg {
        width: 90px;
        height: 27px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .btn-wallet {
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
        border: 2px solid #FF6B35 !important;
        background: transparent !important;
        color: #FF6B35 !important;
    }
    
    .hero {
        margin-top: 55px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    
    .about-service {
        padding: 1.5rem 0;
    }
    
    .advantages-grid {
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1rem 0.8rem;
    }
    
    .advantage-img {
        height: 120px;
    }
    
    .advantage-description {
        font-size: 12px;
    }
    
    /* Report Section Mobile 480px */
    .report-section {
        padding: 2rem 0;
    }
    
    .report-title {
        font-size: 2rem;
    }
    
    .report-subtitle {
        font-size: 1rem;
    }
    
    .report-content {
        padding: 0 0.5rem;
    }
    
    .verification-details {
        padding: 1rem;
    }
    
    .details-title {
        font-size: 1.5rem;
    }
    
    .condition-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .condition-content h4 {
        font-size: 1rem;
    }
    
    .condition-content p {
        font-size: 0.85rem;
    }
    
    .circular-chart {
        width: 220px;
        height: 220px;
    }
    
    .chart-container::before {
        width: 260px;
        height: 260px;
    }
    
    .chart-percentage {
        font-size: 1.8rem;
    }
    
    .chart-label {
        font-size: 0.9rem;
    }
    
    .summary-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .summary-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.8rem;
    }
    
    .summary-content h4 {
        font-size: 1rem;
    }
    
    .summary-content p {
        font-size: 0.85rem;
    }
    
    .check-wallet-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .btn-check-wallet {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    /* FAQ Section Mobile 480px */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-list {
        padding: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 0.8rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding-left: 0;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-left: 0;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Report Page Tablet Styles */
    .report-hero {
        margin-top: 60px;
        padding: 3rem 0;
    }
    
    .report-main-title {
        font-size: 3rem;
    }
    
    .rating-section {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .rating-percentage {
        font-size: 3.5rem;
    }
    
    .account-details {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .details-title {
        font-size: 1.7rem;
    }
    
    .action-buttons {
        width: 100%;
        max-width: 100%;
    }
}
