﻿:root {
    --bg-dark: #030712;
    /* Slate 950+ (ultra dark) */
    --bg-card: rgba(15, 23, 42, 0.6);
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --accent: #8b5cf6;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-light: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Background Effects */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.gradient-mesh {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(-20px, 20px);
        opacity: 0.8;
    }
}

/* Floating Navbar */
.navbar-floating {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-glass {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 24px;
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.divider-vertical {
    width: 1px;
    height: 20px;
    background: var(--border-light);
}

.nav-btn-highlight {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

/* Modern Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
}

.hero-chip-animated {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 1px;
    /* border width */
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    position: relative;
}

.chip-content {
    background: #0f172a;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-main);
}

.badge-new {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.glitch-text {
    background: linear-gradient(to right, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.btn-modern {
    position: relative;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: inline-block;
}

.btn-modern.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-modern.outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-modern.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-modern:hover {
    transform: translateY(-2px);
}

/* 3D Visual */
.hero-visual-3d {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    perspective: 1200px;
}

.glass-panel {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transform: rotateX(15deg) scale(0.95);
    transform-style: preserve-3d;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-out;
}

.hero-visual-3d:hover .glass-panel {
    transform: rotateX(5deg) scale(1);
}

.panel-header {
    height: 40px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.bar {
    flex: 1;
    height: 6px;
    background: #1e293b;
    border-radius: 3px;
    max-width: 300px;
    margin: 0 auto;
}

.panel-content {
    display: flex;
    height: calc(100% - 40px);
}

.sidebar-mock {
    width: 200px;
    border-right: 1px solid var(--border-light);
    background: rgba(0, 0, 0, 0.2);
}

.grid-mock {
    flex: 1;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.card-mock {
    height: 100px;
    background: #1e293b;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.card-mock.active {
    background: #1e293b;
    border-color: var(--primary);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skeleton-line {
    background: #334155;
    height: 8px;
    border-radius: 4px;
}

.w-70 {
    width: 70%;
}

.w-40 {
    width: 40%;
}

.float-card {
    position: absolute;
    background: #0f172a;
    border: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateZ(40px);
    animation: floaty 6s ease-in-out infinite;
}

.card-1 {
    top: 30%;
    right: -20px;
}

.card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateZ(40px) translateY(0);
    }

    50% {
        transform: translateZ(40px) translateY(-15px);
    }
}

/* Bento Grid Modern */
.section-padding {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-header {
    margin-bottom: 3rem;
}

.section-desc-modern {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.highlight-blue {
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.bento-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.bento-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(59, 130, 246, 0.1);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.icon-box-modern {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.bento-item:hover .icon-box-modern {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bento-footer-tag {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(59, 130, 246, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-footer-tag::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), transparent);
}

@media (max-width: 968px) {
    .bento-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bento-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bento-item {
        padding: 1.25rem;
        min-height: 200px;
        border-radius: 1.25rem;
    }

    .span-2 {
        grid-column: span 2;
    }

    .icon-box-modern {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .bento-content h3 {
        font-size: 1.1rem;
    }

    .bento-content p {
        font-size: 0.85rem;
    }
}

/* Visuals inside Bento */
.bento-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.visual-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    gap: 1rem;
    opacity: 0.6;
}

.step-box {
    background: #1e293b;
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--text-muted);
}

.connector {
    width: 20px;
    height: 1px;
    background: var(--border-light);
}

.visual-chart {
    bottom: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.bar-chart {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 100px;
}

.bar-chart .bar {
    width: 15px;
    background: #334155;
    border-radius: 2px 2px 0 0;
    transition: height 1s ease;
}

.bar-chart .bar.active {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: rgba(30, 41, 59, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
}

.comparison-card.pro {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.comparison-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-list.bad li {
    color: var(--text-muted);
}

.comparison-list.good li {
    color: var(--text-main);
}

.icon-bad {
    color: #ef4444;
    font-weight: bold;
}

.icon-good {
    color: #10b981;
    font-weight: bold;
}

/* Expert Badge Section */
.expert-section {
    margin-top: 6rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border-light);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expert-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.expert-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    opacity: 0.6;
    justify-content: center;
}

.brand-tag {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
}

.expert-tag {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .expert-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* Billing Selector */
.billing-selector {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.7);
    padding: 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    margin-top: 2rem;
    gap: 0.5rem;
}

.billing-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.billing-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.save-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
}

.save-badge.highlight {
    background: #f472b620;
    color: #f472b6;
}

.billing-btn.active .save-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.pricing-grid.single-plan {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.popular {
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary);
    box-shadow: 0 0 40px -10px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-price {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: -0.5rem;
    margin-left: 0.2rem;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--text-main);
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.price .period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.saving-badge-container {
    display: flex;
    align-items: center;
}

.saving-total {
    background: #10b98120;
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #10b98140;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
}

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

.btn-pricing.primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-pricing.primary:hover {
    background: #2563eb;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Simple */
.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    padding: 6rem 0;
}

.final-cta-card {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 2rem;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.04em;
}

.final-cta-card p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .final-cta-card h2 {
        font-size: 2rem;
    }

    .final-cta-card p {
        font-size: 1.1rem;
    }
}