* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: white;
    background-color: #000;
}

header {
    background-color: #000000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        #ffd700,
        #ffd700 2px,
        #ffed4e 2px,
        #ffed4e 4px
    );
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #cccccc;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #ffd700;
}

nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: 2px solid #ffd700;
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-signup {
    background: #ffd700;
    color: #000;
}

.btn-signup:hover {
    background: transparent;
    color: #ffd700;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: #ffd700;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 1024px) {
    .nav-section {
        gap: 20px;
    }
    
    nav ul {
        gap: 25px;
    }
    
    nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .nav-section {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-section.active {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 30px 5%;
        gap: 20px;
        border-top: 1px solid #333;
        z-index: 1000;
    }
    
    .nav-section.active nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-section.active .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-section.active .btn {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .logo-icon::before {
        width: 18px;
        height: 18px;
    }
    
    .logo-text {
        font-size: 15px;
    }
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.text-content .btn {
    background-color: #d4a850;
    border: 2px solid #d4a850;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 4px;
}

.text-content .btn:hover {
    background-color: #b89240;
    border-color: #b89240;
}

.highlight {
    color: #d4a850;
}

.images {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 5%;
        text-align: center;
    }
    
    .text-content h1 {
        font-size: 2rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
}

.asset-platform {
    text-align: center;
    padding: 80px 5%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: white;
    color: #000;
}

.asset-platform__header {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.asset-platform__subheader {
    color: #777;
    margin-bottom: 60px;
    font-size: 16px;
}

.platform-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-title {
    font-size: 18px;
    margin: 15px 0;
    font-weight: 600;
}

.benefit-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.security-platform {
    background-color: #000;
    color: #fff;
    padding: 80px 5%;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.security-platform__title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.security-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
}

.partner-card {
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.partner-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.partner-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.partner-coinbase {
    background-color: #2a5ada;
}

.partner-fireblocks {
    background-color: #e25822;
}

.platform-cta {
    background-color: #d4a23c;
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-cta:hover {
    background-color: #b89240;
    transform: translateY(-2px);
}

.onboarding-process {
    text-align: center;
    padding: 80px 5%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: white;
    color: black;
}

.onboarding-process h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-icon {
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 8px;
}

.step-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.unique-stats-section {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 60px 5%;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.unique-stat-box {
    padding: 20px;
}

.unique-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: #ffd700;
}

.unique-stat-label {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #ccc;
}

.unique-fixed-loan-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    font-family: 'Roboto', sans-serif;
    color: #000;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.unique-fixed-loan-text {
    flex: 1;
    min-width: 300px;
}

.unique-fixed-loan-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.unique-fixed-loan-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.unique-fixed-loan-text li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.unique-btn {
    background-color: #e4a853;
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.unique-btn:hover {
    background-color: #cf953f;
    transform: translateY(-2px);
}

.unique-fixed-loan-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.unique-fixed-loan-img img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.unique-token-swap-section {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    font-family: 'Roboto', sans-serif;
    color: #000;
    max-width: 1200px;
    margin: 0 auto;
}

.unique-token-swap-text {
    flex: 1;
    min-width: 300px;
}

.unique-token-swap-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.unique-token-swap-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.unique-token-swap-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.unique-token-swap-text li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.unique-token-swap-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.unique-token-swap-img img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

@media (max-width: 768px) {
    .unique-fixed-loan-section,
    .unique-token-swap-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 5%;
    }
}

.unique-testimonials-section {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 80px 5%;
    text-align: center;
}

.unique-testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.unique-testimonials-subtext {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
}

.unique-testimonials-btn {
    background-color: #e4a853;
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unique-testimonials-btn:hover {
    background-color: #cf953f;
    transform: translateY(-2px);
}

.unique-testimonials-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.unique-testimonial-card {
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.unique-testimonial-card:hover {
    transform: translateY(-5px);
}

.unique-testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.unique-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.unique-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.unique-testimonial-author-info {
    font-size: 0.9rem;
    color: #666;
}

.unique-testimonial-author-info strong {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 2px;
}