/* ===== CoinGate Style CSS ===== */
:root {
    --primary: #070A14;
    --primary-light: #11193b;
    --accent: #5B4BE7;
    --accent-dark: #5022ED;
    --accent-light: #EEECFD;
    --text: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f6f7f8;
    --border: #e5e7eb;
    --gradient: linear-gradient(135deg, #5B4BE7 0%, #827EF7 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91,75,231,0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--bg-light);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

/* Hero-specific outline button (on dark background) */
.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.hero .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== Top Bar ===== */
.topbar {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

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

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-right a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.topbar-right a:hover {
    color: var(--accent);
}

.topbar-right .divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

.topbar-right .lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo img {
    height: 32px;
}

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

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-links > li > a:hover {
    color: var(--accent-dark);
}

.nav-links > li > a i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-links > li:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.dropdown a i {
    width: 20px;
    color: var(--accent-dark);
}

.dropdown a:hover {
    background: var(--bg-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px;
    background: var(--white);
    border-top: 1px solid var(--border);
    gap: 8px;
}

.mobile-menu a {
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: var(--bg-light);
}

.mobile-menu.open {
    display: flex;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #070A14 0%, #11193b 50%, #020739 100%);
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,75,231,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(130,126,247,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91,75,231,0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(91,75,231,0.3);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 32px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

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

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #827EF7;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 340px;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.phone-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-header {
    background: var(--primary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.phone-dot.red { background: #ff5f57; }
.phone-dot.yellow { background: #febc2e; }
.phone-dot.green { background: #28c840; }

.phone-title {
    margin-left: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.phone-body {
    padding: 24px;
}

.pay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.pay-coin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pay-coin img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.pay-coin strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.pay-coin span {
    font-size: 12px;
    color: var(--text-light);
}

.pay-amount {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.pay-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.pay-total span {
    color: var(--text-light);
}

.pay-total strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.pay-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-btn:hover {
    background: var(--accent-dark);
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.float-card i {
    font-size: 20px;
    color: var(--accent-dark);
}

.float-card strong {
    display: block;
    font-size: 13px;
    color: var(--text);
}

.float-card span {
    font-size: 11px;
    color: var(--text-light);
}

.float-1 {
    top: 20%;
    left: -20px;
}

.float-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===== Trusted ===== */
.trusted {
    padding: 60px 0;
    background: var(--white);
}

.section-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4a3bd8;
    margin-bottom: 12px;
}

.section-eyebrow.center {
    text-align: center;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.tlogo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #9ca3af;
    transition: color 0.3s;
}

.tlogo i {
    font-size: 24px;
}

.tlogo:hover {
    color: var(--text);
}

/* ===== Section head ===== */
.section-head {
    margin-bottom: 48px;
}

.section-head.center {
    text-align: center;
}

.section-head h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 560px;
}

.section-head.center p {
    margin: 0 auto;
}

/* ===== Products ===== */
.products {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

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

.product-card.featured {
    border: 2px solid var(--accent);
    position: relative;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-icon i {
    font-size: 24px;
    color: var(--accent-dark);
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.link-arrow {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 12px;
}

/* ===== Features ===== */
.features {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 26px;
    color: var(--white);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* ===== How it works ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon i {
    font-size: 24px;
    color: var(--accent-dark);
}

.step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

.step-arrow {
    font-size: 24px;
    color: var(--accent);
}

/* ===== Crypto list ===== */
.crypto-list {
    padding: 80px 0;
    background: var(--white);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.crypto-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.crypto-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.crypto-item span {
    font-weight: 600;
    font-size: 14px;
}

.crypto-item small {
    margin-left: auto;
    color: var(--text-light);
    font-size: 12px;
}

.center-btn {
    text-align: center;
}

/* ===== Pricing ===== */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 24px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.price .currency {
    font-size: 24px;
    vertical-align: super;
    margin-right: 4px;
}

.price .period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.price-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.price-features li i {
    color: var(--accent-dark);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-family: inherit;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-dark);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 15px;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, #070A14 0%, #11193b 100%);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91,75,231,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

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

.footer-logo {
    height: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .product-grid, .pricing-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .crypto-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-actions .btn-ghost { display: none; }
    .topbar-right a:not(.lang) { display: none; }
    .hero h1 { font-size: 36px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .product-grid, .pricing-grid, .testimonial-grid, .feature-grid { grid-template-columns: 1fr; }
    .crypto-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 30px; }
    .section-head h2 { font-size: 32px; }
    .float-card { display: none; }
}

@media (max-width: 480px) {
    .crypto-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
}
