/* ============================================
   LINKMAS - DEVELOP ARGENTINA DESIGN SYSTEM
   Clean, modern sky-blue aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Develop Argentina Colors */
    --da-sky-50: #f0f9ff;
    --da-sky-100: #e0f2fe;
    --da-sky-200: #bae6fd;
    --da-sky-300: #7dd3fc;
    --da-sky-400: #38bdf8;
    --da-sky-500: #0ea5e9;
    --da-sky-600: #0284c7;
    --da-indigo-400: #818cf8;
    --da-indigo-500: #6366f1;
    
    /* Dark Theme */
    --da-dark-900: #01040c;
    --da-dark-800: #0a1628;
    --da-dark-700: #030b1a;
    --da-dark-600: #0b1a32;
    
    /* Surfaces */
    --surface-bg: var(--da-dark-900);
    --surface-card: rgba(255, 255, 255, 0.05);
    --surface-elevated: rgba(255, 255, 255, 0.08);
    --border-default: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Gradients */
    --gradient-sky: linear-gradient(135deg, var(--da-sky-500), var(--da-indigo-500));
    --gradient-glow: 0 0 40px rgba(14, 165, 233, 0.3);
}

/* ============================================
   BASE STYLES
   ============================================ */

html {
    scroll-behavior: smooth;
}

body, body.index, [data-theme-style="dark"] {
    background: var(--da-dark-900) !important;
    font-family: var(--font-body) !important;
    color: #fff !important;
}

/* Gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, var(--da-dark-800), var(--da-dark-900));
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: #fff !important;
}

h1, .h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

h1 span, .h1 span {
    color: var(--da-sky-400) !important;
}

p, .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7;
}

a {
    color: var(--da-sky-400);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--da-sky-300);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar, .navbar-main, #navbar {
    background: rgba(1, 4, 12, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--border-default) !important;
    border-radius: 16px !important;
    padding: 1rem 1.5rem !important;
    margin: 1rem !important;
}

.navbar-brand, .navbar-brand span {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    color: #fff !important;
}

.nav-link {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    color: #fff !important;
    background: rgba(14, 165, 233, 0.1) !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-primary {
    background: var(--da-sky-500) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3) !important;
}

.btn-primary:hover {
    background: var(--da-sky-600) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4) !important;
}

.btn-outline-primary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

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

/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--surface-card) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--border-default) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.card-body {
    padding: 1.5rem !important;
}

.card-header {
    background: rgba(14, 165, 233, 0.05) !important;
    border-bottom: 1px solid var(--border-default) !important;
    padding: 1.25rem 1.5rem !important;
}

/* ============================================
   FORMS
   ============================================ */

.form-control, .form-select, input, textarea, select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-default) !important;
    border-radius: 12px !important;
    padding: 0.875rem 1rem !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    transition: all 0.3s ease !important;
}

.form-control:focus, input:focus, textarea:focus, select:focus {
    background: rgba(14, 165, 233, 0.05) !important;
    border-color: var(--da-sky-500) !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

label, .form-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.875rem !important;
}

/* ============================================
   INDEX PAGE
   ============================================ */

.index-container-content {
    padding: 5rem 0 !important;
}

/* Hero Section Enhancements */
.linkmas-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.linkmas-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: hero-glow 8s ease-in-out infinite alternate;
}

.linkmas-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: hero-glow 10s ease-in-out infinite alternate-reverse;
}

@keyframes hero-glow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Hero typography */
.linkmas-hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4;
}

.linkmas-hero-tagline span {
    color: var(--da-sky-400);
}

.linkmas-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 600px;
    line-height: 1.7;
}

/* Trust indicators */
.linkmas-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-trust-item i {
    color: var(--da-sky-400);
    font-size: 0.9rem;
}

/* CTA Buttons */
.index-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.index-button {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.index-button-primary {
    background: linear-gradient(135deg, var(--da-sky-500), var(--da-indigo-500)) !important;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3) !important;
}

.index-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4) !important;
}

.index-button-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.index-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.index h1, .index-header {
    font-size: 3.5rem !important;
}

@media (max-width: 768px) {
    .index h1, .index-header, h1, .h1 {
        font-size: 2.25rem !important;
    }
}

/* Feature boxes */
.index-feature-icon {
    width: 64px !important;
    height: 64px !important;
    background: var(--gradient-sky) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    box-shadow: var(--gradient-glow) !important;
}

.index-feature-icon i {
    color: #fff !important;
    font-size: 1.5rem !important;
}

/* ============================================
   TESTIMONIALS ENHANCEMENTS
   ============================================ */

.index-testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.index-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(14, 165, 233, 0.1);
    line-height: 1;
}

.index-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.index-testimonial-card .index-testimonial-avatar {
    position: relative;
    transform: none;
    left: auto;
    margin-left: 0;
    width: 56px;
    height: 56px;
    border: 2px solid var(--da-sky-500);
    margin-bottom: 1rem;
}

.index-testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.index-testimonial-author {
    font-weight: 600;
    color: #fff !important;
    font-size: 0.95rem;
}

.index-testimonial-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Stars */
.index-testimonial-stars {
    margin-bottom: 0.75rem;
}

.index-testimonial-stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

/* ============================================
   FEATURED IN / LOGO BAR
   ============================================ */

.linkmas-logo-bar {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.linkmas-logo-bar-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.linkmas-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    opacity: 0.5;
}

.linkmas-logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.linkmas-logo-item:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 768px) {
    .linkmas-logo-grid {
        gap: 1.5rem;
    }
    
    .linkmas-logo-item {
        font-size: 1rem;
    }
}

/* ============================================
   STATS COUNTER ANIMATION
   ============================================ */

.stats-counter {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stats-counter.animate {
    opacity: 1;
    transform: translateY(0);
}

.stats-number {
    font-family: var(--font-heading) !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: var(--da-sky-400) !important;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.linkmas-how-it-works {
    padding: 4rem 0;
}

.linkmas-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
}

.linkmas-step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.linkmas-step-card h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem;
}

.linkmas-step-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0;
}

.linkmas-step-connector {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--da-sky-500), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

@media (max-width: 992px) {
    .linkmas-step-connector {
        display: none;
    }
}

/* ============================================
   CTA SECTION V2
   ============================================ */

.linkmas-cta-v2 {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.linkmas-cta-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.linkmas-cta-v2 h2 {
    position: relative;
    z-index: 1;
}

.linkmas-cta-v2 p {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.linkmas-cta-v2 .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 999px !important;
    font-size: 0.75rem !important;
}

.badge-primary {
    background: var(--gradient-sky) !important;
    color: #fff !important;
}

.badge-success {
    background: #22c55e !important;
}

.badge-warning {
    background: #f59e0b !important;
}

.badge-danger {
    background: #ef4444 !important;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    border: none !important;
    border-radius: 12px !important;
    padding: 1rem 1.25rem !important;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15) !important;
    border-left: 4px solid #22c55e !important;
    color: #22c55e !important;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border-left: 4px solid #ef4444 !important;
    color: #ef4444 !important;
}

.alert-info {
    background: rgba(14, 165, 233, 0.15) !important;
    border-left: 4px solid var(--da-sky-500) !important;
    color: var(--da-sky-400) !important;
}

/* ============================================
   TABLES
   ============================================ */

.table {
    color: rgba(255, 255, 255, 0.9) !important;
}

.table thead th {
    background: rgba(14, 165, 233, 0.1) !important;
    border-bottom: 1px solid var(--border-default) !important;
    font-weight: 600 !important;
    color: var(--da-sky-400) !important;
    padding: 1rem !important;
}

.table tbody tr:hover {
    background: rgba(14, 165, 233, 0.05) !important;
}

.table td {
    border-color: var(--border-default) !important;
    padding: 1rem !important;
}

/* ============================================
   PRICING - Premium Design
   ============================================ */

/* Pricing Plan Cards */
.pricing-plan {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

.pricing-plan:hover::before {
    opacity: 1;
}

/* Plan with accent color (popular) */
.pricing-plan[style*="border-color: #8b5cf6"],
.pricing-plan[style*="border-color: rgb(139, 92, 246)"] {
    border-width: 2px !important;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(2, 6, 23, 0.95)) !important;
}

.pricing-plan[style*="border-color: #8b5cf6"]::after,
.pricing-plan[style*="border-color: rgb(139, 92, 246)"]::after {
    content: 'MÁS POPULAR';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Plan Name */
.pricing-name {
    font-family: var(--font-heading) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em;
}

/* Plan Description */
.pricing-details {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
}

/* PRICE - The Main Element */
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0 0.5rem;
}

.pricing-price-currency,
.pricing-price-currency-symbol {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-price-amount,
.pricing-price .pricing-price-amount,
.pricing-header .pricing-price-amount,
.pricing-plan .pricing-price-amount,
span.pricing-price-amount,
.pricing-price-amount.d-inline-block,
[data-plan-payment-frequency].pricing-price-amount {
    font-family: var(--font-heading) !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    /* WHITE PRICE - Override any blue/primary color */
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

/* Pricing Body - Features List */
.pricing-body {
    padding-top: 0.5rem;
}

.pricing-body ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body li i {
    color: #22c55e !important;
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

.pricing-body li .fa-times {
    color: rgba(255, 255, 255, 0.3) !important;
}

	/* Pricing Button */
	.pricing-plan .btn-primary {
	    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%) !important;
	    color: #0f172a !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    border-radius: 14px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    text-transform: none;
    letter-spacing: 0;
}

	.pricing-plan .btn-primary:hover {
	    transform: translateY(-2px) !important;
	    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15) !important;
	}

	.pricing-cta-helper {
	    display: block;
	    margin-top: 0.65rem;
	    color: rgba(255, 255, 255, 0.55);
	    text-align: center;
	    font-size: 0.78rem;
	    line-height: 1.4;
	}

	.linkmas-lead-capture {
	    background: rgba(255, 255, 255, 0.04);
	    border: 1px solid rgba(255, 255, 255, 0.1);
	    border-radius: 20px;
	    padding: 1.5rem;
	}

	.linkmas-lead-capture .input-group {
	    background: rgba(255, 255, 255, 0.05);
	    border: 1px solid rgba(255, 255, 255, 0.08);
	    border-radius: 14px;
	    padding: 0.35rem;
	}

	.linkmas-lead-capture .form-control {
	    border: 0 !important;
	    background: transparent !important;
	    box-shadow: none !important;
	}

	.linkmas-lead-capture .btn {
	    white-space: nowrap;
	}

	@media (max-width: 575px) {
	    .linkmas-lead-capture .input-group {
	        display: block;
	    }

	    .linkmas-lead-capture .input-group-append,
	    .linkmas-lead-capture .btn {
	        display: block;
	        width: 100%;
	    }
	}

	/* Colored button based on plan color */
	.pricing-plan[style*="border-color: #8b5cf6"] .btn-primary,
	.pricing-plan[style*="border-color: rgb(139, 92, 246)"] .btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%) !important;
    color: #fff !important;
}

.pricing-plan[style*="border-color: #ec4899"] .btn-primary,
.pricing-plan[style*="border-color: rgb(236, 72, 153)"] .btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%) !important;
    color: #fff !important;
}

/* Payment Frequency Toggle */
.btn-group-custom {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 14px !important;
    padding: 0.35rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.btn-group-custom .btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
}

.btn-group-custom .btn:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.btn-group-custom .btn.active {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* Pricing Tag */
.pricing-tag {
    position: absolute !important;
    top: -1px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, var(--da-sky-500), var(--da-indigo-500)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.05em !important;
    padding: 0.4rem 1rem !important;
    border-radius: 0 0 12px 12px !important;
    text-transform: uppercase;
}

/* Savings Badge */
.pricing-header .badge-success {
    background: rgba(34, 197, 94, 0.15) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--da-dark-800) !important;
    border-top: 1px solid var(--border-default) !important;
    padding: 3rem 0 !important;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--da-dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--da-sky-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--da-sky-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.altum-animate {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LINKS TABLE ENHANCEMENTS (Editor UI)
   ============================================ */

/* Link type icon improvements */
.link-type-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.link-type-icon:hover {
    transform: scale(1.1);
}

/* Drag handle for reordering */
.link-drag-handle {
    cursor: grab;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.link-drag-handle:hover {
    color: var(--da-sky-400);
}

.link-drag-handle:active {
    cursor: grabbing;
}

/* Quick action buttons */
.link-quick-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

tr:hover .link-quick-actions {
    opacity: 1;
}

.link-quick-actions .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
}

/* Link row hover effect */
.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(14, 165, 233, 0.05) !important;
}

/* Better switch toggle */
.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--da-sky-500) !important;
    border-color: var(--da-sky-500) !important;
}

/* Project badge improvements */
.badge {
    font-weight: 600 !important;
    padding: 0.4rem 0.75rem !important;
    font-size: 0.75rem !important;
}

/* Stats in table */
.link-stats {
    display: flex;
    gap: 1rem;
}

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

.link-stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.link-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Inline edit button */
.inline-edit-btn {
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

tr:hover .inline-edit-btn {
    opacity: 1;
}

/* Better dropdown menus */
.dropdown-menu {
    background: var(--da-dark-800) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    transition: all 0.2s ease !important;
}

.dropdown-item:hover {
    background: rgba(14, 165, 233, 0.1) !important;
    color: #fff !important;
}

.dropdown-item i {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-right: 0.5rem !important;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 0.5rem 0 !important;
}

/* ============================================
   BIOLINK BLOCK EDITOR IMPROVEMENTS
   ============================================ */

.biolink-block-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.biolink-block-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.biolink-block-card.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

.biolink-block-drag-handle {
    cursor: grab;
    color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.biolink-block-drag-handle:active {
    cursor: grabbing;
}

/* Block type icons */
.block-type-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
    /* Better mobile table */
    .table-responsive {
        border: none !important;
    }
    
    .table-custom-container {
        background: transparent !important;
        border: none !important;
    }
    
    /* Better mobile cards */
    .link-mobile-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .link-mobile-card .link-type-icon {
        width: 44px;
        height: 44px;
    }
    
    /* Hide less important columns on mobile */
    .table th:nth-child(4),
    .table td:nth-child(4),
    .table th:nth-child(5),
    .table td:nth-child(5) {
        display: none;
    }
}

/* ============================================
   SECTION BADGE (reusable label above headings)
   ============================================ */

.linkmas-section-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--da-sky-400);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.linkmas-social-proof-bar {
    padding: 2.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(14, 165, 233, 0.03);
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-proof-item {
    text-align: center;
    min-width: 120px;
}

.social-proof-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.social-proof-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.social-proof-badge {
    display: inline-block;
    background: var(--gradient-sky);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.social-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .social-proof-inner {
        gap: 1.5rem;
    }

    .social-proof-divider {
        display: none;
    }

    .social-proof-item {
        min-width: 100px;
    }

    .social-proof-number {
        font-size: 1.6rem;
    }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.linkmas-comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.linkmas-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.linkmas-comparison-table thead tr {
    background: rgba(14, 165, 233, 0.08);
}

.linkmas-comparison-table th {
    padding: 1.25rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    white-space: nowrap;
}

.linkmas-comparison-table th.feature-col {
    text-align: left;
    min-width: 200px;
}

.linkmas-comparison-table td {
    padding: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    vertical-align: middle;
}

.linkmas-comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.linkmas-comparison-table td.linkmas-col,
.linkmas-comparison-table th.linkmas-col {
    background: rgba(14, 165, 233, 0.06);
    position: relative;
}

.linkmas-comparison-table th.linkmas-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-sky);
}

.linkmas-comparison-table tbody tr {
    transition: background 0.2s ease;
}

.linkmas-comparison-table tbody tr:hover {
    background: rgba(14, 165, 233, 0.04);
}

.linkmas-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-brand {
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-brand-linkmas {
    color: var(--da-sky-400);
}

.comparison-brand-other {
    color: rgba(255, 255, 255, 0.7);
}

.linkmas-comparison-table .text-success {
    color: #22c55e !important;
}

.linkmas-comparison-table .fa-check-circle {
    font-size: 1rem;
}

.linkmas-comparison-table .fa-times-circle {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .linkmas-comparison-table th,
    .linkmas-comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .linkmas-comparison-table td.feature-name {
        white-space: normal;
        min-width: 140px;
    }

    .linkmas-comparison-table th.feature-col {
        min-width: 140px;
    }

    .linkmas-comparison-table .feature-name i {
        display: none;
    }
}

/* ============================================
   USE CASE CARDS
   ============================================ */

.linkmas-usecase-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.linkmas-usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.linkmas-usecase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.linkmas-usecase-card:hover::before {
    opacity: 1;
}

/* Icon variants */
.usecase-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.usecase-icon-creators {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.usecase-icon-creators + h4 ~ .linkmas-usecase-card::before,
.linkmas-usecase-card:has(.usecase-icon-creators)::before {
    background: linear-gradient(90deg, #ec4899, transparent);
}

.usecase-icon-business {
    background: rgba(14, 165, 233, 0.15);
    color: var(--da-sky-400);
}

.linkmas-usecase-card:has(.usecase-icon-business)::before {
    background: linear-gradient(90deg, var(--da-sky-400), transparent);
}

.usecase-icon-restaurants {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.linkmas-usecase-card:has(.usecase-icon-restaurants)::before {
    background: linear-gradient(90deg, #f59e0b, transparent);
}

.usecase-icon-agencies {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.linkmas-usecase-card:has(.usecase-icon-agencies)::before {
    background: linear-gradient(90deg, #a78bfa, transparent);
}

.linkmas-usecase-card h4 {
    font-size: 1.15rem !important;
    margin-bottom: 0.75rem;
}

.linkmas-usecase-card > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.usecase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usecase-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.usecase-features li i {
    color: #22c55e;
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .linkmas-usecase-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   HERO ENHANCEMENTS
   ============================================ */

.linkmas-hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.4;
}

.linkmas-hero-tagline span {
    color: var(--da-sky-400);
}

.linkmas-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.7;
    max-width: 540px;
}

.linkmas-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-trust-item i {
    color: #22c55e;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .linkmas-hero-tagline {
        font-size: 1.2rem;
    }

    .linkmas-hero-description {
        font-size: 1rem;
    }

    .linkmas-hero-trust {
        gap: 0.75rem;
    }

    .hero-trust-item {
        font-size: 0.8rem;
    }
}

/* ============================================
   BIOLINK EDITOR MOBILE IMPROVEMENTS
   ============================================ */

@media (max-width: 992px) {
    .link-editor-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        background: var(--da-dark-900);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .link-editor-sidebar.open {
        transform: translateX(0);
    }
    
    .link-editor-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .link-editor-sidebar-overlay.open {
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   IMPROVED DARK MODE TOGGLES
   ============================================ */

.custom-control-input:focus ~ .custom-control-label::before {
    border-color: var(--da-sky-500) !important;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25) !important;
}

.custom-control-input:checked:focus ~ .custom-control-label::before {
    background-color: var(--da-sky-500) !important;
    border-color: var(--da-sky-500) !important;
}

/* ============================================
   BETTER MODALS
   ============================================ */

.modal-content {
    background: var(--da-dark-800) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1.25rem 1.5rem !important;
}

.modal-title {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
}

.modal-body {
    padding: 1.5rem !important;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 1.5rem !important;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

/* ============================================
   BETTER TOOLTIPS
   ============================================ */

.tooltip-inner {
    background: var(--da-dark-700) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.tooltip-arrow::before {
    border-top-color: var(--da-dark-700) !important;
}

/* ============================================
   MOBILE-FIRST IMPROVEMENTS
   ============================================ */

/* Better touch targets */
@media (max-width: 768px) {
    /* Larger touch targets for mobile */
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-sm {
        min-height: 36px;
    }
    
    /* Better form controls on mobile */
    .form-control, .form-select {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Better dropdowns on mobile */
    .dropdown-menu {
        width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        border-radius: 16px 16px 0 0 !important;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    /* Bottom sheet style for mobile modals */
    .modal-dialog {
        margin: 0.5rem;
        margin-bottom: 0;
    }
    
    .modal-dialog-centered {
        min-height: calc(100% - 1rem);
    }
    
    .modal.fade .modal-dialog {
        transform: translateY(100%);
    }
    
    .modal.show .modal-dialog {
        transform: translateY(0);
    }
}

/* ============================================
   BETTER PAGINATION
   ============================================ */

.pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px !important;
    padding: 0.5rem 0.75rem;
    min-width: 40px;
    text-align: center;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    color: #fff;
}

.page-item.active .page-link {
    background: var(--da-sky-500);
    border-color: var(--da-sky-500);
    color: #fff;
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   BETTER SEARCH
   ============================================ */

.search-wrapper {
    position: relative;
}

.search-wrapper .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.search-wrapper .form-control {
    padding-left: 2.75rem;
}

/* ============================================
   BETTER EMPTY STATES
   ============================================ */

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--da-sky-400);
}

.empty-state h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.6) !important;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

/* ============================================
   BETTER LOADING STATES
   ============================================ */

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* ============================================
   BETTER NOTIFICATIONS
   ============================================ */

.notification-toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--da-dark-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: calc(100vw - 3rem);
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-toast.success {
    border-left: 4px solid #22c55e;
}

.notification-toast.error {
    border-left: 4px solid #ef4444;
}

.notification-toast.info {
    border-left: 4px solid var(--da-sky-500);
}

/* ============================================
   INTERACTIVE FEATURE TABS
   ============================================ */

.linkmas-feature-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.linkmas-feature-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.linkmas-feature-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.linkmas-feature-tab.active {
    background: rgba(14, 165, 233, 0.15);
    color: var(--da-sky-400);
    font-weight: 600;
}

.linkmas-feature-tab i {
    font-size: 0.85rem;
}

/* Feature panels */
.linkmas-feature-tabs-content {
    position: relative;
}

.linkmas-feature-panel {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    animation: featurePanelFadeIn 0.4s ease;
}

.linkmas-feature-panel.active {
    display: block;
}

@keyframes featurePanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.linkmas-feature-panel-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.linkmas-feature-panel h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem;
}

.linkmas-feature-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.linkmas-feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.linkmas-feature-checklist li i {
    color: #22c55e;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    width: 16px;
    flex-shrink: 0;
}

/* Feature visual mockups */
.linkmas-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

/* Bio link mockup */
.feature-mock-biolink {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    width: 240px;
    text-align: center;
}

.mock-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-sky);
    margin: 0 auto 0.75rem;
}

.mock-name {
    width: 100px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    margin: 0 auto 1.25rem;
}

.mock-link {
    height: 36px;
    border-radius: 10px;
    margin-bottom: 0.6rem;
    transition: transform 0.2s ease;
}

.mock-link:hover {
    transform: scale(1.02);
}

.mock-link-1 { background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(236, 72, 153, 0.1)); border: 1px solid rgba(236, 72, 153, 0.2); }
.mock-link-2 { background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(14, 165, 233, 0.1)); border: 1px solid rgba(14, 165, 233, 0.2); }
.mock-link-3 { background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1)); border: 1px solid rgba(139, 92, 246, 0.2); }
.mock-link-4 { background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.1)); border: 1px solid rgba(34, 197, 94, 0.2); }

.mock-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mock-social span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Shortener mockup */
.feature-mock-shortener {
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.mock-url-long {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: monospace;
}

.mock-arrow {
    padding: 0.75rem 0;
    color: var(--da-sky-400);
    font-size: 1.25rem;
}

.mock-url-short {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--da-sky-400);
    font-family: monospace;
}

.mock-stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mock-stat {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.mock-stat i {
    margin-right: 0.3rem;
    color: var(--da-sky-400);
}

/* QR mockup */
.feature-mock-qr {
    text-align: center;
}

.mock-qr-code {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.mock-qr-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Analytics mockup */
.feature-mock-analytics {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 180px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 100%;
    max-width: 350px;
}

.mock-chart-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(14, 165, 233, 0.3), rgba(14, 165, 233, 0.1));
    border-radius: 6px 6px 0 0;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: height 0.5s ease;
    min-height: 10px;
}

.mock-chart-bar-active {
    background: linear-gradient(to top, var(--da-sky-500), var(--da-sky-400));
    border-color: var(--da-sky-400);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

/* Tools mockup */
.feature-mock-tools {
    width: 100%;
    max-width: 350px;
}

.mock-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mock-tool-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.mock-tool-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    color: var(--da-sky-400);
}

.mock-tool-item i {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--da-sky-400);
}

@media (max-width: 768px) {
    .linkmas-feature-tabs-nav {
        gap: 0.25rem;
        padding: 0.3rem;
    }

    .linkmas-feature-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .linkmas-feature-tab span {
        display: none;
    }

    .linkmas-feature-tab i {
        font-size: 1rem;
    }

    .linkmas-feature-panel {
        padding: 1.5rem;
    }

    .linkmas-feature-panel h3 {
        font-size: 1.25rem !important;
    }

    .linkmas-feature-visual {
        min-height: 200px;
    }

    .mock-tool-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CTA ENHANCEMENTS
   ============================================ */

.linkmas-cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.linkmas-cta-trust span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.linkmas-cta-trust i {
    color: rgba(255, 255, 255, 0.7);
}

.linkmas-cta-btn {
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.linkmas-cta-secondary {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.linkmas-cta-secondary:hover {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .linkmas-cta-trust {
        gap: 0.75rem;
    }

    .linkmas-cta-trust span {
        font-size: 0.8rem;
    }

    .linkmas-cta-btn {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* ============================================
   LINK EDITOR - DRAG AND DROP & INLINE EDITING
   ============================================ */

/* Drag and drop styles for link ordering */
.links-list-sortable {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list-sortable .link-item {
    position: relative;
    transition: all 0.2s ease;
    cursor: grab;
}

.links-list-sortable .link-item:hover {
    background: rgba(14, 165, 233, 0.05);
}

.links-list-sortable .link-item.dragging {
    opacity: 0.5;
    background: rgba(14, 165, 233, 0.1);
    cursor: grabbing;
}

.links-list-sortable .link-item.drag-over {
    border-top: 2px solid var(--da-sky-500);
}

/* Drag handle */
.drag-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.3);
    cursor: grab;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.drag-handle:hover {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.drag-handle:active {
    cursor: grabbing;
}

/* Inline editing */
.inline-edit-input {
    background: rgba(14, 165, 233, 0.1) !important;
    border: 1px solid var(--da-sky-500) !important;
    border-radius: 6px !important;
    padding: 0.375rem 0.5rem !important;
    font-size: 0.9rem !important;
    color: #fff !important;
    width: 100%;
    min-width: 150px;
}

.inline-edit-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2) !important;
}

.inline-edit-display {
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.inline-edit-display:hover {
    background: rgba(14, 165, 233, 0.1);
}

.inline-edit-display.editing {
    display: none;
}

/* Quick action buttons */
.quick-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.link-item:hover .quick-actions {
    opacity: 1;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.quick-action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.quick-action-btn.edit:hover {
    background: rgba(14, 165, 233, 0.2);
    color: var(--da-sky-400);
}

/* Reorder mode toggle */
.reorder-mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.reorder-mode-toggle:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    color: #fff;
}

.reorder-mode-toggle.active {
    background: rgba(14, 165, 233, 0.15);
    border-color: var(--da-sky-500);
    color: var(--da-sky-400);
}

/* Mobile-friendly drag */
@media (max-width: 768px) {
    .drag-handle {
        width: 40px;
        height: 40px;
    }
    
    .quick-actions {
        opacity: 1;
    }
    
    .reorder-mode-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Save order button */
.save-order-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    background: var(--da-sky-500);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.save-order-btn.visible {
    transform: translateY(0);
    opacity: 1;
}

.save-order-btn:hover {
    background: var(--da-sky-600);
    transform: translateY(-2px);
}

/* ============================================
   MOBILE-FIRST RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Better touch targets */
@media (max-width: 576px) {
    /* Increase button sizes for mobile */
    .btn {
        padding: 0.875rem 1.25rem !important;
        min-height: 44px;
    }
    
    /* Larger form inputs */
    .form-control, .form-select {
        padding: 0.75rem 1rem !important;
        min-height: 44px;
    }
    
    /* Card improvements */
    .card {
        border-radius: 16px !important;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    /* Table improvements for mobile */
    .table-custom {
        font-size: 0.875rem;
    }
    
    .table-custom td, .table-custom th {
        padding: 0.75rem 0.5rem !important;
    }
    
    /* Better spacing */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Navbar mobile */
    .navbar {
        padding: 0.75rem !important;
        margin: 0.5rem !important;
        border-radius: 12px !important;
    }
    
    /* Better modals on mobile */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 16px !important;
    }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 720px;
    }
}

/* Improved spacing system */
.mt-6 { margin-top: 4rem !important; }
.mb-6 { margin-bottom: 4rem !important; }
.pt-6 { padding-top: 4rem !important; }
.pb-6 { padding-bottom: 4rem !important; }

/* Better link styles */
a {
    transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
    text-decoration: none;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
a:focus {
    outline: 2px solid var(--da-sky-400);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.4s ease forwards;
}

.animate-slide-down {
    animation: slideDown 0.4s ease forwards;
}

/* Staggered animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Better scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(14, 165, 233, 0.5);
}

/* Better selection */
::selection {
    background: rgba(14, 165, 233, 0.3);
    color: #fff;
}

/* ============================================
   FEATURE ICON CIRCLES (features/about pages)
   ============================================ */

.feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-icon-circle i {
    color: #fff;
}

.feature-icon-sky   { background: linear-gradient(135deg, var(--da-sky-500), var(--da-sky-600)); box-shadow: 0 4px 15px rgba(14,165,233,0.3); }
.feature-icon-green { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 4px 15px rgba(34,197,94,0.3); }
.feature-icon-cyan  { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 4px 15px rgba(6,182,212,0.3); }
.feature-icon-amber { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 15px rgba(245,158,11,0.3); }
.feature-icon-red   { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 4px 15px rgba(239,68,68,0.3); }
.feature-icon-indigo{ background: linear-gradient(135deg, var(--da-indigo-500), var(--da-indigo-400)); box-shadow: 0 4px 15px rgba(99,102,241,0.3); }
.feature-icon-slate { background: linear-gradient(135deg, #475569, #334155); box-shadow: 0 4px 15px rgba(71,85,105,0.3); }

/* ============================================
   FEATURE ROWS (features page alternating layout)
   ============================================ */

.linkmas-feature-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.linkmas-feature-row:last-of-type {
    border-bottom: none;
}

.linkmas-feature-visual-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.linkmas-feature-visual-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(14, 165, 233, 0.2) !important;
}

/* ============================================
   FAQ ITEMS (pricing page)
   ============================================ */

.linkmas-faq-item {
    transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.linkmas-faq-item:hover {
    transform: translateX(4px) !important;
    border-color: rgba(14, 165, 233, 0.25) !important;
}

.linkmas-faq-item .card-title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
}

/* ============================================
   ABOUT PAGE - MISSION CARD
   ============================================ */

.linkmas-mission-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(99, 102, 241, 0.06)) !important;
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    border-radius: 24px !important;
}

/* ============================================
   ABOUT PAGE - WHY CARDS
   ============================================ */

.linkmas-why-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.linkmas-why-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(14, 165, 233, 0.25) !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25) !important;
}

.linkmas-why-card h5 {
    font-size: 1rem !important;
}

/* ============================================
   ABOUT PAGE - VALUE CARDS
   ============================================ */

.linkmas-value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.linkmas-value-card:hover {
    background: rgba(14, 165, 233, 0.06);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-4px);
}

.linkmas-value-icon {
    width: 72px;
    height: 72px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.linkmas-value-card:hover .linkmas-value-icon {
    background: rgba(14, 165, 233, 0.15);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

/* ============================================
   MOBILE - Features/About/Pricing pages
   ============================================ */

@media (max-width: 768px) {
    .linkmas-feature-row {
        padding-bottom: 1.5rem;
    }

    .linkmas-feature-visual-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .linkmas-mission-card {
        padding: 1.5rem !important;
    }

    .linkmas-value-card {
        padding: 1.25rem !important;
    }

    .feature-icon-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }

    .mb-6 {
        margin-bottom: 2.5rem !important;
    }
}

/* ============================================
   REDUCED MOTION (accessibility)
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Neutralize AOS scroll reveals so content is always visible */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Disable transform-based hover lifts */
    .btn-primary:hover,
    .card:hover {
        transform: none !important;
    }
}
