/* ==========================================================
   PALETA ECOLÓGICA / TROPICAL
   ========================================================== */
:root {
    --jungle-green: #2A9D8F;
    --rainforest-teal: #1B998B;
    --tropical-turquoise: #38B2AC;
    --costa-rica-green: #48BB78;
    --banana-leaf: #9CCC65;
    --mango-yellow: #F4A261;
    --sunset-orange: #E76F51;
    --earth-brown: #8B4513;
    --canopy-dark: #1A535C;
    --forest-dark: #264653;
    --light-bamboo: #F0F7F4;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
}

/* ==========================================================
   TEMA
   ========================================================== */
body[data-theme="light"] {
    --bg-primary: var(--light-bamboo);
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --border-color: rgba(38, 70, 83, 0.1);
    --text-primary: var(--text-dark);
    --text-secondary: #4B5563;
}

body[data-theme="dark"] {
    --bg-primary: var(--forest-dark);
    --bg-surface: var(--canopy-dark);
    --bg-card: rgba(26, 83, 92, 0.7);
    --border-color: rgba(42, 157, 143, 0.2);
    --text-primary: var(--text-light);
    --text-secondary: #D1D5DB;
}

/* ==========================================================
   RESET Y BASE
   ========================================================== */

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.5s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

html {
    font-size: 80%;
}

/* ==========================================================
   CONTENEDOR
   ========================================================== */
.container {
    max-width: 1200px !important;
    padding: 0 20px !important;
    margin: 0 auto;
}

/* ==========================================================
   BOTONES
   Nota: se mantienen, pero sin tocar header/nav/logo
   ========================================================== */
.btn,
.hero .btn,
.section .btn,
.cta-section .btn,
.hero-slider-new .btn,
.buy-extra-info .btn,
.crypto-actions .btn {
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 14px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}

.btn::before,
.hero .btn::before,
.section .btn::before,
.cta-section .btn::before,
.hero-slider-new .btn::before,
.buy-extra-info .btn::before,
.crypto-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before,
.hero .btn:hover::before,
.section .btn:hover::before,
.cta-section .btn:hover::before,
.hero-slider-new .btn:hover::before,
.buy-extra-info .btn:hover::before,
.crypto-actions .btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--jungle-green), var(--tropical-turquoise));
    color: white;
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 157, 143, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--jungle-green);
}

.btn-secondary:hover {
    background: rgba(42, 157, 143, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    padding: 120px 0 60px !important;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.8) 0%, transparent 100%);
    opacity: 0.1;
    z-index: -1;
}

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

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.4rem !important;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--jungle-green), var(--banana-leaf), var(--mango-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

.hero-content p,
.hero p {
    font-size: 1.1rem !important;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem !important;
    font-weight: 800;
    color: var(--jungle-green);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat .label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-chart {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(26, 83, 92, 0.2);
    margin: 50px auto;
    backdrop-filter: blur(10px);
    max-width: 1000px;
}

/* ==========================================================
   SECCIONES
   ========================================================== */
.section {
    padding: 70px 0 !important;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem !important;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px !important;
    position: relative;
    color: var(--jungle-green);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--jungle-green), var(--banana-leaf));
    border-radius: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================
   FEATURES
   ========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 30px 20px !important;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(156, 204, 101, 0.1), transparent);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--jungle-green);
    box-shadow: 0 25px 50px rgba(26, 83, 92, 0.3);
}

.feature-icon {
    width: 65px !important;
    height: 65px !important;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--jungle-green), var(--tropical-turquoise));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 24px !important;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================================
   BUY STEPS
   ========================================================== */
.buy-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0 60px 0;
}

.buy-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: .35s ease;
    overflow: hidden;
}

.buy-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--jungle-green);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.buy-step-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3.7rem;
    font-weight: 900;
    opacity: 0.06;
    color: var(--text-primary);
    pointer-events: none;
}

.buy-step-icon {
    width: 75px;
    height: 75px;
    background: var(--jungle-green);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 18px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.buy-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-primary);
}

.buy-step-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.buy-extra-info {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.buy-extra-info ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    text-align: left;
    display: inline-block;
}

.buy-extra-info li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.buy-extra-info i {
    color: var(--jungle-green);
    margin-top: 3px;
}

.buy-start-btn {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* ==========================================================
   GRIDS / PRODUCTOS
   ========================================================== */
.products-grid {
    gap: 15px !important;
    margin-top: 20px !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

.products-grid > * {
    padding: 16px !important;
}

/* ==========================================================
   CRYPTO MODERN
   ========================================================== */
.crypto-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.crypto-modern-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease forwards;
}

.crypto-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.btc-card::before { background: linear-gradient(90deg, #F7931A, #FFD166); }
.eth-card::before { background: linear-gradient(90deg, #627EEA, #8C8CFF); }
.usdt-card::before { background: linear-gradient(90deg, #26A17B, #50D890); }
.usdc-card::before { background: linear-gradient(90deg, #2775CA, #5AA9E6); }
.bnb-card::before { background: linear-gradient(90deg, #F0B90B, #FFE66D); }
.sol-card::before { background: linear-gradient(90deg, #00FFA3, #03CEA4); }

.crypto-modern-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.crypto-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.crypto-icon-wrapper {
    position: relative;
}

.crypto-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.crypto-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.crypto-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--jungle-green);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.crypto-badge.auditado {
    background: linear-gradient(90deg, #2775CA, #5AA9E6);
}

.crypto-badge.rapido {
    background: linear-gradient(90deg, #00FFA3, #03CEA4);
}

.crypto-ticker {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crypto-card-body {
    margin-bottom: 25px;
}

.crypto-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.crypto-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.crypto-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px !important;
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.crypto-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.crypto-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.buy-btn {
    width: 100%;
    padding: 10px !important;
    background: linear-gradient(90deg, var(--jungle-green), var(--tropical-turquoise));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(67, 220, 134, 0.4);
}

.crypto-actions {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.crypto-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.crypto-note i {
    color: var(--jungle-green);
}

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

.crypto-modern-card:nth-child(1) { animation-delay: 0s; }
.crypto-modern-card:nth-child(2) { animation-delay: 0.1s; }
.crypto-modern-card:nth-child(3) { animation-delay: 0.2s; }
.crypto-modern-card:nth-child(4) { animation-delay: 0.3s; }
.crypto-modern-card:nth-child(5) { animation-delay: 0.4s; }
.crypto-modern-card:nth-child(6) { animation-delay: 0.5s; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 25px 20px !important;
    background: var(--bg-card);
    border-radius: 25px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--jungle-green);
}

.step-number {
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, var(--jungle-green), var(--tropical-turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
    font-weight: 900;
    color: white;
    margin: 0 auto 30px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 3px solid rgba(42, 157, 143, 0.3);
    border-radius: 50%;
    animation: ripple 3s infinite;
}

@keyframes ripple {
0% { transform: scale(1); opacity: 1; }
100% { transform: scale(1.2); opacity: 0; }
}

.step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--jungle-green);
}

/* ==========================================================
   WALLET / BALANCES / IMPACTO
   ========================================================== */
.balance-amount {
    font-size: 2.6rem !important;
}

.asset-item {
    padding: 14px !important;
}

.asset-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
}

.impact-header {
    padding: 35px !important;
}

.impact-stat .number {
    font-size: 2rem !important;
}

/* ==========================================================
   SELF-CUSTODY
   ========================================================== */
#self-custody {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

body[data-theme="light"] #self-custody {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(230,241,237,0.7)) !important;
    color: var(--text-dark) !important;
}

body[data-theme="dark"] #self-custody {
    background: linear-gradient(135deg, rgba(11,22,35,.90), rgba(19,78,74,.35)) !important;
    color: var(--text-light) !important;
}

#self-custody::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(67, 220, 134, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 201, 151, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.custody-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.custody-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(67, 220, 134, 0.1);
    border: 1px solid rgba(67, 220, 134, 0.3);
    color: var(--jungle-green);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.danger-text {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.success-text {
    color: var(--jungle-green);
    text-shadow: 0 0 10px rgba(67, 220, 134, 0.3);
}

/* layout viejo apagado */
.custody-grid {
    display: none !important;
    max-width: 1200px;
    margin: auto;
    gap: 25px !important;
    grid-template-columns: 1fr 1.2fr 1fr !important;
}

.custody-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255,255,255,0.04);
    padding: 18px !important;
    border-radius: 12px;
}

.custody-items ul,
.custody-items li {
    list-style: none;
    padding-left: 0;
}

.custody-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    margin-bottom: 10px;
}

.danger-item {
    border-left: 4px solid #ff6b6b;
}

.benefit-item {
    border-left: 4px solid var(--jungle-green);
}

.item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.danger-item .item-icon {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.benefit-item .item-icon {
    background: rgba(67, 220, 134, 0.1);
    color: var(--jungle-green);
}

.item-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.item-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem !important;
    line-height: 1.5;
}

.benefit-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    background: rgba(67, 220, 134, 0.1);
    color: var(--jungle-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.warning-card {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.warning-content h4 {
    margin: 0 0 5px 0;
    color: #ff6b6b;
}

.warning-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.visual-column {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.key-chain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.key-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.key-shape {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.user-key .key-shape {
    background: linear-gradient(135deg, var(--jungle-green), #40e5a0);
    color: white;
    box-shadow: 0 10px 30px rgba(67, 220, 134, 0.3);
    animation: float 3s ease-in-out infinite;
}

.bridge .key-shape {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}

/* ==========================================================
   LAYOUT NUEVO DE CUSTODY / CARDS / COMPARISON
   ========================================================== */
.custody-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custody-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
}

.mini-card {
    margin-bottom: 12px;
}

.highlight-card {
    padding: 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
}

.flow-card {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.flow-item {
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.comparison-card {
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.final-text {
    margin-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* ==========================================================
   TABS SYSTEM
   ========================================================== */
.custody-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 35px;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.tab-btn.active {
    background: var(--jungle-green);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* CARDS */
.info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-card.danger {
    border-left: 4px solid #ff6b6b;
}

.info-card.success {
    border-left: 4px solid var(--jungle-green);
}

.info-card.warning {
    border-left: 4px solid #F4A261;
}

/* ==========================================================
   SLIDER WRAPPERS
   ========================================================== */
.hero-slider-section {
    padding: 30px 0 50px 0;
}

.hero-slider-container {
    max-width: 1250px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
}

.hero-slider-inline {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    padding: 10px;
}

/* ==========================================================
   HERO SLIDER NEW
   ========================================================== */
.hero-slider-new {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 90px;
}

.hero-slider-new .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-new .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider-new .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider-new .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
}

.hero-slider-new .content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 100px 40px;
    color: #fff;
}

.hero-slider-new h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-slider-new h1 span {
    color: #00ffcc;
}

.hero-slider-new p {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-slider-new .actions {
    margin-top: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #00ffcc;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
    padding: 60px 0 30px !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.social-link {
    width: 40px !important;
    height: 40px !important;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
    .features-grid,
    .buy-steps-wrapper,
.steps {
        grid-template-columns: repeat(2, 1fr);
    }

.comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
.hero {
        padding: 100px 0 50px !important;
    }

.hero h1 {
        font-size: 2.4rem !important;
    }

    .hero-content p,
.hero p {
        font-size: 1rem !important;
    }

.hero-actions {
        flex-direction: column;
        align-items: center;
    }

.hero-stats {
        gap: 20px;
        padding: 25px;
    }

    .features-grid,
    .buy-steps-wrapper,
    .steps,
.card-grid {
        grid-template-columns: 1fr;
    }

.section-title {
        font-size: 2rem !important;
    }

.hero-slider-new h1 {
        font-size: 2rem;
    }

.hero-slider-new .content {
        padding: 80px 20px;
    }

.slider-dots {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
html {
        font-size: 75%;
    }

.container {
        padding: 0 16px !important;
    }

.hero-stats {
        flex-direction: column;
    }

    .btn,
    .hero .btn,
    .section .btn,
    .cta-section .btn,
    .hero-slider-new .btn,
    .buy-extra-info .btn,
.crypto-actions .btn {
        width: 100%;
        text-align: center;
    }
}


.crypto-section {
    padding: 80px 20px;
}

.crypto-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.crypto-section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.crypto-grid {
    display: grid;
    gap: 20px;
}

.crypto-grid--featured {
    grid-template-columns: repeat(4, 1fr);
}

.crypto-grid--products {
    grid-template-columns: repeat(3, 1fr);
}

.crypto-grid--compact {
    grid-template-columns: repeat(2, 1fr);
}

.crypto-card-wrap {
    background: #0f2f2c;
    padding: 10px;
    border-radius: 16px;
    overflow: hidden;
}

.crypto-card-wrap--hero {
    grid-column: span 2;
}

.crypto-card-wrap--md {
    grid-column: span 1;
}

.crypto-card-wrap--sm {
    grid-column: span 1;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .crypto-grid--featured {
        grid-template-columns: repeat(2, 1fr);
    }

    .crypto-grid--products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .crypto-grid,
    .crypto-grid--featured,
    .crypto-grid--products,
    .crypto-grid--compact {
        grid-template-columns: 1fr;
    }
}

/* TEST WRITE Mon Mar 23 14:11:16 CET 2026 */


html { font-size: 76%; }
body { overflow-x: hidden; }
.section { padding: 72px 0 !important; }
.section-title { margin-bottom: 14px !important; }
.section-subtitle { margin-bottom: 28px !important; }

.bb-hero-master {
    position: relative;
    min-height: calc(100vh - 92px);
    overflow: hidden;
    background: #081314;
}

.bb-hero-track,
.bb-hero-slide {
    min-height: calc(100vh - 92px);
}

.bb-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
}

.bb-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(7,18,20,.92) 0%, rgba(7,18,20,.66) 42%, rgba(7,18,20,.48) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    animation: heroPan 7s linear infinite alternate;
}

.bb-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.bb-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 34px;
    min-height: calc(100vh - 92px);
    padding-top: 28px;
    padding-bottom: 28px;
}

.bb-hero-copy,
.bb-hero-card-stack {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.bb-hero-slide.is-active .bb-hero-copy,
.bb-hero-slide.is-active .bb-hero-card-stack {
    opacity: 1;
    transform: translateY(0);
}

.bb-hero-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #d9ebe2;
    text-transform: uppercase;
    font-size: .84rem;
    letter-spacing: .18em;
    font-weight: 700;
}

.bb-hero-copy h1 {
    font-size: clamp(3.6rem, 7vw, 6.8rem) !important;
    line-height: .96;
    margin-bottom: 18px;
    color: #fff;
}

.bb-hero-copy h1 span {
    display: block;
    color: #9de7c1;
}

.bb-hero-copy p {
    max-width: 640px;
    font-size: 1.16rem !important;
    color: rgba(255,255,255,.82);
    margin-bottom: 24px;
}

.bb-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bb-hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bb-hero-mini-stats div,
.bb-hero-visual-card,
.bb-ribbon-card,
.bb-home-wallet-card {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(9,22,24,.84);
}

.bb-hero-mini-stats div {
    padding: 14px;
    border-radius: 18px;
}

.bb-hero-mini-stats strong {
    display: block;
    color: #fff;
    font-size: 1.18rem;
    margin-bottom: 2px;
}

.bb-hero-mini-stats span {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
}

.bb-hero-card-stack {
    display: grid;
    gap: 16px;
}

.bb-hero-visual-card {
    padding: 22px;
    border-radius: 24px;
}

.bb-chip {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.bb-hero-visual-card h3 {
    font-size: 1.75rem !important;
    color: #fff;
    margin-bottom: 10px;
}

.bb-hero-visual-card p { color: rgba(255,255,255,.72); margin: 0; }
.bb-hero-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.bb-photo-tile, .bb-ribbon-media {
    min-height: 210px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}

.bb-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 4;
    display: inline-flex;
    gap: 10px;
    transform: translateX(-50%);
}

.bb-hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.3);
}

.bb-hero-dots button.is-active { background: #fff; }

.bb-photo-ribbon { padding: 30px 0 20px; background: linear-gradient(180deg, #0a1718 0%, #0f2324 100%); }
.bb-ribbon-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.bb-ribbon-card { padding: 14px; border-radius: 24px; display: grid; gap: 14px; }
.bb-ribbon-card h3 { margin: 0 0 6px; color: #fff; font-size: 1.25rem !important; }
.bb-ribbon-card p { margin: 0; color: rgba(255,255,255,.74); }

.bb-home-wallet-shell {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 26px;
    align-items: start;
}

.bb-home-wallet-card { border-radius: 26px; padding: 24px; }
.bb-home-wallet-assets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.bb-home-wallet-assets .crypto-card {
    margin: 0;
    padding: 16px;
    border-radius: 18px;
    background: #102124;
    border: 1px solid rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.bb-home-wallet-assets .crypto-symbol { color: #fff; font-weight: 800; font-size: 1.02rem; }
.bb-home-wallet-assets .crypto-name,
.bb-home-wallet-assets .crypto-metrics span,
.bb-home-wallet-copy p,
.bb-home-wallet-card .wallet-header p { color: var(--text-secondary); }
.bb-home-wallet-assets .crypto-metrics { text-align: right; }
.bb-home-wallet-assets .crypto-metrics strong { display:block; color:#fff; font-size:1rem; }

.woocommerce ul.products li.product,
.feature-card,
.crypto-block,
.product,
.bb-card {
    transition: transform .28s ease, opacity .28s ease;
}

.feature-card,
.crypto-block,
.product,
.bb-card,
.footer-column,
.footer-news,
.footer-brand,
.woocommerce ul.products li.product {
    opacity: .84;
    transform: translateY(16px);
}

.is-visible { opacity: 1 !important; transform: translateY(0) !important; }

@keyframes heroPan {
    from { transform: scale(1.03) translate3d(0, 0, 0); }
    to { transform: scale(1.09) translate3d(-1.2%, 0, 0); }
}

@media (max-width: 1100px) {
    .bb-hero-grid,
    .bb-home-wallet-shell { grid-template-columns: 1fr; }
    .bb-ribbon-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .bb-hero-master,
    .bb-hero-track,
    .bb-hero-slide,
    .bb-hero-grid { min-height: calc(100svh - 80px); }
    .bb-hero-copy h1 { font-size: clamp(2.8rem, 10vw, 4.2rem) !important; }
    .bb-hero-mini-stats,
    .bb-home-wallet-assets { grid-template-columns: 1fr; }
    .bb-photo-tile, .bb-ribbon-media { min-height: 170px; }
    .bb-hero-grid { gap: 20px; padding-top: 18px; padding-bottom: 54px; }
    .section { padding: 54px 0 !important; }
}
/* FIX SPACING TITLES PREMIUM */
.section-title{
    margin-bottom:42px !important;
    line-height:1.15 !important;
}

.section-title::after{
    bottom:-24px !important;
    height:4px !important;
    width:90px !important;
}

.section-subtitle{
    margin-top:10px !important;
    margin-bottom:34px !important;
    line-height:1.6 !important;
}