:root {
    --primary: #0255F4;
    --primary-dark: #0144cc;
    --primary-light: #3d7fff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Josefin Sans', sans-serif, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.8);
}

.navbar .container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--primary);
    transition: var(--transition);
    height: 30px;
    width: 30px;
}

.logo-icon img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(0) saturate(100%) invert(21%) sepia(84%) saturate(5222%) hue-rotate(217deg) brightness(97%) contrast(103%);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo-text {
    color: var(--text-primary);
}

.highlight {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

#theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}

#theme-toggle:hover {
    background: var(--bg-primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero {
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 350px;
}

.ghost-mascot {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    animation: floatGhost 3s ease-in-out infinite;
}

@keyframes floatGhost {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 {
    text-wrap: balance;
    font-size: clamp(3rem, 5vw, 5rem);
}

.hero p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: auto;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
    text-wrap: balance;
}

.hero-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-button i {
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(2, 85, 244, 0.3);
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    background: transparent;
    color: white;
    border: none;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400%;
    height: 450%;
    background: conic-gradient(from 0deg, #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
    transform: translate(-50%, -50%);
    animation: border-spin 3s linear infinite;
    z-index: -2;
    transition: opacity 0.3s;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #000000;
    border-radius: 48px;
    z-index: -1;
    transition: background 0.3s;
}

.cta-button:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(2, 85, 244, 0.4);

}

.cta-button:hover::before {
    opacity: 0.2;

}

.cta-button:hover::after {
    background: #0255F4;
}

@keyframes border-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

section {
    padding: 50px 24px;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
    }

    .hero-content {
        max-width: 600px;
        margin: 0;
        text-align: left;
        flex: 1;
    }

    .hero p {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-socials {
        justify-content: flex-start;
    }

    .hero-visual {
        flex: 1;
        max-width: 450px;
        justify-content: center;
    }
}

.plan-gratis {
    --plan-color: #0155f3;
    --plan-bg: rgba(1, 85, 243, 0.04);
}

.plan-mini {
    --plan-color: #f4a102;
    --plan-bg: rgba(244, 161, 2, 0.04);
}

.plan-esencial {
    --plan-color: #008441;
    --plan-bg: rgba(0, 132, 65, 0.04);
}

.plan-plus {
    --plan-color: #7902ff;
    --plan-bg: rgba(121, 2, 255, 0.04);
}

.plan-pro {
    --plan-color: #d40320;
    --plan-bg: rgba(212, 3, 32, 0.04);
}

.plan-premium {
    --plan-color: #0155f3;
    --plan-bg: rgba(1, 85, 243, 0.04);
}

.plan-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.plan-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--plan-color);
    background: var(--plan-bg);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--plan-color);
    color: white;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--plan-color) 40%, transparent);
    z-index: 1;
}

.plan-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.plan-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid color-mix(in srgb, var(--plan-color) 20%, transparent);
    transition: var(--transition);
    padding: 5px;
}

.plan-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plan-card:hover .plan-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--plan-color) 30%, transparent);
    background: var(--plan-bg);
    border-color: var(--plan-color);
}

.plan-details {
    width: 100%;
    margin-bottom: 24px;
}

.plan-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plan-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--plan-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.plan-price span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.plan-actions {
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.info-btn:hover {
    color: var(--plan-color);
    border-color: color-mix(in srgb, var(--plan-color) 30%, transparent);
    background: var(--plan-bg);
    gap: 8px;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--plan-bg);
    border: 1px solid color-mix(in srgb, var(--plan-color) 30%, transparent);
    color: var(--plan-color);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.plan-btn:hover {
    background: var(--plan-color);
    border-color: var(--plan-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px color-mix(in srgb, var(--plan-color) 40%, transparent);
}

.plan-card.featured {
    border: 2px solid var(--plan-color);
    box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--plan-color) 30%, transparent);
    transform: scale(1.05);
    background: var(--plan-bg);
}

.plan-card.featured:hover {
    box-shadow: 0 20px 40px -10px color-mix(in srgb, var(--plan-color) 40%, transparent);
}

.plan-card.featured .plan-btn {
    background: var(--plan-color);
    border-color: var(--plan-color);
    color: #ffffff;
}

.plan-card.featured .plan-btn:hover {
    background: color-mix(in srgb, var(--plan-color) 85%, black);
    border-color: color-mix(in srgb, var(--plan-color) 85%, black);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(2, 85, 244, 0.3);
}

.clients-section {
    background: var(--bg-primary);
}

.info-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.big-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 4px 14px 0 rgba(2, 85, 244, 0.3);
    transition: var(--transition);
}

.info-card:hover .big-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.7;
    text-wrap: balance;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: auto;
    max-width: 800px;
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-item {
    padding: 28px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.info-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.info-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.info-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.footer {
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 24px 40px;
    position: relative;
    overflow: hidden;
    color: white;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;

}

.footer-bg-logo {
    position: absolute;
    bottom: -50px;
    right: -20px;
    opacity: 0.1;
    filter: invert(1);
    pointer-events: none;
    z-index: 0;
}

.footer-bg-logo img {
    width: 350px;
    height: auto;
    transform: rotate(0deg);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-email:hover {
    color: white;
    transform: translateX(2px);
}

.footer-email i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: var(--transition);
}

.footer-email:hover i {
    background: white;
    color: var(--primary);
    border-color: white;
}

.footer-socials a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    border-color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: white;
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    float: right;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    margin: -8px;
    padding: 8px;
    padding-bottom: 12px;
}

.close-modal:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: start;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 30px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-header h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 600;
}

.modal-details h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 14px;
    color: var(--text-primary);
}

.modal-details ul {
    list-style: none;
    padding: 0;
}

.modal-details li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.modal-details li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-tilt {
    transform-style: preserve-3d;
}

@media (max-width: 639px) {
    .navbar {
        padding: 14px 20px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    section {
        padding: 80px 20px;
    }

    .plans-section {
        padding: 0 20px;
        margin-top: -20px;
    }

    .plans-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .modal-content {
        padding: 28px;
    }

    .hero-socials {
        gap: 10px;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.support-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.support-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.support-float:hover {
    transform: translateY(-5px) scale(1.05);
}

.support-float:hover img {
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.comparison-section {
    background: var(--bg-secondary);
    margin-top: 60px;
}

.comparison-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-title {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comp-item {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.comp-item:first-child {
    border-right: 1px solid var(--border-color);
    background: rgba(2, 85, 244, 0.04);
}

@media (max-width: 639px) {
    .comp-item {
        padding: 12px;
        font-size: 13px;
        gap: 8px;
    }
}

.comp-item.positive i {
    color: #10b981;

    font-size: 18px;
}

.comp-item.negative i {
    color: #ef4444;

    font-size: 18px;
}

.comparison-disclaimer {
    padding: 24px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
    border-top: 1px solid var(--border-color);
}

.comp-header {
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-primary);
}

.header-item {
    font-size: 18px;
    justify-content: center;
    letter-spacing: 0.5px;
}

@media (max-width: 639px) {
    .header-item {
        font-size: 14px;
        padding: 12px 6px;
    }
}

.blog-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;

    scroll-behavior: smooth;
    scrollbar-width: none;

    -ms-overflow-style: none;

    border-radius: var(--radius-lg);
}

.blog-carousel::-webkit-scrollbar {
    display: none;

}

.home-blog-card {
    min-width: 280px;
    max-width: 320px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.home-blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.home-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog-card:hover .home-blog-thumb img {
    transform: scale(1.05);
}

.home-blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-blog-date {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-blog-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.home-blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.home-blog-title a:hover {
    color: var(--primary);
}

.home-blog-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    line-height: 1.6;
}

.home-blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.home-blog-link:hover {
    text-decoration: underline;
    gap: 8px;

}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;

    transition: all 0.3s;
}

.blog-carousel-container:hover .scroll-btn {
    opacity: 1;
}

.scroll-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .blog-carousel-container {
        padding: 0;
    }

    .scroll-btn {
        display: none;

    }
}
