/* Reset đơn giản */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #141e30 0, #0c0c0c 45%, #000 100%);
    color: #f9fafb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to right, rgba(15,23,42,0.95), rgba(15,23,42,0.4));
    border-bottom: 1px solid rgba(148,163,184,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 0.9rem;
    background: conic-gradient(from 180deg, #22d3ee, #6366f1, #ec4899, #22d3ee);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 24px rgba(56,189,248,0.75);
}

.logo-text {
    font-size: 0.95rem;
}

.nav-desktop {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.nav-desktop a {
    position: relative;
    padding-bottom: 0.2rem;
    color: #e5e7eb;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #22d3ee, #6366f1);
    transition: width 0.25s ease;
    border-radius: 999px;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.btn-primary,
.btn-outline {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(to right, #22d3ee, #6366f1);
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(79,70,229,0.4);
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: rgba(148,163,184,0.5);
    color: #e5e7eb;
    background: rgba(15,23,42,0.7);
}

.btn-outline:hover {
    border-color: #6366f1;
    color: #e0f2fe;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.4);
    background: rgba(15,23,42,0.75);
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 18px;
    background: #e5e7eb;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-mobile {
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
    background: radial-gradient(circle at top left, #1e293b 0, #020617 55%);
    padding: 5rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 16px 0 30px rgba(15,23,42,0.9);
    z-index: 40;
}

.nav-mobile a {
    font-size: 0.95rem;
    color: #e5e7eb;
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 30;
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.page {
    padding: 2.2rem 0 3.5rem;
    flex: 1;
}

/* Trang chủ */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.75rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
    font-size: 0.75rem;
    color: #e5e7eb;
    margin-bottom: 0.9rem;
    background: rgba(15,23,42,0.7);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.9);
}

.hero-title {
    font-size: clamp(2.1rem, 3.2vw + 1.4rem, 3.4rem);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}

.hero-title span {
    background: linear-gradient(to right, #22d3ee, #6366f1, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 0.97rem;
    color: #9ca3af;
    max-width: 34rem;
    line-height: 1.7;
    margin-bottom: 1.45rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-metrics {
    display: flex;
    gap: 1.75rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-metrics strong {
    display: block;
    font-size: 1.25rem;
    color: #e5e7eb;
}

.hero-card {
    position: relative;
    border-radius: 1.65rem;
    padding: 1.6rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(56,189,248,0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(79,70,229,0.3), transparent 55%),
                linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
    border: 1px solid rgba(148,163,184,0.5);
    box-shadow: 0 24px 70px rgba(15,23,42,0.95);
    overflow: hidden;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.hero-chip {
    padding: 0.6rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(148,163,184,0.4);
    font-size: 0.8rem;
    background: rgba(15,23,42,0.8);
}

.hero-chip strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.hero-glow {
    position: absolute;
    inset: auto -40% -40% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(56,189,248,0.3), transparent 60%);
    opacity: 0.9;
    filter: blur(8px);
}

/* Cards & sections */
.section {
    margin-top: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 0.8rem;
    color: #9ca3af;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.card {
    border-radius: 1.1rem;
    padding: 1rem;
    background: radial-gradient(circle at top, rgba(30,64,175,0.55), rgba(15,23,42,0.98));
    border: 1px solid rgba(148,163,184,0.4);
    box-shadow: 0 12px 40px rgba(15,23,42,0.9);
    position: relative;
    overflow: hidden;
}

.card-tag {
    font-size: 0.7rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.card-title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.card-price {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.card-price span {
    font-size: 0.8rem;
    color: #9ca3af;
}

.card-features {
    font-size: 0.78rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.card-features li {
    margin-bottom: 0.18rem;
}

.pill {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    font-size: 0.7rem;
    color: #e5e7eb;
}

/* Form */
.card-form {
    max-width: 460px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 0.85rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: #d1d5db;
}

.form-control {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(148,163,184,0.5);
    background: rgba(15,23,42,0.85);
    color: #e5e7eb;
    font-size: 0.85rem;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99,102,241,0.7);
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-row > * {
    flex: 1;
}

.form-help {
    font-size: 0.76rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.form-error {
    margin-bottom: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.6rem;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.5);
    color: #fecaca;
    font-size: 0.8rem;
}

.form-success {
    margin-bottom: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.6rem;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.4);
    color: #bbf7d0;
    font-size: 0.8rem;
}

.table {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.table th,
.table td {
    padding: 0.55rem 0.6rem;
    text-align: left;
}

.table thead {
    background: rgba(15,23,42,0.95);
}

.table tbody tr:nth-child(even) {
    background: rgba(15,23,42,0.82);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.7rem;
}

.badge-success {
    background: rgba(22,163,74,0.15);
    color: #bbf7d0;
}

.badge-warning {
    background: rgba(245,158,11,0.18);
    color: #fed7aa;
}

.badge-danger {
    background: rgba(239,68,68,0.16);
    color: #fecaca;
}

.footer {
    border-top: 1px solid rgba(148,163,184,0.3);
    padding: 1.6rem 0 1.1rem;
    background: linear-gradient(to top, rgba(15,23,42,0.98), rgba(15,23,42,0.92));
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.footer-text {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.45rem;
    max-width: 18rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.footer-col a {
    display: block;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: inline-flex;
    }
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-card {
        margin-top: 1.2rem;
    }
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
    .footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding-inline: 0.4rem;
    }
    .page {
        padding-top: 1.6rem;
    }
}

/* Pricing Pages Styles */
.pricing-hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.pricing-hero-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.pricing-section {
    padding: 2rem 0 4rem;
}

.pricing-message {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.pricing-card-popular {
    border: 2px solid #6366f1;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 1));
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
    transform: scale(1.05);
}

.pricing-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.pricing-card-price {
    margin-bottom: 1.5rem;
}

.pricing-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to right, #22d3ee, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price-unit {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 400;
}

.pricing-price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pricing-price-old {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: line-through;
}

.pricing-discount {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.pricing-spec-item {
    text-align: center;
    font-size: 0.875rem;
    color: #d1d5db;
}

.pricing-spec-item strong {
    display: block;
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #22c55e;
}

.pricing-card-form {
    margin-bottom: 1rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.pricing-btn-primary {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.pricing-btn-outline {
    background: transparent;
    color: #e5e7eb;
    border: 2px solid rgba(148, 163, 184, 0.4);
}

.pricing-btn-outline:hover {
    border-color: #6366f1;
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
}

.pricing-card-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.pricing-card-note {
    font-size: 0.75rem;
    color: #6b7280;
}

.pricing-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.pricing-info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.pricing-info-icon {
    width: 18px;
    height: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

/* Responsive Pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-hero {
        padding: 2rem 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    
    .pricing-price-amount {
        font-size: 2rem;
    }
    
    .pricing-specs {
        grid-template-columns: 1fr;
    }
}

/* Home Page Styles */
.home-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.home-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.home-hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.6), transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.home-hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.home-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.home-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.home-hero-gradient {
    background: linear-gradient(to right, #22d3ee, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9ca3af;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.home-hero-btn-primary,
.home-hero-btn-outline {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-hero-btn-primary {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.home-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.home-hero-btn-outline {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(148, 163, 184, 0.3);
    color: #e5e7eb;
    backdrop-filter: blur(10px);
}

.home-hero-btn-outline:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
}

.home-hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.home-metric-item {
    text-align: center;
}

.home-metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #22d3ee, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.home-metric-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.home-features {
    padding: 4rem 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.home-feature-card {
    padding: 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.home-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.home-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.2));
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-feature-icon svg {
    width: 100%;
    height: 100%;
}

.home-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #f9fafb;
}

.home-feature-desc {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.home-pricing-section {
    padding: 4rem 0;
}

.home-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.home-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.home-section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.6;
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-pricing-card {
    position: relative;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.home-pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.home-pricing-card-popular {
    border: 2px solid #6366f1;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 1));
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
    transform: scale(1.05);
}

.home-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.home-pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.home-pricing-desc {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.home-pricing-price {
    margin-bottom: 1.5rem;
}

.home-pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #22d3ee, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-pricing-unit {
    font-size: 1rem;
    color: #9ca3af;
    margin-left: 0.25rem;
}

.home-pricing-specs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    flex-wrap: wrap;
}

.home-pricing-specs > div {
    font-size: 0.875rem;
    color: #d1d5db;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 0.5rem;
}

.home-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.home-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.home-pricing-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #22c55e;
}

.home-pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    background: transparent;
    color: #e5e7eb;
    border: 2px solid rgba(148, 163, 184, 0.4);
}

.home-pricing-btn:hover {
    border-color: #6366f1;
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
}

.home-pricing-btn-primary {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.home-pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
    background: linear-gradient(to right, #7c3aed, #a855f7);
}

/* Responsive Home */
@media (max-width: 900px) {
    .home-hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .home-hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .home-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .home-pricing-card-popular {
        transform: scale(1);
    }
    
    .home-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-hero-actions {
        flex-direction: column;
    }
    
    .home-hero-btn-primary,
    .home-hero-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .home-hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .home-pricing-amount {
        font-size: 2rem;
    }
}

/* Bank Accounts Styles */
.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bank-account-card {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
}

.bank-account-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.bank-info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 0.5rem;
}

.bank-info-label {
    font-size: 0.875rem;
    color: #9ca3af;
    min-width: 140px;
}

.bank-info-value {
    flex: 1;
    font-weight: 600;
    color: #e5e7eb;
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

/* Invoices Styles */
.invoices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.invoice-card {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.invoice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.invoice-card.invoice-overdue {
    border-color: #ef4444;
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.1), rgba(15, 23, 42, 0.98));
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.invoice-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #f9fafb;
}

.invoice-type {
    font-size: 0.875rem;
    color: #9ca3af;
}

.invoice-details {
    margin-bottom: 1.5rem;
}

.invoice-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.invoice-label {
    color: #9ca3af;
}

.invoice-value {
    color: #e5e7eb;
    font-weight: 500;
}

.invoice-amount {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #22d3ee, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.invoice-overdue-text {
    color: #ef4444 !important;
    font-weight: 700;
}

.invoice-form {
    margin-top: 1rem;
}

.invoice-pay-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.invoice-pay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.invoice-pay-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.invoice-warning {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #f59e0b;
    text-align: center;
}

.invoice-warning a {
    color: #6366f1;
    text-decoration: underline;
}

/* Admin Styles */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #22d3ee, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.admin-form {
    margin-top: 1rem;
}

.form-inline {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.form-inline .form-control {
    flex: 1;
    min-width: 200px;
}

.table-responsive {
    overflow-x: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .bank-accounts-grid,
    .invoices-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-inline .form-control {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .bank-info-row {
        flex-wrap: wrap;
    }
    
    .bank-info-label {
        min-width: 100%;
        margin-bottom: 0.25rem;
    }
}
