/* Crypto Recovery Global — Main Stylesheet */

:root {
    --bg: #0a0e17;
    --bg-card: #111827;
    --bg-elevated: #1a2234;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.25);
    --border: #1e293b;
    --success: #22c55e;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1140px;
    --header-height: 68px;
    --header-top-height: 36px;
    --header-total: calc(var(--header-height) + var(--header-top-height));
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

main {
    flex: 1;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #60a5fa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s, background 0.3s;
}

.site-header.scrolled {
    background: rgba(10, 14, 23, 0.96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-top-bar {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(129, 140, 248, 0.06));
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    font-size: 0.78rem;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    height: var(--header-top-height);
    color: var(--text-muted);
}

.header-top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.header-top-email {
    color: var(--accent);
    font-weight: 500;
}

.header-top-whatsapp {
    color: #25d366;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.header-top-whatsapp:hover {
    color: #4ade80;
}

.pulse-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulseGlow 2s ease-in-out infinite;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 210;
}

.logo:hover {
    color: var(--text);
}

.logo-text {
    background: linear-gradient(135deg, #f1f5f9, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
}

.nav-list > li {
    position: relative;
}

.nav-link,
.nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-list > li > a:hover,
.nav-link.active,
.nav-list > li > a.active {
    color: var(--text);
    background: rgba(59, 130, 246, 0.1);
}

.nav-chevron {
    transition: transform 0.25s;
}

.nav-item-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 300;
}

.nav-item-dropdown.open .nav-dropdown-panel,
.nav-item-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-dropdown-link {
    display: block;
    padding: 0.65rem 0.85rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-dropdown-link:hover {
    background: rgba(59, 130, 246, 0.12);
    color: var(--text);
    padding-left: 1.1rem;
}

.nav-dropdown-link:last-child {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    color: var(--accent);
    font-weight: 600;
}

.nav-cta-wrap {
    margin-left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 210;
    transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.nav-overlay.visible {
    display: block;
    opacity: 1;
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-elevated);
    color: var(--text);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-nav {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-nav-consult {
    padding: 0.5rem 1rem;
    font-weight: 700;
}

.btn-consult-short {
    display: none;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #1da851, #25d366);
    color: #fff;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c3f, #1ebe57);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}

.btn-whatsapp-sm {
    padding: 0.65rem 1.1rem;
    font-size: 0.88rem;
    border-radius: 8px;
    width: 100%;
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #4ade80;
}

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59, 130, 246, 0.15), transparent);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 2;
    width: 100%;
    min-height: 280px;
    max-height: 440px;
    position: relative;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    animation: float 5s ease-in-out infinite;
}

/* Stats bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
}

/* Feature banner */
.feature-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 3rem 0;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.feature-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 14, 23, 0.92) 40%, rgba(10, 14, 23, 0.6));
}

.feature-banner-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    max-width: 560px;
}

.feature-banner h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-banner p {
    color: var(--text-muted);
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Wallet cards */
.wallet-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wallet-card img {
    width: 36px;
    flex-shrink: 0;
}

/* Stats row */
.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Press logos */
.press-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.press-logos span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s, transform 0.3s;
}

.press-logos span:hover {
    opacity: 1;
    color: var(--text);
    transform: translateY(-2px);
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: var(--font);
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin: 2rem 0 4rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Page header */
.page-header {
    padding: 3rem 0 2rem;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59, 130, 246, 0.1), transparent);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0 4rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-email-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.contact-email-card .email-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.contact-email-card a {
    font-size: 1.15rem;
    font-weight: 600;
    word-break: break-all;
}

.contact-email-card .email-hint {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1rem;
}

.contact-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 4rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.testimonial-stars {
    color: #00b67a;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.85rem;
}

/* Pricing */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 560px;
    margin: 2rem auto 4rem;
    text-align: center;
}

.pricing-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-highlight {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1.5rem 0 0.5rem;
}

.pricing-highlight span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 4rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text);
}

.blog-card h3 a:hover {
    color: var(--accent);
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card .blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Press */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 4rem;
}

.press-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.press-card .outlet {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.press-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0 4rem;
    align-items: start;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Legal */
.legal-content {
    padding: 2rem 0 4rem;
    max-width: 760px;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-email {
    font-weight: 600;
    color: var(--accent) !important;
    font-size: 0.95rem !important;
}

.footer-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-disclaimer {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.logo-footer {
    font-size: 0.9rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-top-inner {
        gap: 0.75rem;
        font-size: 0.72rem;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-total);
        right: 0;
        width: min(360px, 100vw);
        max-width: 100%;
        height: calc(100vh - var(--header-total));
        height: calc(100dvh - var(--header-total));
        flex-direction: column;
        align-items: stretch;
        background: var(--bg);
        border-left: 1px solid var(--border);
        padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
        gap: 0.75rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 180;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-list > li > a,
    .nav-link {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }

    .nav-dropdown-panel {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: 0;
        box-shadow: none;
        border: none;
        background: var(--bg-elevated);
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        display: none;
        padding: 0.5rem;
    }

    .nav-item-dropdown.open .nav-dropdown-panel {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .nav-item-dropdown:hover .nav-dropdown-panel {
        display: none;
    }

    .nav-item-dropdown.open:hover .nav-dropdown-panel {
        display: block;
    }

    .nav-cta-wrap {
        margin-left: 0;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .btn-nav {
        width: 100%;
        padding: 0.72rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .btn-nav-consult {
        padding: 0.78rem 1rem;
        font-size: 0.92rem;
    }

    .btn-consult-full {
        display: inline;
    }

    .btn-consult-short {
        display: none;
    }

    .logo-text {
        font-size: 0.92rem;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-height: 360px;
        order: -1;
    }

    .contact-grid > .animate-on-scroll.delay-1 {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-top-hide-sm {
        display: none;
    }

    .header-top-hide-xs {
        display: none;
    }

    .stats-bar {
        justify-content: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-banner-content {
        padding: 2rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-header {
    animation: slideDown 0.5s ease forwards;
}

.hero-animated {
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.pulse-dot {
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-shimmer {
    background: linear-gradient(90deg, var(--accent) 0%, #60a5fa 50%, var(--accent) 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.btn-shimmer:hover {
    animation-play-state: paused;
}

.card-icon-wrap {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

/* SEO content */
.seo-prose h2 {
    font-size: 1.35rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--text);
}

.seo-prose p,
.seo-prose li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.seo-prose ul,
.seo-prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.seo-prose strong {
    color: var(--text);
}

.seo-prose a {
    word-break: break-word;
}

.seo-prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

.seo-prose pre,
.seo-prose code {
    word-break: break-word;
    white-space: pre-wrap;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checklist li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}

.process-step:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
}

.process-step .step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Wallet tags */
.wallet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
    justify-content: center;
}

.wallet-tags span {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s;
}

.wallet-tags span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonial-wallet {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Forms */
.recovery-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.form-card-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.form-card-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.form-card-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.recovery-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text);
}

.required {
    color: #f87171;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-control.is-invalid {
    border-color: #f87171;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-error {
    color: #f87171;
    font-size: 0.82rem;
    margin: 0.35rem 0 0;
}

.form-alert {
    margin: 1.5rem 2rem 0;
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-alert-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}

.form-privacy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.form-privacy a {
    color: var(--accent);
}

.form-submit {
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Article layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    padding: 2rem 0 3rem;
    align-items: start;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sidebar-card a {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    text-decoration: none;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.service-card .card-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.service-card .card-link:hover {
    text-decoration: underline;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #22c55e;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .recovery-form {
        padding: 1.5rem;
    }
}

/* ── Enhanced sections & animations ── */

.trust-marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: 0.85rem 0;
    margin: 0 0 2rem;
}

.trust-marquee {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.trust-marquee:hover {
    animation-play-state: paused;
}

.trust-marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
}

.trust-marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-marquee-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-glow {
    position: relative;
    padding: 3rem 0;
}

.section-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(59, 130, 246, 0.06), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.section-header .section-title {
    margin-bottom: 0.75rem;
}

.seo-block-alt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.seo-block-alt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #818cf8, var(--accent));
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.compare-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform 0.3s, border-color 0.3s;
}

.compare-card.highlight {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(59, 130, 246, 0.05);
}

.compare-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.compare-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.compare-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.compare-card li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.compare-card.highlight li::before {
    content: '✓';
    color: var(--success);
}

.compare-card:not(.highlight) li::before {
    content: '✗';
    color: #f87171;
}

.guide-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.guide-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.guide-link-card:hover {
    color: inherit;
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.guide-link-card h3 {
    font-size: 1rem;
    color: var(--text);
}

.guide-link-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
}

.guide-link-card .read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.blog-featured-main {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(129, 140, 248, 0.06));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-featured-main::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    top: -50px;
    right: -50px;
    animation: pulseGlow 4s ease-in-out infinite;
}

.blog-featured-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.blog-featured-main h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.blog-featured-main h2 a {
    color: var(--text);
    text-decoration: none;
}

.blog-featured-main h2 a:hover {
    color: var(--accent);
}

.blog-topic-clusters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.topic-cluster {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.topic-cluster h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
}

.topic-cluster a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    transition: color 0.2s, padding-left 0.2s;
}

.topic-cluster a:hover {
    color: var(--text);
    padding-left: 0.35rem;
}

.card {
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.stagger-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

.floating-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.08);
    top: 10%;
    right: 5%;
}

.floating-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(129, 140, 248, 0.06);
    bottom: 20%;
    left: 10%;
    animation-delay: -3s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 15px); }
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08), transparent 70%);
    pointer-events: none;
}

.blog-card {
    transition: transform 0.3s, border-color 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35);
}

.blog-card h3 a {
    color: var(--text);
    transition: color 0.2s;
}

.blog-card h3 a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .compare-grid,
    .guide-links-grid,
    .blog-topic-clusters,
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .seo-block-alt {
        padding: 1.75rem;
    }

    .pricing-layout {
        grid-template-columns: 1fr !important;
    }

    .page-hero-actions {
        flex-direction: column;
        align-items: stretch !important;
    }

    .chat-promo-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Smartsupp live chat widget layering */
#smartsupp-widget-container,
.smartsupp-widget-container {
    z-index: 9985 !important;
}

/* ── Page design system ── */
.page-header-rich {
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.page-header-rich .container {
    max-width: 820px;
}

.page-header-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.page-body {
    padding-bottom: 3rem;
}

.glass-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(26, 34, 52, 0.85));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.page-content-card {
    margin-bottom: 2.5rem;
}

.feature-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.feature-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-section-rich .hero-actions {
    position: relative;
    z-index: 1;
}

.chat-promo-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(129, 140, 248, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.chat-promo-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.chat-promo-banner strong {
    display: block;
    margin-bottom: 0.25rem;
}

.chat-promo-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.chat-promo-banner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.pricing-card-premium {
    border-color: rgba(59, 130, 246, 0.35);
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.08), var(--bg-card));
}

.pricing-side-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-mini-card {
    text-align: center;
    padding: 1.5rem;
}

.pricing-mini-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.pricing-mini-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.pricing-mini-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-card {
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.hero-actions .btn-outline {
    border-color: rgba(59, 130, 246, 0.4);
}

.hero-actions .btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent);
}

@media (max-width: 480px) {
    .btn-consult-full {
        display: none;
    }

    .btn-consult-short {
        display: inline;
    }

    .logo-text {
        max-width: 110px;
    }

    .header-inner {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
    }

    .page-header-rich {
        padding: 2.5rem 0 2rem;
    }
}

/* ── WhatsApp widget ── */
.whatsapp-widget {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9990;
}

.whatsapp-fab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, #1da851, #25d366);
    color: #fff;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-fab:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: chatPulse 2s ease-out infinite;
    pointer-events: none;
}

.whatsapp-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    width: min(300px, calc(100vw - 3rem));
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    pointer-events: none;
}

.whatsapp-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.65rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem;
}

.whatsapp-popup-close:hover {
    color: var(--text);
}

.whatsapp-popup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.whatsapp-popup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-popup-header strong {
    display: block;
    font-size: 0.9rem;
}

.whatsapp-popup-header span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.whatsapp-popup p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.contact-whatsapp-card {
    margin-top: 1rem;
    border-color: rgba(37, 211, 102, 0.25);
}

.contact-whatsapp-card .whatsapp-icon-wrap {
    background: rgba(37, 211, 102, 0.15);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.form-hint a {
    color: #25d366;
    font-weight: 600;
}

.chat-promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Desktop nav — compact CTAs on medium screens */
@media (max-width: 1280px) and (min-width: 1025px) {
    .btn-nav {
        padding: 0.45rem 0.7rem;
        font-size: 0.78rem;
    }

    .btn-whatsapp-label {
        display: none;
    }

    .btn-consult-full {
        display: none;
    }

    .btn-consult-short {
        display: inline;
    }
}

@media (max-width: 1024px) {
    .nav-cta-wrap {
        flex-direction: column;
        width: 100%;
    }

    .btn-whatsapp-nav {
        width: 100%;
        justify-content: center;
    }

    .feature-cards-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-fab-label {
        display: none;
    }

    .whatsapp-fab {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-popup {
        left: 0;
        bottom: calc(100% + 10px);
    }
}

@media (max-width: 600px) {
    .hero-actions,
    .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .btn,
    .page-hero-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .hero-note {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .whatsapp-widget {
        left: calc(1rem + env(safe-area-inset-left, 0px));
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }
}

/* ═══════════════════════════════════════════════════
   Mobile responsive — site-wide polish
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .nav-overlay {
        display: block;
        pointer-events: none;
    }

    .nav-overlay.visible {
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 62px;
        --header-top-height: 32px;
    }

    .container {
        padding: 0 1.125rem;
    }

    .section {
        padding: 2.75rem 0;
    }

    .hero {
        padding: 2.5rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 6vw, 2.25rem);
    }

    .hero-sub {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.3rem 0.7rem;
    }

    .feature-banner {
        min-height: 260px;
        margin: 2rem 0;
        align-items: flex-end;
    }

    .feature-banner::after {
        background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 55%, rgba(10, 14, 23, 0.45));
    }

    .feature-banner-content {
        max-width: 100%;
        padding: 1.5rem;
    }

    .feature-banner h2 {
        font-size: 1.35rem;
    }

    .stats-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 0;
        margin-bottom: 2.5rem;
    }

    .stats-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .press-logos {
        justify-content: center;
        gap: 1.25rem 1.75rem;
    }

    .press-logos span {
        font-size: 1rem;
    }

    .section-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .cards-grid,
    .blog-grid,
    .testimonials-grid,
    .press-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.75rem;
    }

    .blog-grid {
        padding: 1.5rem 0 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.75rem;
    }

    .process-step {
        padding: 1.35rem;
    }

    .cta-section {
        padding: 2.5rem 1.25rem;
        margin: 1.5rem 0 2.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom .logo-footer {
        justify-content: center;
    }

    .contact-grid {
        gap: 2rem;
        padding: 2rem 0 3rem;
    }

    .form-card-header {
        padding: 1.25rem 1.5rem;
    }

    .form-alert {
        margin: 1rem 1.5rem 0;
    }

    .chat-promo-banner {
        padding: 1.25rem;
        gap: 1rem;
    }

    .chat-promo-actions {
        width: 100%;
    }

    .chat-promo-actions .btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .faq-question {
        font-size: 0.92rem;
        padding: 1rem 1.75rem 1rem 0;
        gap: 1rem;
    }

    .faq-item.open .faq-answer {
        max-height: 600px;
    }

    .blog-featured-main {
        padding: 1.75rem;
    }

    .blog-featured-main .btn {
        width: 100%;
        align-self: stretch;
    }

    .seo-block-alt {
        padding: 1.5rem;
    }

    .page-header-rich h1,
    .page-header h1 {
        font-size: clamp(1.65rem, 5.5vw, 2.25rem);
        line-height: 1.2;
    }

    .page-header-lead {
        font-size: 1rem;
    }

    .glass-card {
        padding: 1.35rem;
    }

    .about-grid {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem;
    }

    .article-layout {
        padding: 1.5rem 0 2.5rem;
        gap: 1.5rem;
    }

    .article-content img,
    .seo-prose img {
        max-width: 100%;
        height: auto;
    }

    .breadcrumb {
        font-size: 0.78rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .wallet-tags {
        gap: 0.45rem;
        justify-content: center;
    }

    .wallet-tags span {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .trust-marquee-item {
        font-size: 0.78rem;
    }

    .pricing-card .btn-large {
        width: 100%;
    }

    .pricing-highlight {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .team-grid {
        gap: 1rem;
    }

    .team-card {
        padding: 1.35rem;
    }

    .page-body {
        padding-bottom: 2.5rem;
    }

    .cta-section-rich .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cta-section-rich .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .main-nav {
        width: 100%;
        max-width: 100%;
        border-left: none;
        padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .header-top-inner {
        gap: 0.5rem 0.75rem;
        font-size: 0.68rem;
        height: auto;
        min-height: var(--header-top-height);
        padding: 0.35rem 0;
    }

    .logo-text {
        max-width: 150px;
        font-size: 0.85rem;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .btn-large {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 1.75rem);
    }

    .compare-card,
    .guide-link-card,
    .card,
    .testimonial-card {
        padding: 1.35rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .contact-email-card {
        padding: 1.5rem;
    }

    .contact-email-card a {
        font-size: 1rem;
    }

    .footer-disclaimer {
        padding-top: 1.25rem;
    }

    .whatsapp-popup {
        width: calc(100vw - 2rem);
        max-width: 300px;
    }

    .whatsapp-widget {
        bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
        left: calc(1.25rem + env(safe-area-inset-left, 0px));
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-dropdown-link {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }

    .topic-cluster {
        padding: 1.25rem;
    }

    .press-card {
        padding: 1.35rem;
    }

    .sidebar-card {
        padding: 1.25rem;
    }

    .recovery-form {
        padding: 1.25rem;
    }

    .form-card-header {
        padding: 1.15rem 1.25rem;
    }

    .form-card-header h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-image {
        max-height: 280px;
        min-height: 200px;
    }

    .header-top-item.header-top-whatsapp {
        font-size: 0.65rem;
    }

    .trust-marquee-track {
        gap: 2rem;
        padding-right: 2rem;
    }

    .cta-section .btn-large,
    .cta-section .btn {
        width: 100%;
    }

    .page-hero-actions .btn,
    .hero-actions .btn {
        min-height: 44px;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .footer-col h4 {
        margin-bottom: 0.65rem;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 0.875rem;
    }

    .logo-text {
        max-width: 120px;
    }

    .hero-badge {
        font-size: 0.68rem;
    }
}
