/* ===================================================================
   SCANITIX - Premium SaaS Landing Page
   Minimal Industrial Design
   =================================================================== */

/* ============================
   CSS VARIABLES
   ============================ */
:root {
    /* Core palette - Deep navy + clean white */
    --bg: #0a0f1a;
    --bg-secondary: #111827;
    --bg-elevated: #1a2332;
    --bg-card: #1e293b;

    /* Text - High contrast */
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #9ca3af;

    /* Accent - Electric blue */
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.25);

    /* Status */
    --success: #10b981;
    --warning: #f59e0b;

    /* Surface */
    --border: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(148, 163, 184, 0.2);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.2s;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

/* ============================
   UTILITIES
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.text-accent {
    color: var(--accent);
}

.d-none {
    display: none !important;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn--ghost:hover {
    color: var(--text);
}

.btn--white {
    background: white;
    color: var(--bg);
}

.btn--white:hover {
    background: #f1f5f9;
}

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.btn__icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
    transition: all var(--duration) var(--ease);
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}

.nav.scrolled {
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.nav__logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease);
}

.nav__link:hover {
    color: var(--text);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 6rem 1.5rem 2rem;
}

.mobile-nav__link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
}

.mobile-nav__divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }

    .nav__links, .nav__actions {
        display: none;
    }

    .nav__toggle {
        display: flex;
        flex-shrink: 0;
        order: 1;
    }

    .nav__logo {
        flex-shrink: 0;
        order: 2;
    }

    .nav__inner {
        gap: 1rem;
    }

    .mobile-nav {
        display: block;
    }

    /* Mobile nav link - Sign In styling */
    .mobile-nav .mobile-nav__link--sign-in {
        color: var(--accent);
        font-weight: 600;
    }

    /* Ensure adequate touch targets on mobile */
    .mobile-nav__link {
        padding: 0.75rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .mobile-nav .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav__logo span {
        display: none;
    }

    .nav__logo-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 576px) {
    /* Adjust hero section for very small screens */
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    /* Mobile pricing grid - single column */
    .pricing__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.08;
    top: -200px;
    right: -100px;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    opacity: 0.06;
    bottom: -100px;
    left: -100px;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--accent);
    position: relative;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease);
}

.hero__action-link:hover {
    color: var(--accent);
}

.hero__action-link i {
    font-size: 1rem;
}

.hero__action-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

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

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__device {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
}

.hero__device-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

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

.hero__device-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
}

.hero__device-dots span:first-child { background: #ef4444; opacity: 1; }
.hero__device-dots span:nth-child(2) { background: #f59e0b; opacity: 1; }
.hero__device-dots span:nth-child(3) { background: #22c55e; opacity: 1; }

.hero__device-url {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
}

.hero__device-screen {
    padding: 1.5rem;
}

.hero__qr-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.hero__qr-main {
    width: 140px;
    height: 140px;
}

.hero__qr-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero__chart {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.hero__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 0.5rem;
}

.hero__chart-bar {
    flex: 1;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 3px 3px 0 0;
    min-height: 8px;
    --h: 50%;
    height: var(--h);
}

.hero__chart-bar--active {
    opacity: 1;
    background: linear-gradient(to top, var(--accent), var(--accent-hover));
}

.hero__chart-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating elements */
.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero__float svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.hero__float-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--success);
}

.hero__float-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.hero__float--1 {
    top: 15%;
    right: -5%;
    animation: float 6s ease-in-out infinite;
}

.hero__float--2 {
    bottom: 20%;
    left: -8%;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }
}

/* ============================
   TRUST BAR
   ============================ */
.trust {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.trust__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust__label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust__logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.trust__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust__logo i {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ============================
   FEATURES
   ============================ */
.features {
    padding: 6rem 1.5rem;
}

.features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.features__header .section-sub {
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--duration) var(--ease);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card--large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card__visual {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.feature-card__qr-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius-md);
}

.feature-card__qr-demo svg {
    width: 80px;
    height: 80px;
}

.feature-card__qr-demo span {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-card--large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

/* ============================
   SOLUTIONS
   ============================ */
.solutions {
    padding: 6rem 1.5rem;
    background: var(--bg-secondary);
}

.solutions__header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions__header .section-sub {
    margin: 0 auto;
}

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

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--duration) var(--ease);
}

.solution-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-glow);
}

.solution-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.solution-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: var(--accent);
}

.solution-card__badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.solution-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.solution-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.solution-card__features li {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}

.solution-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

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

@media (max-width: 640px) {
    .solutions__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   PRICING
   ============================ */
.pricing {
    padding: 6rem 1.5rem;
}

.pricing__header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing__header .section-sub {
    margin: 0 auto;
}

.pricing__toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.pricing__toggle-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing__toggle-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.pricing__toggle-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.pricing__toggle-badge {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all var(--duration) var(--ease);
}

.price-card:hover {
    border-color: var(--border-hover);
}

.price-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-glow);
    position: relative;
}

.price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
}

.price-card__popular {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--success);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card__currency {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-card__savings {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-card__amount {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
}

.price-card__period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.price-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

/* Style the Bootstrap-style feature rows from plans_plan_content.php */
.price-card__features > div {
    padding: 0;
}

.price-card__features > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.price-card__features > li:last-child {
    border-bottom: none;
}

.price-card__features > li > span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.price-card__features > li > span > strong {
    color: var(--text);
    font-weight: 600;
}

.price-card__features > li > .fa-check {
    color: var(--success);
    font-size: 0.75rem;
}

.price-card__features > li > .fa-times {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.price-card__features .text-muted {
    color: var(--text-muted);
}

.price-card__features .text-gray-500 {
    color: var(--text-muted);
    font-size: 0.7rem;
}

@media (max-width: 1024px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

/* ============================
   CTA
   ============================ */
.cta {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
}

.cta__pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
}

.cta__content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta__title .text-accent {
    color: white;
}

.cta__text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 4rem 1.5rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer__logo-icon {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.footer__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease);
}

.footer__link:hover {
    color: var(--text);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer__copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }
}

/* ============================
   GENERATOR PAGES
   ============================ */
.generator-main {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

.generator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
}

.generator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.generator-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: color var(--duration) var(--ease);
}

.generator-back:hover {
    color: var(--text);
}

.generator-back i {
    font-size: 0.75rem;
}

.generator-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.generator-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.generator-content {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem;
    align-items: flex-start;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.generator-card,
.preview-container {
    flex: 1 1 calc(50% - 1rem) !important;
    min-width: 0;
    max-width: 50%;
    box-sizing: border-box;
}

.generator-card-flex {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .generator-content {
        flex-direction: column;
    }

    .generator-card,
    .preview-container {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Generator Cards */
.generator-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.generator-card:hover {
    border-color: var(--border-hover);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    transition: border-color var(--duration) var(--ease);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.custom-select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    cursor: pointer;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: none;
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Range Input */
.form-control-range {
    width: 100%;
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.form-control-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
}

/* Custom Switch - use Bootstrap's default switch markup */
.custom-control-label::before {
    background-color: var(--bg);
    border: 1px solid var(--border);
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Print visibility */
.d-print-none {
    display: var(--display, block);
}

/* Collapsible Sections */
.collapse-container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.5rem;
}

/* Primary Button */
.btn-primary {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
    width: 100%;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

/* Code Type Buttons */
.type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.type-btn {
    padding: 0.625rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.type-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.type-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* QR/Barcode Preview */
.preview-container {
    flex: 1 1 calc(50% - 1rem) !important;
    min-width: 0;
    max-width: 50%;
    box-sizing: border-box;
    width: 100%;
    position: sticky;
    top: 100px;
}

.preview-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.preview-card-flex {
    display: flex;
    flex-direction: column;
}

.preview-image {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image img,
.preview-image svg {
    max-width: 100%;
    height: auto;
}

.preview-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.preview-btn {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preview-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.preview-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.preview-btn-primary:hover {
    background: var(--accent-hover);
}

/* Download Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    display: none;
    z-index: 10;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

.dropdown-item:hover {
    background: var(--bg-elevated);
    color: var(--text);
}

/* Alert Info */
.info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.info-text i {
    font-size: 0.75rem;
}

/* Character Counter */
.char-counter {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.25rem;
}

/* Radio/Checkbox Toggle Group */
.btn-group-toggle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
}

.btn-group-toggle label.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    font-weight: 500;
}

.btn-group-toggle label.btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.btn-group-toggle label.btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-group-toggle input {
    display: none;
}

.preview-label {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-label--none {
    color: var(--text-muted);
}

/* Color Picker */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.color-preview {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    cursor: pointer;
}

/* Extra Content */
.extra-content {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Frame Option (used inside Bootstrap btn-group-toggle) */
.frame-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    min-height: 120px;
    min-width: 100px;
    flex-shrink: 0;
}

.frame-option:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.frame-option.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.frame-option svg {
    width: 70px !important;
    height: auto !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
}

.frame-option input {
    display: none;
}

/* Form text */
.form-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Collapsible sections styling */
.collapse-container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.5rem;
}

/* Color Picker Styling */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pickr {
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    padding: 0.5rem !important;
}

.pickr .pcr-button {
    border-radius: var(--radius-sm) !important;
    box-shadow: none !important;
}

.pickr .pcr-panel {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
}

.pickr .pcr-panel .pcr-head {
    background: var(--bg-elevated) !important;
}

.pickr .pcr-panel .pcr-save,
.pickr .pcr-panel .pcr-clear {
    background: var(--accent) !important;
    border-radius: var(--radius-sm) !important;
}

/* Make color picker visible - it creates a separate div after the hidden input */
.form-group [data-color-picker] + div.pickr {
    display: block !important;
    width: 100%;
}

/* Custom switch styling for dark theme */
.custom-switch .custom-control-label::before {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border);
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--accent);
    border-color: var(--accent);
}

.custom-switch .custom-control-label::after {
    background-color: var(--text-muted);
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: white;
}

/* Input group styling */
.input-group {
    display: flex;
    align-items: stretch;
}

.input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: none;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Collapse sections spacing */
.btn-collapse {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    margin: 1.5rem 0 1rem;
}

.btn-collapse:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.btn-collapse[aria-expanded="true"] {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--text);
}

/* Collapse content styling */
.collapse {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}

/* Custom select dropdown */
.custom-select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.custom-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.custom-select option {
    background: var(--bg-card);
    color: var(--text);
}

/* Preview image white background fix */
.preview-image {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image img,
.preview-image svg {
    max-width: 100%;
    height: auto;
}

/* ============================
   AUTH PAGES
   ============================ */
.auth-body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-nav {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.auth-nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.auth-nav__logo-icon {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.auth-nav__toggle-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.auth-nav__toggle-link span {
    color: var(--accent);
    font-weight: 500;
}

.auth-nav__toggle-link:hover span {
    color: var(--accent-hover);
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.auth-remember-row {
    margin-bottom: 0.5rem;
}

.auth-footer__links {
    display: flex;
    gap: 1.5rem;
}

.auth-footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

.auth-footer__links a:hover {
    color: var(--text);
}

.auth-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.auth-card h1.h5 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: var(--text);
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: var(--text);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.auth-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.auth-form .form-control::placeholder {
    color: var(--text-muted);
}

.auth-form .form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.auth-form .form-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

.auth-form .custom-control {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.auth-form .custom-control-input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.auth-form .custom-control-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.auth-form .custom-control-label a {
    color: var(--accent);
    text-decoration: none;
}

.auth-form .custom-control-label a:hover {
    color: var(--accent-hover);
}

.auth-form .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    margin-top: 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    gap: 0.5rem;
}

.auth-form .btn-primary:hover {
    background: var(--accent-hover);
}

.auth-form hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}

.auth-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
}

.auth-social-btn:hover {
    border-color: var(--border-hover);
    background: var(--bg-elevated);
    color: var(--text);
}

.auth-social-btn img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.auth-footer-text {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.auth-footer-text a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}

.auth-footer-text a:hover {
    color: var(--accent-hover);
}

.alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent);
}

.alert-danger, .alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.75rem 1.25rem;
    }

    .auth-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
}
