/**
 * =============================================
 * URL Shortener - Landing Page Styles
 * =============================================
 * 
 * Professional SaaS landing page styling
 * with animations, gradients, and modern UI.
 * 
 * @version 2.0.0
 */

/* =============================================
   Landing Page Variables
   ============================================= */
:root {
    --landing-primary: #4f46e5;
    --landing-primary-dark: #4338ca;
    --landing-primary-light: #818cf8;
    --landing-secondary: #06b6d4;
    --landing-accent: #f59e0b;
    --landing-gradient-1: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    --landing-gradient-2: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --landing-gradient-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --landing-dark: #0f0d1a;
    --landing-dark-card: #1a1730;
    --landing-dark-border: rgba(255,255,255,0.08);
    --landing-text: #e2e0f0;
    --landing-text-muted: #9891b8;
}

/* =============================================
   Scroll Animations
   ============================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* =============================================
   Landing Body & Typography Override
   ============================================= */
body.landing-page {
    background-color: var(--landing-dark);
    color: var(--landing-text);
    overflow-x: hidden;
}

body.landing-page h1,
body.landing-page h2,
body.landing-page h3,
body.landing-page h4,
body.landing-page h5,
body.landing-page h6 {
    color: #fff;
}

body.landing-page .text-muted {
    color: var(--landing-text-muted) !important;
}

/* =============================================
   Landing Navbar
   ============================================= */
body.landing-page .navbar {
    background: rgba(15, 13, 26, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--landing-dark-border);
    padding: 0.875rem 0;
    transition: all 0.3s ease;
}

body.landing-page .navbar.scrolled {
    background: rgba(15, 13, 26, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

body.landing-page .navbar-brand {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

/* =============================================
   Landing Hero
   ============================================= */
.landing-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: var(--landing-gradient-1);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-15px, 20px); }
    75% { transform: translate(25px, 15px); }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.landing-hero .hero-content {
    position: relative;
    z-index: 2;
}

.landing-hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 700px;
}

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

.landing-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--landing-text-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Landing Buttons */
.btn-landing-primary {
    background: var(--landing-gradient-2);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-landing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    color: #fff;
}

.btn-landing-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-landing-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Dashboard Mockup in Hero */
.hero-mockup {
    position: relative;
    z-index: 2;
}

.mockup-wrapper {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.mockup-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), transparent);
}

.mockup-browser-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-content {
    border-radius: 8px;
    overflow: hidden;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mockup-stat-card {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.mockup-stat-card .stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.mockup-stat-card .stat-label {
    font-size: 0.7rem;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.mockup-chart {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--landing-dark-border);
    border-radius: 10px;
    padding: 1rem;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

/* =============================================
   Social Proof / Trust Section
   ============================================= */
.trust-section {
    padding: 5rem 0;
    background: var(--landing-dark);
    border-bottom: 1px solid var(--landing-dark-border);
    position: relative;
}

.trust-counter {
    text-align: center;
}

.trust-counter .counter-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--landing-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-counter .counter-label {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--landing-primary-light);
}

/* =============================================
   Features Section
   ============================================= */
.features-section {
    padding: 6rem 0;
    background: var(--landing-dark);
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--landing-primary-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--landing-text-muted);
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.feature-card {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--landing-gradient-2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.feature-icon.icon-blue {
    background: rgba(79, 70, 229, 0.15);
    color: var(--landing-primary-light);
}

.feature-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.feature-icon.icon-amber {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.feature-icon.icon-green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.feature-icon.icon-rose {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.feature-icon.icon-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}

.feature-icon.icon-teal {
    background: rgba(20, 184, 166, 0.15);
    color: #2dd4bf;
}

.feature-icon.icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.feature-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =============================================
   How It Works
   ============================================= */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--landing-dark) 0%, #151229 100%);
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--landing-gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 32px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.4), rgba(6, 182, 212, 0.4));
}

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

/* =============================================
   Earn Money Section
   ============================================= */
.earn-section {
    padding: 6rem 0;
    background: var(--landing-dark);
    position: relative;
    overflow: hidden;
}

.earn-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.earn-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.earn-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.125rem;
}

.earn-feature-item h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.earn-feature-item p {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    margin: 0;
    line-height: 1.5;
}

.earn-flow-diagram {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step:hover {
    background: rgba(79, 70, 229, 0.08);
}

.flow-step-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.flow-step-icon.step-1 {
    background: rgba(79, 70, 229, 0.2);
    color: var(--landing-primary-light);
}
.flow-step-icon.step-2 {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}
.flow-step-icon.step-3 {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}
.flow-step-icon.step-4 {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.flow-arrow {
    text-align: center;
    margin: 0.25rem 0;
    color: var(--landing-text-muted);
    font-size: 1rem;
}

/* =============================================
   Dashboard Preview
   ============================================= */
.dashboard-preview-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #151229 0%, var(--landing-dark) 100%);
    position: relative;
}

.dashboard-mockup-large {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.dashboard-mockup-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), rgba(6, 182, 212, 0.5), transparent);
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid var(--landing-dark-border);
}

.dashboard-toolbar-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-toolbar-dot:nth-child(1) { background: #ef4444; }
.dashboard-toolbar-dot:nth-child(2) { background: #f59e0b; }
.dashboard-toolbar-dot:nth-child(3) { background: #22c55e; }

.dashboard-toolbar-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    margin-left: 0.5rem;
}

.dashboard-body {
    padding: 1.5rem;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--landing-dark-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.dash-stat .label {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.dash-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.dash-stat .change {
    font-size: 0.75rem;
    color: #4ade80;
    margin-top: 0.25rem;
}

.dashboard-chart-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.dash-chart-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--landing-dark-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.dash-chart-block h6 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-text-muted);
    margin-bottom: 1rem;
}

.mini-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100px;
}

.mini-chart-bars .bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--landing-gradient-2);
    transition: height 0.5s ease;
    min-height: 8px;
}

.mini-donut {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(
        var(--landing-primary-light) 0% 40%,
        #22d3ee 40% 65%,
        #fbbf24 65% 85%,
        #fb7185 85% 100%
    );
    margin: 0 auto;
    position: relative;
}

.mini-donut::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: var(--landing-dark-card);
}

@media (max-width: 991.98px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-chart-area {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing-section {
    padding: 6rem 0;
    background: var(--landing-dark);
    position: relative;
}

.pricing-card {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.15);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--landing-gradient-2);
    border-radius: 16px 16px 0 0;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--landing-gradient-2);
    color: #fff;
    padding: 0.375rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--landing-text-muted);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--landing-text-muted);
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--landing-text);
}

.pricing-features li i {
    font-size: 1rem;
    color: #4ade80;
    min-width: 20px;
}

.pricing-features li.disabled {
    color: var(--landing-text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--landing-text-muted);
}

.btn-pricing {
    width: 100%;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background: var(--landing-gradient-2);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    color: #fff;
}

.btn-pricing-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-pricing-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--landing-dark) 0%, #151229 100%);
}

.faq-item {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(79, 70, 229, 0.3);
}

.faq-item .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--landing-primary-light);
    background: transparent;
}

.faq-item .accordion-button::after {
    filter: invert(1) brightness(0.7);
}

.faq-item .accordion-button:not(.collapsed)::after {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(220deg);
}

.faq-item .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--landing-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =============================================
   Final CTA
   ============================================= */
.final-cta-section {
    padding: 6rem 0;
    background: var(--landing-gradient-1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.125rem;
    color: var(--landing-text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* =============================================
   Landing Footer
   ============================================= */
.landing-footer {
    background: #0a0818;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--landing-dark-border);
}

.landing-footer .footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.landing-footer .footer-desc {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.landing-footer h6 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--landing-text-muted);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--landing-text);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--landing-primary-light);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--landing-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
    color: var(--landing-primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--landing-dark-border);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    margin: 0;
}

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

.footer-bottom-links a {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--landing-primary-light);
}

/* =============================================
   URL Shortener Box (Landing Override)
   ============================================= */
body.landing-page .shortener-box {
    background: var(--landing-dark-card);
    border: 1px solid var(--landing-dark-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    margin: -3rem auto 0;
    position: relative;
    z-index: 10;
}

body.landing-page .shortener-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), transparent);
}

body.landing-page .shortener-box .form-control {
    background: rgba(255,255,255,0.05);
    border-color: var(--landing-dark-border);
    color: #fff;
}

body.landing-page .shortener-box .form-control::placeholder {
    color: var(--landing-text-muted);
}

body.landing-page .shortener-box .form-control:focus {
    border-color: var(--landing-primary-light);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    background: rgba(255,255,255,0.08);
}

body.landing-page .shortener-box .form-label {
    color: var(--landing-text);
}

body.landing-page .shortener-box .form-text {
    color: var(--landing-text-muted);
}

body.landing-page .shortener-box .input-group-text {
    background: rgba(255,255,255,0.05);
    border-color: var(--landing-dark-border);
    color: var(--landing-text-muted);
}

body.landing-page .shortener-box a.text-decoration-none {
    color: var(--landing-primary-light);
}

body.landing-page .shortener-box .btn-primary {
    background: var(--landing-gradient-2);
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

body.landing-page .shortener-box .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

body.landing-page .result-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--landing-dark-border);
}

body.landing-page .result-url {
    color: var(--landing-primary-light);
}

body.landing-page .result-box .border-top {
    border-color: var(--landing-dark-border) !important;
}

body.landing-page .qr-code-box {
    background: #fff;
    border-color: var(--landing-dark-border);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 991.98px) {
    .landing-hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .landing-hero h1 {
        font-size: 2.75rem;
    }

    .hero-mockup {
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .final-cta-section h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 767.98px) {
    .landing-hero {
        padding: 5rem 0 3rem;
    }

    .landing-hero h1 {
        font-size: 2.25rem;
    }

    .landing-hero .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-group .btn {
        text-align: center;
    }

    .trust-counter .counter-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .final-cta-section h2 {
        font-size: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    body.landing-page .shortener-box {
        margin-top: -2rem;
        padding: 1.5rem;
    }
}

/* =============================================
   Animated counter
   ============================================= */
.counter-animated {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* =============================================
   Pulse glow on hero
   ============================================= */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(79, 70, 229, 0.3); }
    50% { box-shadow: 0 0 40px rgba(79, 70, 229, 0.5); }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}
