/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background decorative elements - removed since using hero-section.png */

/* Header */
.header {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.login-btn {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    border: 1px solid #4A5EC0;
    color: #4A5EC0;
    padding: 0 50px;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    min-width: 140px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn:hover {
    background: rgba(30, 42, 94, 0.1);
    border-color: #1e2a5e;
    color: #1e2a5e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 120px;
    text-align: center;
    position: relative;
    background-image: url('images/Hero3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: "Ag headline/24", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    color: #203162;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.hero-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #23315F;
    margin-bottom: 32px;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.cta-btn {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4A5EC0;
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
    letter-spacing: 0.01em;
}

.cta-btn:active,
.cta-btn:focus,
.cta-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


/* Assets Section */
.assets-section {
    padding: 40px 0 80px;
}

.assets-section .assets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.assets-section .asset-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 20px 64px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    width: 100%;
}

.assets-section .asset-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.assets-section .asset-icon {
    width: 56px;
    height: 56px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
    background: transparent;
}


.icon-symbol {
    color: white;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.assets-section .icon-image {
    width: 56px;
    height: 56px;
    object-fit: contain;
    z-index: 1;
    position: relative;
}

.change-arrow {
    display: inline-block;
    margin-right: 4px;
}

/* New Trader Bonus Section */
.bonus-section {
    background: #4A5EC0;
    padding: 60px 0;
    text-align: center;
}

.bonus-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bonus-title {
    font-family: "Ag headline/32", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

.bonus-description {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    color: #B1C9FC;
    margin-bottom: 32px;
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
}

.bonus-btn {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #EBF89E;
    color: #102253;
    border: none;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.bonus-btn:hover {
    background: #d4e67a;
    transform: translateY(-2px);
}

/* Welcome to INX Section */
.welcome-section {
    margin-top: 80px;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.44s ease-out; /* 20% slower (1.2 * 1.2) */
}

.welcome-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #B1C9FC;
    margin-bottom: 24px;
    line-height: 1.2;
}

.welcome-description:first-of-type {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: white;
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.welcome-description:last-of-type {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #F1F1F1;
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.welcome-btn {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #EBF89E;
    color: #102253;
    border: none;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    margin-top: 24px;
}

.welcome-btn:hover {
    background: #d4e67a;
    transform: translateY(-2px);
}

.welcome-text.animate {
    opacity: 1;
    transform: translateX(0);
}

/* iPhone Container */
.iphone-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-image {
    max-width: 632px; /* Increased by 15% (550 * 1.15) */
    height: auto;
    z-index: 1;
    position: relative;
}

/* Floating Boxes */
.floating-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px; /* Reduced padding for less height */
    z-index: 2;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.44s ease-out; /* 20% slower (1.2 * 1.2) */
    width: 198px; /* Increased by 10% (180 * 1.1) */
    min-height: 50px; /* Reduced height */
    display: flex;
    align-items: center; /* Vertical center alignment */
}

.floating-box.animate {
    opacity: 1;
    transform: translateX(0);
}

.box-1 {
    top: 10%;
    right: 16%;
    transform: translateX(100px); /* Start from right */
    animation-delay: 0.2s;
}

.box-2 {
    top: 31%;
    left: 12%;
    transform: translateX(-100px) translateY(-50%); /* Start from left */
    animation-delay: 0.4s;
}

.box-3 {
    bottom: 24%;
    right: 11%;
    transform: translateX(100px); /* Start from right */
    animation-delay: 0.6s;
}

.box-content {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Increased spacing between text rows */
    width: 100%;
}

.box-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.box-label {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #102253;
    font-weight: 500;
}

.box-value {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #102253;
    font-weight: 500;
}

/* Asset icon backgrounds removed - using transparent background */

.assets-section .asset-ticker {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2A3F7C;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.assets-section .asset-name {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 20px;
    font-weight: 400;
}

.asset-price {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #23315F;
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.asset-change {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #102253;
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1px;
}

.asset-change.positive {
    color: #22c55e;
}

.asset-change.positive .change-arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #22c55e;
    display: inline-block;
    margin-right: 1px;
    margin-top: 2px;
}

.asset-change.negative {
    color: #ef4444;
}

.asset-change.negative .change-arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #ef4444;
    display: inline-block;
    margin-right: 1px;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .assets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .asset-card {
        padding: 18px 14px;
    }
}

/* Features Section */
.features-section {
    margin-top: 10px;
    padding: 0;
    position: relative;
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
}

.features-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 40px;
    font-weight: 700; /* Bold */
    color: #EBF89E;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.features-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    background: #344286;
    border: none;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    padding-top: 5px;
}

.feature-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-content {
    flex: 1;
    text-align: left;
}

.feature-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600; /* Semi-bold */
    color: #F9F9F9;
    margin-bottom: 4px;
    line-height: 1.3;
}

.feature-description {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    color: #ACBBF2;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    align-self: flex-start;
}

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

.feature-box.animate {
    animation: fadeInUp 1s ease-out forwards;
}

/* Staggered animation delays for feature boxes */
.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }
.feature-box:nth-child(5) { animation-delay: 0.5s; }
.feature-box:nth-child(6) { animation-delay: 0.6s; }
.feature-box:nth-child(7) { animation-delay: 0.7s; }
.feature-box:nth-child(8) { animation-delay: 0.8s; }

/* Crypto Opportunity Section */
.crypto-opportunity-section {
    background-image: url('images/numbers.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
}

.crypto-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.crypto-subtitle {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 700; /* Bold */
    color: #2A3F7C;
    margin-bottom: 20px;
    line-height: 1.2;
    white-space: nowrap; /* Keep in one line */
}

.crypto-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 48px;
    font-weight: 700; /* Bold */
    color: #2A3F7C;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap; /* Keep in one line */
}

/* Exclusive Assets Section */
.exclusive-assets-section {
    background: #f8fafc;
    padding: 80px 0 0 0;
}

.exclusive-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.exclusive-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 40px;
    font-weight: 700; /* Bold */
    color: #4A5EC0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.exclusive-description {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500; /* Medium */
    color: #18191E;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-assets-section .assets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.asset-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 20px 64px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 170px;
    width: 100%;
}


.asset-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Exclusive Asset Cards with Animation */
.exclusive-asset-card {
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 280px;
    min-height: 331px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
}

.exclusive-asset-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.exclusive-asset-card.animate:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.exclusive-asset-card:nth-child(1) {
    background: #A9C3F1;
    animation-delay: 0.1s;
}

.exclusive-asset-card:nth-child(2) {
    background: #F5FFB6;
    animation-delay: 0.2s;
}

.exclusive-asset-card:nth-child(3) {
    background: #E4E4E4;
    animation-delay: 0.3s;
}

.exclusive-asset-card:nth-child(4) {
    background: #98ABF2;
    animation-delay: 0.4s;
}

.asset-icon {
    width: 115px;
    height: 128px;
    margin: 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.asset-icon-img {
    width: 115px;
    height: 128px;
    object-fit: contain;
}

.asset-title {
    font-family: "Ag headline/24", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #203162;
    margin-bottom: 0;
    line-height: 1.2;
    padding: 0 22px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-description {
    font-family: "Lato", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #18191E;
    line-height: 1.5;
    margin: 0;
    margin-top: 16px;
}

.cta-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.exclusive-cta-btn {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4A5EC0;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-cta-btn:hover {
    background: #1e2a5e;
    transform: translateY(-2px);
}

/* Apply same hover color to all blue buttons except those with blue backgrounds */
.cta-btn:hover,
.comparison-btn:hover,
.setup-cta-btn:hover {
    background: #1e2a5e;
    transform: translateY(-2px);
}

/* Different hover effects for buttons with blue backgrounds */
.trust-regulation-button:hover {
    background: #2a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-submit-btn:hover {
    background: #2a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Response Message Styling */
.response_msg {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.response_msg.sec {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.response_msg.err {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}


/* Floating Boxes Responsive */
@media (max-width: 1200px) {
    .floating-box {
        width: 160px;
        padding: 6px 12px;
        min-height: 45px;
    }
    
    .box-1 {
        top: 10%;
        right: 16%;
    }
    
    .box-2 {
        top: 31%;
        left: 12%;
    }
    
    .box-3 {
        bottom: 24%;
        right: 11%;
    }
}

@media (max-width: 768px) {
    .floating-box {
        width: 140px;
        padding: 4px 8px;
        min-height: 40px;
    }
    
    .box-1 {
        top: 10%;
        right: 16%;
    }
    
    .box-2 {
        top: 31%;
        left: 12%;
    }
    
    .box-3 {
        bottom: 24%;
        right: 11%;
    }
}

@media (max-width: 1200px) {
    .crypto-opportunity-section {
        background-image: url('images/Group1543.png');
        min-height: 400px;
    }
    
    .crypto-subtitle {
        font-size: 28px;
        white-space: normal;
        padding: 0 20px;
        text-align: center;
    }
    
    .crypto-title {
        font-size: 42px;
        white-space: normal;
        padding: 0 20px;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .assets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .asset-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .features-title {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        padding-top: 2px;
    }
    
    .feature-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .feature-header {
        align-items: flex-start;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .crypto-opportunity-section {
        background-image: url('images/Group1548-2.png');
        min-height: 320px;
        padding: 60px 0;
    }
    
    .crypto-subtitle {
        font-size: 24px;
        margin-bottom: 16px;
        white-space: normal;
        padding: 0 20px;
        text-align: center;
    }
    
    .crypto-title {
        font-size: 36px;
        white-space: normal;
        padding: 0 20px;
        text-align: center;
    }
    
    .exclusive-assets-section {
        padding: 60px 0;
    }
    
    .exclusive-title {
        font-size: 28px;
    }
    
    .exclusive-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .assets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        max-width: 320px;
    }
    
    .asset-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 20px 12px;
    }
    
    .asset-title {
        font-size: 22px;
        padding: 0 22px;
    }
    
    .asset-description {
        font-size: 14px;
    }
    
    .exclusive-cta-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .comparison-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    
    .comparison-table th {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .comparison-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .comparison-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .easy-setup-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .phone-mockups {
        min-height: 300px;
        order: 3;
    }
    
    .setup-content {
        order: 1;
    }
    
    .mobile-cluster-image {
        max-height: 300px;
    }
    
    /* Update Easy Setup background for mobile - remove desktop background and use mobile at bottom only */
    .easy-setup-section {
        background-image: url('images/easy-steps-mob.png') !important;
        background-position: center bottom !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
    }
    
    /* Fix exclusive assets section bottom padding for mobile */
    .exclusive-assets-section {
        padding-bottom: 0 !important;
    }
    
    /* Fix mobile cluster image bottom position for mobile */
    .mobile-cluster-image {
        bottom: 20px !important;
    }
    
    /* Decrease space between button and mobile-cluster image for mobile */
    .exclusive-assets-section .comparison-content {
        margin: 20px auto 0 !important;
    }
    
    /* Fix trust regulation section padding for mobile */
    .trust-regulation-section {
        padding: 40px 0 50px !important;
    }
    
    
    /* Fix trust regulation boxes - decrease space and font size for mobile */
    .trust-benefits-grid {
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .trust-benefit-card {
        padding: 20px 15px !important;
        gap: 12px !important;
    }
    
    .trust-benefit-text {
        font-size: 18px !important;
    }
    
    .setup-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .setup-steps li {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .setup-cta-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Trust & Regulation Section */
.trust-regulation-section {
    background: #102253;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

.trust-regulation-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.trust-regulation-title {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #F5FFB6;
    margin-bottom: 60px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.trust-regulation-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.trust-benefit-card {
    background: #344286;
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.trust-benefit-card.animate {
    animation: trustCardFadeIn 0.8s ease forwards;
}

.trust-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-benefit-check {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trust-benefit-text {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #F9F9F9;
    line-height: 1.5;
    margin: 0;
}

.trust-regulation-cta {
    text-align: center;
}

.trust-regulation-button {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4A5EC0;
    color: white;
    border: none;
    padding: 8px 32px;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}


/* Responsive Design for Trust & Regulation Section */
@media (max-width: 768px) {
    .trust-regulation-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .trust-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .trust-benefit-card {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .trust-benefit-text {
        font-size: 20px;
    }
    
    .trust-regulation-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Trust Section Animations */
@keyframes trustCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays for trust benefit cards */
.trust-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.trust-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.trust-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.trust-benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* Decentralization Section */
.decentralization-section {
    background-image: url('images/decentralised-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.decentralization-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.decentralization-text {
    flex: 0 0 60%;
    max-width: 700px;
}

.decentralization-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2A3F7C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.decentralization-main {
    font-size: 32px;
    font-weight: 800; /* Extra bold */
}

.decentralization-bold {
    font-size: 32px;
    font-weight: 700; /* Bold */
}

.decentralization-medium {
    font-size: 28px;
    font-weight: 500; /* Medium */
}

.decentralization-screens {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 0;
    padding-right: 0;
    width: 100%;
}

.decentralization-screens-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    max-height: none;
    transform: translateX(0);
}

/* Responsive Design for Decentralization Section */
@media (max-width: 768px) {
    .decentralization-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    
    .decentralization-screens-image {
        max-height: 300px;
        transform: translateY(1px); /* Move 1px down to eliminate bottom gap */
    }
}

@media (max-width: 480px) {
    .assets-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Hide floating boxes for mobile since we're using iphone-mobile-box.svg */
    .floating-box {
        display: none !important;
    }
    
    /* Use mobile image with built-in boxes for screens up to 479px */
    .iphone-image {
        content: url('images/iphone-mobile-box.svg') !important;
    }
    
    /* Phone image will be updated via JavaScript for better reliability */
    
    /* Reduce space between mobile-cluster-image and setup content on small screens */
    .easy-setup-content {
        gap: 15px !important;
    }
    
    .setup-content {
        margin-top: -20px !important;
    }
    
    .exclusive-title {
        font-size: 24px;
    }
    
    .exclusive-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 28px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .assets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .asset-card {
        padding: 16px 12px;
    }
    
    .bg-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .assets-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 24px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .asset-card {
        padding: 14px 10px;
    }
}

/* Consolidation Content (part of exclusive assets section) */
.consolidation-content {
    background-image: url('images/bg-gradient.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #B1C9FC;
    border-radius: 24px;
    padding: 40px 40px;
    width: 1209px;
    height: 293px;
    margin: 80px auto 0;
    display: flex;
    align-items: center; /* Changed from flex-start to center */
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.consolidation-text {
    flex: 0.96;
    max-width: 610px;
}

.consolidation-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #4A5EC0;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.consolidation-subtitle {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #102253;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.consolidation-phone {
    flex: 0 0 auto;
    width: 350px;
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Changed from flex-start to center */
    position: relative;
}

.phone-image {
    width: 334px;
    height: 346px;
    position: relative;
    transform: translateX(20px) translateY(-27px); /* Moved up 27px on desktop */
    z-index: 2;
}

/* Responsive design for consolidation content */
@media (max-width: 1200px) {
    .consolidation-content {
        width: 90%;
        max-width: 1185px;
        height: auto;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .consolidation-content {
        flex-direction: column;
        padding: 20px 20px;
        gap: 0px;
        margin: 40px auto 0;
        width: 95%;
        height: 400px; /* Increased height to match background image aspect ratio */
        min-height: 400px;
        background-image: url('images/bg-gradient-mob.png');
        background-size: cover; /* Ensure background covers full container */
        background-position: center;
        background-repeat: no-repeat;
        position: relative; /* Enable absolute positioning for phone image */
    }
    
    .consolidation-phone {
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        height: auto;
    }
    
    .phone-image {
        width: 280px;
        height: 290px;
        transform: none; /* No transform needed with absolute positioning */
    }
    
    .consolidation-text {
        margin-bottom: 0px;
    }
    
    .consolidation-phone {
        margin-top: 0px;
    }
    
    .consolidation-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .consolidation-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .phone-image {
        width: 280px;
        height: 290px;
        transform: translateY(-20px); /* Using transform for better performance */
        /* Image updated via JavaScript */
    }
}

/* Comparison Table within Exclusive Assets Section */
.exclusive-assets-section .comparison-content {
    max-width: 1200px;
    margin: 80px auto 0;
    text-align: center;
}

/* Override max-width for mobile to allow horizontal scroll */
@media (max-width: 768px) {
    .exclusive-assets-section .comparison-content {
        max-width: none !important;
        width: 100% !important;
    }
}

.comparison-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #4A5EC0;
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-container {
    background: #f8fafc;
    margin: 0 auto 40px;
    width: 100%;
    max-width: 900px;
    min-height: 452px;
    display: flex;
    gap: 12px;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
}

/* Individual Column Styling */
.comparison-column {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-column {
    flex: 2;
}

.inx-column,
.crypto-column,
.tradfi-column {
    flex: 1;
}

.column-header {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
}

.feature-header {
    text-align: left;
    font-weight: 500;
}

.inx-header {
    background: #102253;
    color: #ffffff;
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.crypto-header,
.tradfi-header {
    background: #E4E4E4;
    color: #535760;
    font-weight: 500;
}

.comparison-table-container .feature-header {
    background: #E4E4E4;
    color: #535760;
}

.column-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #F1F1F1;
}

.feature-item,
.comparison-item {
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 18px;
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.feature-item {
    text-align: left;
    justify-content: flex-start;
    background: #F1F1F1;
    white-space: nowrap;
    border-bottom: none;
}

.comparison-item {
    text-align: center;
    background: #F1F1F1;
    border-bottom: none;
}

.inx-column .comparison-item {
    border-left: 1px solid #102253;
    border-right: 1px solid #102253;
}

.inx-column .comparison-item:last-child {
    border-bottom: 1px solid #102253;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.table-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.limited {
    color: #000000;
    font-weight: 500;
    font-size: 18px;
}

.partial {
    color: #000000;
    font-weight: 500;
    font-size: 18px;
}

.comparison-cta {
    text-align: center;
}

.comparison-btn {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4A5EC0;
    color: white;
    border: none;
    padding: 8px 32px;
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}


/* Easy Setup Section */
.easy-setup-section {
    margin-top: 20px;
    padding: 40px 0 0 0;
    background-image: url('images/easy-steps-bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    min-height: 400px;
    margin-bottom: 0;
}

.easy-setup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.phone-mockups {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-cluster-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    position: relative;
    bottom: 11px;
}

.setup-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.setup-title {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #102253;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
}

.setup-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.setup-steps li {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #18191E;
    margin-bottom: 16px;
    padding-left: 0;
    line-height: 1.5;
    text-align: left;
}

.setup-cta-btn {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4A5EC0;
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}


/* Trusted by Thousands Section */
.trusted-section {
    background: #102253;
    padding: 80px 0 40px;
    color: #ffffff;
    overflow: hidden;
}

.trusted-content {
    text-align: center;
    margin-bottom: 60px;
}

.trusted-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.trusted-subtitle {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #B1C9FC;
    margin-bottom: 20px;
}

.trustpilot-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    animation: slide 60s linear infinite;
    gap: 20px;
    width: max-content;
    transform: translateX(100vw);
    animation-delay: 0s;
}

.trusted-testimonial-card {
    background: linear-gradient(135deg, rgba(67, 67, 67, 0.86) 0%, rgba(0, 0, 0, 0) 100%);
    border: none;
    border-radius: 16px;
    padding: 12px;
    min-width: 350px;
    max-width: 350px;
    height: auto;
    min-height: 180px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.trusted-testimonial-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(67, 67, 67, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.trusted-quote-icon {
    font-size: 48px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.8;
}

.trusted-testimonial-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 20px 0;
    text-align: left;
}

.trusted-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: center;
}

.trusted-star {
    color: #FFA43C;
    font-size: 18px;
    line-height: 1;
}

.trusted-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.trusted-testimonial-avatar {
    width: 40px;
    height: 40px;
    background: #EBF89E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #102253;
    flex-shrink: 0;
}

.trusted-testimonial-info h3 {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 8px 0 4px 0;
}

.trusted-testimonial-info span {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #B1C9FC;
}

@keyframes slide {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ensure animation starts immediately */
.trusted-section .slider-track {
    animation-play-state: running;
}

/* Pause animation on hover */
.testimonials-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Contact Form and Footer Section */
.contact-footer-section {
    background: #102253;
    padding: 80px 0 0;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.contact-left {
    flex: 1;
    margin-top: 20px;
}

.contact-title {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #B1C9FC;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.contact-brand {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #B1C9FC;
    margin: 0;
    line-height: 1.2;
}

.contact-right {
    flex: 1;
    max-width: 400px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F9F9F9;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #6274B2;
    border-radius: 8px;
    background: rgba(98, 116, 178, 0.3);
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
    height: 48px;
}

.form-group input:focus {
    outline: none;
    background: rgba(98, 116, 178, 0.4);
}

.form-group input::placeholder {
    color: #B1C9FC;
}

/* Country Dropdown Styling */
.contact-form .form-group select,
.form-group select {
    padding: 12px 16px !important;
    border: 1px solid #6274B2 !important;
    border-radius: 8px !important;
    background: rgba(98, 116, 178, 0.3) !important;
    color: #ffffff !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 16px !important;
    transition: background-color 0.3s ease !important;
    height: 48px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B1C9FC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.contact-form .form-group select:focus,
.form-group select:focus {
    outline: none !important;
    background-color: rgba(98, 116, 178, 0.4) !important;
    border-color: #4A5EC0 !important;
}

.contact-form .form-group select option,
.form-group select option {
    background: #102253 !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
}

.contact-form .form-group select:hover,
.form-group select:hover {
    background-color: rgba(98, 116, 178, 0.35) !important;
}

.contact-submit-btn {
    font-family: "Ag headline/18", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #4A5EC0;
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.contact-submit-btn:active,
.contact-submit-btn:focus,
.contact-submit-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


.community-section {
    text-align: center;
    margin-bottom: 60px;
}

.community-logo {
    margin-bottom: 12px;
}

.community-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.community-text {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    opacity: 0.7;
}

.contact-footer {
    border-top: 1px solid #344286;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}

.footer-language {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-title,
    .contact-brand {
        font-size: 36px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Responsive Design for Trusted Section */
@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 0 30px;
    }
    
    .trusted-title {
        font-size: 28px;
    }
    
    .trusted-subtitle {
        font-size: 16px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .slider-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .trusted-title {
        font-size: 24px;
    }
    
    .testimonial-card {
        min-width: 250px;
        max-width: 250px;
        padding: 16px;
    }
    
    .testimonial-card h4 {
        font-size: 14px;
    }
    
    .testimonial-card p {
        font-size: 13px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove all button focus/active borders for simple appearance */
button:focus,
button:active,
.asset-card:focus,
.cta-btn:focus,
.cta-btn:active,
.comparison-btn:focus,
.comparison-btn:active,
.trust-regulation-button:focus,
.trust-regulation-button:active,
.login-btn:focus,
.login-btn:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Loading animation for cards */
.asset-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.asset-card:nth-child(1) { animation-delay: 0.1s; }
.asset-card:nth-child(2) { animation-delay: 0.2s; }
.asset-card:nth-child(3) { animation-delay: 0.3s; }
.asset-card:nth-child(4) { animation-delay: 0.4s; }
.asset-card:nth-child(5) { animation-delay: 0.5s; }
.asset-card:nth-child(6) { animation-delay: 0.6s; }
.asset-card:nth-child(7) { animation-delay: 0.7s; }
.asset-card:nth-child(8) { animation-delay: 0.8s; }
.asset-card:nth-child(9) { animation-delay: 0.9s; }
.asset-card:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MOBILE TOGGLE BUTTONS
   ======================================== */

/* Toggle Buttons - Hidden by default */
.asset-toggle-buttons {
    display: none;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 30px;
    padding: 0 20px;
}

.toggle-btn {
    font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    border: 1px solid #709BE7;
    color: #709BE7;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    outline: none;
    box-shadow: none;
}

.toggle-btn.active {
    background: #4A5EC0;
    color: white;
    border-color: #4A5EC0;
}

.toggle-btn:focus,
.toggle-btn:active,
.toggle-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Show toggle buttons on mobile */
@media (max-width: 768px) {
    /* Fix container and hero positioning */
    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Reduce bonus section top padding for small screens */
    .bonus-section {
        padding: 25px 0 60px 0;
    }
    
    /* Fix bonus description text cutoff */
    .bonus-description {
        white-space: normal;
        font-size: 20px;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    /* Fix welcome section layout */
    .welcome-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .welcome-text {
        max-width: 100%;
        text-align: left;
        flex: none;
        order: 1;
    }
    
    .iphone-container {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .iphone-image {
        max-width: 100%;
        min-width: 300px;
        width: auto;
        height: auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    /* Fix hero heading text cut-off */
    .hero-title {
        font-size: 28px;
        white-space: normal;
        line-height: 1.2;
        text-align: center;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0;
    }
    
    .asset-toggle-buttons {
        display: flex !important;
        justify-content: flex-start;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    /* Mobile slider styles */
    .assets-section {
        overflow: hidden;
    }
    
    .assets-section .assets-grid {
        display: flex;
        gap: 14px;
        padding: 0 20px;
        transition: transform 0.3s ease;
        width: max-content;
        box-sizing: border-box;
    }
    
    .assets-section .asset-card {
        width: 181px;
        min-width: 181px;
        flex-shrink: 0;
        /* Keep desktop font sizes */
        font-size: inherit;
    }
}

@media (max-width: 480px) {
    /* Fix bonus description text cutoff */
    .bonus-description {
        white-space: normal;
        font-size: 18px;
        padding: 0 16px;
        line-height: 1.3;
    }
    
    /* Feature icons for small screens */
    .feature-icon {
        width: 18px;
        height: 18px;
        padding-top: 2px;
    }
    
    .feature-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .feature-header {
        align-items: flex-start;
    }
    
    /* Fix crypto text cutoff */
    .crypto-subtitle {
        font-size: 20px;
        white-space: normal;
        padding: 0 16px;
        text-align: center;
    }
    
    .crypto-title {
        font-size: 30px;
        white-space: normal;
        padding: 0 16px;
        text-align: center;
    }
    
    /* Fix welcome section layout */
    .welcome-content {
        padding: 0;
    }
    
    .welcome-text {
        padding: 0 16px;
        order: 1;
        text-align: left;
    }
    
    .iphone-container {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .iphone-image {
        max-width: 100%;
        min-width: 400px;
        width: auto;
        height: auto;
    }
    
    /* Increase width of animated boxes for 480px */
    .floating-box {
        width: 160px;
        padding: 6px 12px;
        min-height: 45px;
    }
    
    .box-1, .box-2 {
        width: 180px;
        padding: 8px 14px;
        min-height: 50px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .toggle-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .asset-toggle-buttons {
        padding: 0 16px;
    }
    
    .assets-section .assets-grid {
        gap: 10px;
        padding: 0 16px;
    }
    
    .assets-section .asset-card {
        width: 181px;
        min-width: 181px;
        /* Keep desktop font sizes */
        font-size: inherit;
    }
    
    .hero-title {
        font-size: 24px;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
        padding: 0;
    }
}

/* Specific media query for 321-479px screens */
@media (max-width: 479px) and (min-width: 321px) {
    /* Hide floating boxes for mobile since we're using iphone-mobile-box.svg */
    .floating-box {
        display: none !important;
    }
    
    /* Use mobile image with built-in boxes for screens up to 479px */
    .iphone-image {
        content: url('images/iphone-mobile-box.svg') !important;
    }
    
    /* Phone image will be updated via JavaScript for better reliability */
}

@media (max-width: 420px) {
    /* Fix comparison title font size for 420px screens */
    .comparison-title {
        font-size: 20px;
    }
    
    /* Hide floating boxes for mobile since we're using iphone-mobile-box.svg */
    .floating-box {
        display: none !important;
    }
    
    /* Use mobile image with built-in boxes for screens up to 479px */
    .iphone-image {
        content: url('images/iphone-mobile-box.svg') !important;
    }
}

/* Fix iPhone image for 320x480 screens */
@media (max-width: 320px) and (max-height: 480px) {
    .iphone-container {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .iphone-image {
        max-width: 100%;
        min-width: 300px;
        width: auto;
        height: auto;
    }
}

/* Fix iPhone image for 480x320 screens */
@media (max-width: 480px) and (max-height: 320px) {
    .iphone-container {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .iphone-image {
        max-width: 100%;
        min-width: 300px;
        width: auto;
        height: auto;
    }
    
    /* Fix features title padding for 480x320 */
    .features-title {
        padding: 0 20px;
    }
    
    /* Use mobile mask group image for 480x320 */
    .phone-image {
        /* Image updated via JavaScript */
        /* Positioning handled by parent flexbox container */
    }
    
    /* Use mobile background for consolidation section */
    .consolidation-content {
        background-image: url('images/bg-gradient-mob.png');
    }
}


/* Fix iPhone image for 600x800 screens */
@media (max-width: 600px) and (max-height: 800px) {
    .iphone-container {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .iphone-image {
        max-width: 100%;
        min-width: 300px;
        width: auto;
        height: auto;
    }
}

@media (max-width: 320px) {
    /* Fix bonus description text cutoff */
    .bonus-description {
        white-space: normal;
        font-size: 16px;
        padding: 0 12px;
        line-height: 1.3;
    }
    
    /* Feature icons for small screens */
    .feature-icon {
        width: 16px;
        height: 16px;
        padding-top: 2px;
    }
    
    .feature-icon-img {
        width: 16px;
        height: 16px;
    }
    
    .feature-header {
        align-items: flex-start;
    }
    
    /* Fix crypto text cutoff */
    .crypto-subtitle {
        font-size: 18px;
        white-space: normal;
        padding: 0 12px;
        text-align: center;
    }
    
    .crypto-title {
        font-size: 26px;
        white-space: normal;
        padding: 0 12px;
        text-align: center;
    }
    
    /* Fix comparison title font size */
    .comparison-title {
        font-size: 18px;
        padding: 0 12px;
        line-height: 1.3;
    }
    
    /* Fix welcome section layout */
    .welcome-content {
        padding: 0;
    }
    
    .welcome-text {
        padding: 0 12px;
        order: 1;
        text-align: left;
    }
    
    .iphone-container {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .iphone-image {
        max-width: 100%;
        min-width: 400px;
        width: auto;
        height: auto;
        content: url('images/iphone-mobile-box.svg') !important;
    }
    
    /* Hide floating boxes for mobile since we're using iphone-mobile-box.svg */
    .floating-box {
        display: none !important;
    }
    
    /* Use mobile mask group image for 320px */
    .phone-image {
        /* Image updated via JavaScript */
    }
    
    /* Use mobile background for consolidation section */
    .consolidation-content {
        background-image: url('images/bg-gradient-mob.png');
    }

    /* Fix bonus button padding */
    .bonus-btn {
        padding: 8px 26px;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .asset-toggle-buttons {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 22px;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0;
    }
}

/* Tablet portrait (768x1024) */
@media (max-width: 768px) and (max-height: 1024px) and (min-width: 321px) {
    /* Fix container and hero positioning */
    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .asset-toggle-buttons {
        display: flex !important;
        justify-content: flex-start;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .assets-section {
        overflow: hidden;
    }
    
    .assets-section .assets-grid {
        display: flex;
        gap: 16px;
        padding: 0 20px;
        transition: transform 0.3s ease;
        width: max-content;
        box-sizing: border-box;
    }
    
    .assets-section .asset-card {
        width: 180px;
        min-width: 180px;
        flex-shrink: 0;
        font-size: inherit;
    }
    
    .hero-title {
        font-size: 28px;
        white-space: normal;
        line-height: 1.2;
        text-align: center;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0;
    }
    
    /* Fix animation boxes for 768x1024 tablet portrait */
    .floating-box {
        width: 180px;
        padding: 8px 14px;
        min-height: 50px;
    }
    
    .box-1, .box-2 {
        width: 200px;
        padding: 10px 16px;
        min-height: 55px;
    }
    
    /* Move boxes closer to iPhone */
    .box-1 {
        top: 8%;
        right: 8%;
    }
    
    .box-2 {
        top: 31%;
        left: 8%;
    }
    
    .box-3 {
        bottom: 24%;
        right: 8%;
    }
    
    /* Fix phone-image position for 768x1024 */
    .consolidation-content {
        height: 450px; /* Appropriate height for 768x1024 screens */
        min-height: 450px;
    }
    
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
}

/* Fix phone-image position for Small tablet portrait (600x800) */
@media (max-width: 600px) and (max-height: 800px) and (min-width: 500px) {
    .consolidation-content {
        height: 500px; /* Appropriate height for 600x800 screens */
        min-height: 500px;
    }
    
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
}

/* Fix phone-image position for Mobile landscape (480x320) */
@media (max-width: 480px) and (max-height: 320px) {
    .consolidation-content {
        height: 350px; /* Appropriate height for 480x320 screens */
        min-height: 350px;
    }
    
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
}

/* Fix phone-image position for tablet landscape (1024x768) - specific dimensions only */
@media (max-width: 1024px) and (max-height: 768px) and (min-width: 1000px) and (min-height: 700px) {
    .consolidation-content {
        height: 300px; /* Reduced height for landscape layout (side by side) */
        min-height: 300px;
        flex-direction: row; /* Side by side layout for landscape */
    }
    
    .phone-image {
        transform: translateX(20px) translateY(-27px); /* Same approach as desktop */
    }
}

/* Phone image positioning - ordered from largest to smallest for proper override */
@media (max-width: 480px) and (min-width: 421px) {
    .consolidation-content {
        height: 450px; /* Appropriate height for 480px screens */
        min-height: 450px;
    }
    
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
    
    .consolidation-title {
        margin-bottom: 10px;
    }
    
    .consolidation-subtitle {
        margin-bottom: 10px;
    }
}

/* Override conflicting media queries for 480px screens - must come after other media queries */
@media (max-width: 480px) and (min-width: 421px) and (max-height: 1024px) {
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
    
    .consolidation-title {
        margin-bottom: 10px;
    }
    
    .consolidation-subtitle {
        margin-bottom: 10px;
    }
}

/* Specific fix for 420px screens */
@media (max-width: 420px) and (min-width: 321px) {
    .consolidation-content {
        height: 500px; /* Appropriate height for 420px screens */
        min-height: 500px;
    }
    
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
    
    .consolidation-title {
        margin-bottom: 10px;
    }
    
    .consolidation-subtitle {
        margin-bottom: 10px;
    }
}

@media (max-width: 320px) {
    .consolidation-content {
        height: 550px; /* Required height for 320px screens */
        min-height: 550px;
    }
    
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
}

/* CLEAN SOLUTION: Decentralization text mobile fixes - must be at the end */
@media (max-width: 768px) {
    .decentralization-text {
        text-align: center !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        white-space: normal !important;
    }
    
    .decentralization-title {
        font-size: 20px !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        font-size: 20px !important;
    }
}

/* Specific fix for 420px screens */
@media (max-width: 420px) {
    .decentralization-title {
        font-size: 18px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        font-size: 18px !important;
    }
}

/* Small tablet landscape (800x600) - specific dimensions only */
@media (max-width: 800px) and (max-height: 600px) and (min-width: 750px) and (min-height: 550px) {
    /* Fix container and hero positioning */
    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Fix phone-image position for 800x600 - using desktop approach - specific dimensions only */
    .consolidation-content {
        height: 450px; /* Increased height for 800x600 screens */
        min-height: 450px;
        flex-direction: row; /* Side by side layout for landscape */
    }
    
    .phone-image {
        transform: translateX(20px) translateY(52px); /* Fixed positioning for 800x600 */
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .asset-toggle-buttons {
        display: flex !important;
        justify-content: flex-start;
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .assets-section {
        overflow: hidden;
    }
    
    .assets-section .assets-grid {
        display: flex;
        gap: 12px;
        padding: 0 16px;
        transition: transform 0.3s ease;
        width: max-content;
        box-sizing: border-box;
    }
    
    .assets-section .asset-card {
        width: 175px;
        min-width: 175px;
        flex-shrink: 0;
        font-size: inherit;
    }
    
    .hero-title {
        font-size: 28px;
        white-space: normal;
        line-height: 1.2;
        text-align: center;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0;
    }
}

/* Clean CSS fix for decentralization text - all small screens */
@media (max-width: 768px) {
    .decentralization-section {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 0 0 0 !important;
        margin: 0 !important;
    }
    
    .decentralization-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .decentralization-screens {
        flex: none !important;
        width: auto !important;
        max-width: 91% !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        margin: 0 !important;
        margin-left: auto !important;
        margin-right: -105px !important;
        margin-bottom: 0 !important;
        transform: translate(-10%, calc(5% + 2px)) !important;
    }
    
    .decentralization-section .decentralization-content .decentralization-screens .decentralization-screens-image {
        width: 350px !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .decentralization-text {
        max-width: none !important;
        width: 100% !important;
        flex: none !important;
        flex-basis: auto !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
        white-space: normal !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .decentralization-title {
        font-size: 20px !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        font-size: 20px !important;
    }
}

/* Specific fix for very small screens (420px and below) */
@media (max-width: 420px) {
    .decentralization-title {
        font-size: 18px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        font-size: 18px !important;
    }
}

/* Screen-specific margin adjustments for decentralization screens */
/* 320px media query moved to end of file to ensure it overrides everything */

@media (max-width: 480px) and (min-width: 321px) {
    .decentralization-screens {
        margin-right: -129px !important;
    }
}

@media (max-width: 600px) and (min-width: 481px) {
    .decentralization-screens {
        margin-right: -100px !important;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .decentralization-screens {
        margin-right: -105px !important;
    }
}

/* Fix text cutting for Small tablet portrait (600x800) */
@media (max-width: 600px) and (max-height: 800px) {
    .decentralization-title {
        font-size: 18px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        font-size: 18px !important;
    }
    
    .decentralization-section .decentralization-content .decentralization-screens .decentralization-screens-image {
        width: 450px !important;
    }
}

/* Fix decentralization-screens-image width for 480px */
@media (max-width: 480px) and (min-width: 421px) {
    .decentralization-section .decentralization-content .decentralization-screens .decentralization-screens-image {
        width: 380px !important;
    }
}

/* Fix decentralization-screens-image width for Small tablet landscape (800x600) */
@media (max-width: 800px) and (max-height: 600px) and (min-width: 750px) and (min-height: 550px) {
    .decentralization-section .decentralization-content .decentralization-screens .decentralization-screens-image {
        width: 400px !important;
    }
}

/* Mobile responsive styles for trust pilot and contact form */
@media (max-width: 768px) {
    /* Make trust pilot logo smaller on mobile */
    .trustpilot-logo {
        height: 30px;
        width: 150px; /* Make trust pilot boxes smaller in width */
    }
    
    /* Make contact form full width on mobile */
    .contact-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-left {
        text-align: center;
        max-width: 100%;
    }
    
    .contact-right {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .form-group input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form .form-group select,
    .form-group select {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller trust pilot logo for very small screens */
    .trustpilot-logo {
        height: 25px;
        width: 130px; /* Make trust pilot boxes smaller in width */
    }
    
    /* Reduce testimonial boxes width and font size for 480px */
    .trusted-testimonial-card {
        max-width: 200px;
        width: 100%;
    }
    
    .trusted-testimonial-text {
        font-size: 14px;
    }
    
    .trusted-testimonial-info h3 {
        font-size: 14px;
    }
    
    .trusted-testimonial-info span {
        font-size: 11px;
    }
    
    /* Adjust contact form for very small screens */
    .contact-content {
        padding: 0 16px;
    }
    
    .form-group label {
        font-size: 16px;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .contact-form .form-group select,
    .form-group select {
        padding: 10px 14px !important;
        font-size: 14px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 320px) {
    /* Smallest trust pilot logo for 320px screens */
    .trustpilot-logo {
        height: 20px;
        width: 120px; /* Make trust pilot boxes smaller in width */
    }
    
    /* Reduce testimonial boxes width and font size for 320px */
    .trusted-testimonial-card {
        max-width: 160px;
        width: 100%;
    }
    
    .trusted-testimonial-text {
        font-size: 12px;
    }
    
    .trusted-testimonial-info h3 {
        font-size: 12px;
    }
    
    .trusted-testimonial-info span {
        font-size: 10px;
    }
    
    /* Fix decentralization-screens-image width for 320px */
    .decentralization-section .decentralization-content .decentralization-screens .decentralization-screens-image {
        width: 280px !important;
    }
    
    /* Adjust contact form for 320px screens */
    .contact-content {
        padding: 0 12px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .contact-form .form-group select,
    .form-group select {
        padding: 8px 12px !important;
        font-size: 13px !important;
        padding-right: 40px !important;
    }
}

/* FINAL OVERRIDE: Force 480px phone image positioning - must be at the very end */
@media (max-width: 480px) and (min-width: 421px) {
    .phone-image {
        position: absolute;
        bottom: 0;
        right: 0;
        transform: none; /* Use absolute positioning instead of transform */
    }
    
    .consolidation-title {
        margin-bottom: 10px;
    }
    
    .consolidation-subtitle {
        margin-bottom: 10px;
    }
}

/* Mobile responsive styles for comparison title */
@media (max-width: 768px) {
    .comparison-title {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 0 20px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .comparison-title {
        font-size: 20px;
        margin-top: 15px;
        margin-bottom: 25px;
        padding: 0 16px;
        line-height: 1.3;
    }
}

@media (max-width: 320px) {
    .comparison-title {
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 20px;
        padding: 0 12px;
        line-height: 1.3;
    }
}

/* Improve decentralization text readability with better line height and spacing */
.decentralization-title {
    line-height: 1.3;
}

.decentralization-main,
.decentralization-bold,
.decentralization-medium {
    line-height: 1.3;
}

/* Mobile improvements for decentralization text */
@media (max-width: 768px) {
    .decentralization-title {
        line-height: 1.35 !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        line-height: 1.35 !important;
        margin-bottom: 4px !important;
    }
}

@media (max-width: 480px) {
    .decentralization-title {
        line-height: 1.4 !important;
        margin-top: 15px !important;
        margin-bottom: 12px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        line-height: 1.4 !important;
        margin-bottom: 3px !important;
    }
}

@media (max-width: 320px) {
    .decentralization-title {
        line-height: 1.45 !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .decentralization-main,
    .decentralization-bold,
    .decentralization-medium {
        line-height: 1.45 !important;
        margin-bottom: 2px !important;
    }
}

/* Reduce contact footer section top padding on small screens */
@media (max-width: 768px) {
    .contact-footer-section {
        padding: 40px 0 0;
    }
    
    .mobile-cluster-image {
        bottom: 20px !important;
    }
    
    /* Reduce space between mobile-cluster-image and setup content */
    .easy-setup-content {
        gap: 20px !important;
    }
    
    /* Ensure no horizontal scroll on mobile */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Fix only the problematic elements causing horizontal scroll */
    .decentralization-screens-image {
        max-width: 100% !important;
    }
    
    .comparison-table-container {
        max-width: 100% !important;
    }
}

/* Mobile Horizontal Scroll for Comparison Tables */
@media (max-width: 768px) {
    .comparison-table-container {
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        width: 100% !important;
        min-width: 290px !important;
        display: flex !important;
        gap: 15px !important;
        padding: 15px !important;
        background: #f8fafc !important;
        border-radius: 16px !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .comparison-table-container .comparison-column {
        flex-shrink: 0 !important;
        background: #ffffff !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Column widths */
    .comparison-table-container .comparison-column.feature-column {
        width: 200px !important;
        min-width: 200px !important;
    }
    
    .comparison-table-container .comparison-column.inx-column {
        width: 150px !important;
        min-width: 150px !important;
    }
    
    .comparison-table-container .comparison-column.crypto-column {
        width: 150px !important;
        min-width: 150px !important;
    }
    
    .comparison-table-container .comparison-column.tradfi-column {
        width: 150px !important;
        min-width: 150px !important;
    }
    
    /* Font sizes for mobile */
    .comparison-table-container .column-header {
        font-size: 14px !important;
        padding: 12px 8px !important;
    }
    
    .comparison-table-container .feature-item {
        font-size: 12px !important;
        padding: 8px !important;
    }
    
    .comparison-table-container .comparison-item {
        font-size: 12px !important;
        padding: 8px !important;
    }
    
    .comparison-table-container .table-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Smaller fonts for 3rd and 4th columns */
    .comparison-table-container .comparison-column.crypto-column .column-header,
    .comparison-table-container .comparison-column.tradfi-column .column-header {
        font-size: 12px !important;
    }
    
    .comparison-table-container .comparison-column.crypto-column .comparison-item,
    .comparison-table-container .comparison-column.tradfi-column .comparison-item {
        font-size: 10px !important;
    }
    
    /* "Limited" text same size as first block */
    .comparison-table-container .comparison-column.crypto-column .limited,
    .comparison-table-container .comparison-column.tradfi-column .limited,
    .comparison-table-container .comparison-column.crypto-column .partial,
    .comparison-table-container .comparison-column.tradfi-column .partial {
        font-size: 12px !important;
    }
}

/* 420px media query for decentralization-screens */
@media (max-width: 420px) {
    .decentralization-screens {
        max-width: 87% !important;
    }
}

/* Fix mobile-cluster-image for screens up to 379px */
@media (max-width: 379px) {
    .mobile-cluster-image {
        bottom: 0px !important; /* Move to bottom edge for very small screens */
    }
}

/* FINAL 320px media query - placed at end to override everything */
@media (max-width: 320px) {
    .mobile-cluster-image {
        bottom: 0px !important; /* Move to bottom edge for very small screens */
    }
    
    .phone-mockups {
        min-height: 245px !important;
    }
    
    .decentralization-screens {
        margin-right: -90px !important;
    }
}

/* T&Cs Links */
.tc-link {
    font-size: 12px;
    color: white;
    margin-top: 8px;
    text-align: center;
}

.tc-link a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tc-link a:hover {
    color: #ccc;
}

/* Footer T&Cs link specific styling */
.footer-left .tc-link {
    margin-top: 5px;
    text-align: left;
}

/* Bonus section T&Cs link specific styling */
.bonus-content .tc-link {
    margin-top: 10px;
}

/* Contact form T&Cs link specific styling */
.contact-form .tc-link {
    margin-top: 8px;
    text-align: center;
}


