:root {
    --orange: #f7931a;
    --orange-dark: #e67e00;
    --orange-light: #ffb84d;
    --green: #10b981;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg);
}

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

/* Navigation */
.nav-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain; /* keeps proportions */
  display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--orange); }

.btn-nav {
    background: var(--orange) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.mobile-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-xl { padding: 20px 40px; font-size: 1.25rem; }

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 14px rgba(247,147,26,0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247,147,26,0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat { text-align: center; }
.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Hero Visual */
.hero-visual { position: relative; }

.card-showcase {
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

.gift-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  width: min(380px, 100%);   /* was 380px */
  max-width: 380px;
  box-sizing: border-box;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  margin: 0 auto;           /* keeps it centered */
}

.card-logo{
  position: absolute;
  width: clamp(32px, 8vw, 50px);
  height: auto;               /* keep SVG ratio */
  max-width: 50px;
  object-fit: contain;
  z-index: 4;
  pointer-events: none;       /* optional */
}

.card-bitcoin-card{
  max-width: 300px;
  height: auto;             /* let width drive the scaling */
  object-fit: contain;

}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
     z-index: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.card-chip {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 8px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

.card-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 24px;
}

.card-qr {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 12px;
    margin: 24px auto;
    position: relative;
}

.qr-grid {
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, #000 0, #000 10px, transparent 10px, transparent 20px),
        repeating-linear-gradient(90deg, #000 0, #000 10px, transparent 10px, transparent 20px);
}

.card-code {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.card-secure {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 { top: 14%; left: 11%; animation-delay: 0s; }
.icon-2 { top: 60%; right: 12%; animation-delay: 1s; }
.icon-3 { color: white; bottom: 25%; left: 16%; animation-delay: 2s; }

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

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 32px 0;
    box-shadow: var(--shadow);
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
}

/* Sections */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.badge {
    display: inline-block;
    background: rgba(247,147,26,0.1);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* How It Works */
.how-section { background: var(--bg-light); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(247,147,26,0.1);
}

.step-icon {
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.step-link:hover { gap: 8px; }

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Understanding Bitcoin Section */
.understanding-section {
    background: var(--bg-light);
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.understanding-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
}

.understanding-card.highlighted {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(247,147,26,0.05), rgba(255,255,255,1));
}

.understanding-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.understanding-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.understanding-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.example-code {
    font-family: 'Courier New', monospace;
    background: var(--bg-light);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--dark);
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    border: 1px solid rgba(0,0,0,0.1);
}

.example-code.warning {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.3);
    color: #dc2626;
}

.custody-comparison {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.custody-comparison h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--dark);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1px;
    background: white;
}

.comparison-row.header {
    background: var(--dark);
    color: white;
}

.comparison-row > div {
    padding: 16px 20px;
}

.feature-name {
    font-weight: 600;
    color: var(--dark);
}

.value {
    text-align: center;
    font-weight: 600;
}

.value.good {
    text-align: left;
    color: var(--green);
}

.value.bad {
    text-align: left;
    color: var(--gray);
}

/* WADY Cold Wallet Section */
.wady-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.wady-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.badge-secondary {
    display: inline-block;
    background: rgba(59,130,246,0.1);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 16px;
}

.wady-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.wady-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    color: white;
}

.wady-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wady-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.wady-card-header span {
    font-size: 0.875rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.wady-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.wady-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.wady-badge {
    text-align: center;
    padding: 12px;
    background: rgba(247,147,26,0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--orange);
    font-weight: 600;
}

.lead-sm {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.wady-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.wady-benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.wady-benefit h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.wady-benefit p {
    color: var(--gray);
    line-height: 1.7;
}

.wady-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: white;
}

.wady-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--gray);
}

.wady-comparison {
    background: white;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wady-comparison h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.comparison-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.comparison-card.featured {
    border-color: var(--orange);
    background: white;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.popular-badge-small {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.comparison-card h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.comparison-desc {
    color: var(--gray);
    margin-bottom: 24px;
}

.comparison-features {
    list-style: none;
    margin-bottom: 24px;
}

.comparison-features li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.9375rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9375rem;
}

/* Security Section */
.security-section { background: var(--bg-light); }

.security-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-item {
    display: flex;
    gap: 16px;
}

.security-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.security-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.security-item p {
    color: var(--gray);
    line-height: 1.7;
}

.security-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.security-badge {
    animation: float 4s ease-in-out infinite;
}

.security-stats {
    display: flex;
    gap: 24px;
}

.sec-stat {
    text-align: center;
}

.sec-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
}

.sec-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-lg); }

.faq-q {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.faq-icon {
    transition: var(--transition);
    color: var(--orange);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-a p {
    color: var(--gray);
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--orange);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer {
    opacity: 0.6;
    font-size: 0.875rem;
    margin-top: 8px;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .steps-grid, .benefits-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .wady-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .understanding-grid { grid-template-columns: 1fr; }
    .comparison-row { grid-template-columns: 1fr; }
    .comparison-row > div { border-bottom: 1px solid var(--bg-light); }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active { display: flex; }
    .mobile-btn { display: flex; }
    .hero-title { font-size: 2rem; }
    .section-header h2 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .hero-stats { justify-content: space-around; }
    .cta-trust { flex-direction: column; gap: 12px; }
    section { padding: 60px 0; }
}

/* Products Section */
.products-section { background: var(--bg-light); }

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

.product-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 2px solid rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--orange);
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.product-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--dark);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* WADY Section */
.wady-section { background: white; }

.wady-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.wady-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wady-card {
    perspective: 1000px;
}

.wady-card-inner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.wady-card-inner .card-bitcoin-card{
  width: min(85%, 340px);
  max-height: calc(100% - 140px);
  display: block;
}

/* ensure text stays above the image */
.wady-header, .wady-address, .wady-footer{
  position: relative;
  z-index: 3;
}

.wady-card:hover .wady-card-inner {
    transform: rotateY(5deg) rotateX(5deg);
}

.wady-header {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.wady-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 8px;
    margin-bottom: 20px;
}

.wady-logo {
    text-align: center;
    margin: 20px 0;
}

.wady-qr {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 12px;
    margin: 24px auto;
    padding: 10px;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, #000 0, #000 8px, transparent 8px, transparent 16px),
        repeating-linear-gradient(90deg, #000 0, #000 8px, transparent 8px, transparent 16px);
}

.wady-address {
    font-family: 'Courier New', monospace;
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.wady-footer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

.wady-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wady-badge {
    background: white;
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.wady-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.wady-feature {
    display: flex;
    gap: 16px;
}

.feature-icon-small {
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-text p {
    color: var(--gray);
    line-height: 1.7;
}

.wady-cta {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.wady-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.wady-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wady-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    color: var(--dark);
    font-weight: 500;
}

.wady-comparison {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid var(--bg-light);
}

.wady-comparison h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.comparison-label {
    font-weight: 600;
    color: var(--dark);
}

.comparison-value {
    text-align: left;
    font-weight: 600;
}

.comparison-value.good {
    color: var(--green);
}

.comparison-value.bad {
    color: var(--gray);
}

.comparison-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 16px;
    padding-top: 12px;
    font-size: 0.875rem;
    color: var(--gray);
}

.comparison-left {
    text-align: right;
}

.comparison-right {
    text-align: center;
    font-weight: 600;
    color: var(--orange);
}

/* Responsive Updates */
@media (max-width: 968px) {
    .products-grid { grid-template-columns: 1fr; }
    .wady-grid { grid-template-columns: 1fr; }
    .wady-badges { grid-template-columns: 1fr; }
    .comparison-row { grid-template-columns: 1fr; gap: 8px; }
    .comparison-footer { grid-template-columns: 1fr; }
    .comparison-left { text-align: left; }
    .comparison-right { text-align: left; }
}
