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

:root {
    --bg-dark: #030408;
    --bg-card: rgba(10, 12, 22, 0.65);
    --bg-panel: rgba(14, 18, 36, 0.85);
    --primary: #00f2fe;
    --primary-glow: rgba(0, 242, 254, 0.35);
    --secondary: #4facfe;
    --accent: #8a2be2;
    --accent-glow: rgba(138, 43, 226, 0.35);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(0, 242, 254, 0.25);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 35%, #8a2be2 100%);
    --btn-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --card-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.8);
    --glow-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
    --font-outfit: 'Outfit', sans-serif;
    --font-pjs: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-pjs);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glowing Orbs */
.bg-glow-1, .bg-glow-2 {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(180px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.22;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -250px;
    right: -100px;
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.bg-glow-2 {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -250px;
    left: -100px;
    animation: orbFloat 30s infinite alternate-reverse ease-in-out;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

/* Preloader Screen */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
    visibility: visible;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo-wrap {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-gradient);
    filter: blur(25px);
    opacity: 0.6;
    animation: pulseGlow 2s infinite alternate ease-in-out;
}

.preloader-logo {
    width: 72px;
    height: 72px;
    background: var(--bg-panel);
    border: 1px solid var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--glow-shadow);
    z-index: 10;
    animation: pulseScale 2s infinite alternate ease-in-out;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulseGlow {
    0% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 0.8; }
}
@keyframes pulseScale {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}

/* Typography & Layout */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 4, 8, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-panel);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
    border-color: var(--primary);
    box-shadow: var(--glow-shadow);
}

.logo:hover .logo-icon svg {
    transform: rotate(180deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover, nav a.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--primary) !important;
    padding: 0.65rem 1.6rem;
    border-radius: 30px;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.9rem !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-cta:hover {
    background: var(--primary);
    color: #030408 !important;
    border-color: var(--primary);
    box-shadow: var(--glow-shadow);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem 0;
    position: relative;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 242, 254, 0.07);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 0.5rem 1.4rem;
    border-radius: 30px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-family: var(--font-outfit);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 25px rgba(0, 242, 254, 0.2));
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem 2.4rem;
    border-radius: 30px;
    font-family: var(--font-outfit);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--btn-gradient);
    color: #030408;
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -5px rgba(0, 242, 254, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-4px);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 7rem;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 35px -10px rgba(0, 242, 254, 0.15);
}

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

.stat-number {
    font-size: 3.25rem;
    font-family: var(--font-outfit);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    color: var(--primary);
    font-family: var(--font-outfit);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    display: block;
}

.section-header h2 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

/* Showcase Cards (Extensions / Software) */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(138, 43, 226, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 25px 45px -15px rgba(0, 242, 254, 0.18);
}

.card:hover::before {
    background: var(--accent-gradient);
}

.card-header {
    padding: 1.75rem 1.75rem 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.badge {
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-active {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.badge-review {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-soon {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-premium {
    background: rgba(138, 43, 226, 0.08);
    color: #a855f7;
    border: 1px solid rgba(138, 43, 226, 0.25);
}

.badge-free {
    background: rgba(148, 163, 184, 0.08);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.card-icon-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.card-icon-placeholder svg {
    width: 26px;
    height: 26px;
}

.card-body {
    padding: 0 1.75rem 1.75rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.feature-list li svg {
    color: var(--primary);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.card-footer {
    padding: 1.75rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
}

.price-display {
    font-family: var(--font-outfit);
}

.price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.card-actions {
    display: flex;
    gap: 0.85rem;
}

.card-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.card-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow-shadow);
    background: rgba(0, 242, 254, 0.03);
}

.card-btn.primary {
    background: var(--primary);
    color: #030408;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.card-btn.primary:hover {
    color: #030408;
    transform: scale(1.08);
}

/* Custom Request Section */
.request-section {
    padding: 8rem 0;
    position: relative;
}

.request-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 36px;
    padding: 4rem;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(24px);
    position: relative;
    overflow: hidden;
}

.request-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(120px);
    bottom: -100px;
    right: -100px;
    opacity: 0.15;
    pointer-events: none;
}

.request-info h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.request-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.request-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.request-perks li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.request-perks li svg {
    color: var(--primary);
    width: 22px;
    height: 22px;
}

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

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    background: rgba(3, 4, 8, 0.65);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    color: var(--text-primary);
    font-family: var(--font-pjs);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    background: rgba(3, 4, 8, 0.85);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.4rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

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

/* Modal Windows (Checkout and Details) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 8, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 36px;
    width: 100%;
    max-width: 600px;
    padding: 3.5rem;
    box-shadow: var(--card-shadow);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Product Detail Large Modal Style */
.modal-content-lg {
    max-width: 900px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 3rem;
}

.detail-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--glow-shadow);
}

.detail-icon-box svg {
    width: 38px;
    height: 38px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.detail-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.detail-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.detail-features-title {
    font-family: var(--font-outfit);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.detail-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.detail-features-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.detail-features-grid li svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.detail-action-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-btn-row {
    display: flex;
    gap: 1rem;
}

.detail-btn-row .btn {
    flex: 1;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
}

.modal-close {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-primary);
    border-color: var(--primary);
    box-shadow: var(--glow-shadow);
}

.modal-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
}

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

.pricing-tier {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.pricing-tier:hover {
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-tier.selected {
    border-color: var(--primary);
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.pricing-tier h4 {
    font-family: var(--font-outfit);
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.pricing-tier .price {
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.license-success-box {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.license-key-wrapper {
    display: flex;
    align-items: center;
    background: rgba(3, 4, 8, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    margin: 1.25rem 0;
    justify-content: space-between;
}

.license-key-text {
    font-family: monospace;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--card-shadow);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3000;
    backdrop-filter: blur(16px);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.15);
}

.toast-success svg {
    color: #10b981;
}

.toast-error {
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 5px 25px rgba(239, 68, 68, 0.15);
}

.toast-error svg {
    color: #ef4444;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3rem 0;
    background: rgba(3, 4, 8, 0.95);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-about p {
    color: var(--text-secondary);
    margin-top: 1.25rem;
    max-width: 360px;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-outfit);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

/* Success Form Overlay */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-panel);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Admin Specific Panel Grid & Layout Elements */
.admin-body {
    background: #020306;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 2.5rem;
    background: rgba(6, 8, 16, 0.85);
    backdrop-filter: blur(12px);
}

.admin-container {
    padding: 4rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

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

.admin-metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.admin-metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.admin-metric-val {
    font-size: 2rem;
    font-family: var(--font-outfit);
    font-weight: 800;
}

.admin-metric-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.admin-tabs {
    display: flex;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.admin-tab {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 1.75rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.admin-tab.active {
    color: var(--primary);
}

.admin-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.admin-panel-section {
    display: none;
}

.admin-panel-section.active {
    display: block;
}

/* Admin Dashboard Table */
.admin-table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.01);
    padding: 1.4rem 1.75rem;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 1.4rem 1.75rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.action-btn-sm {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-family: var(--font-outfit);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn-sm:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.action-btn-sm.edit:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 242, 254, 0.05);
}

.action-btn-sm.approve {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.action-btn-sm.approve:hover {
    background: #10b981;
    color: #030408;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Rules */
@media(max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .request-card {
        padding: 2.5rem 1.75rem;
    }
    .admin-grid-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}
