/* ====================================================================
   C-Cloud Digital Documents Builder System (Antigravity)
   Powered by CPC Technology (https://www.gbt21c.com/)
   Modern Glassmorphism & Legal Design System
   ==================================================================== */

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

:root {
    --bg-main: #060913;
    --bg-surface: #0c1222;
    --bg-card: rgba(18, 26, 47, 0.7);
    --bg-card-hover: rgba(26, 38, 68, 0.85);
    --border-color: rgba(99, 102, 241, 0.18);
    --border-glow: rgba(6, 182, 212, 0.4);
    
    --primary: #06b6d4;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --accent-purple: #8b5cf6;
    --accent-indigo: #6366f1;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(6, 182, 212, 0.25);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(6, 9, 19, 0.75);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #040814;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.brand-info h1 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-badge {
    font-size: 10px;
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-ext {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link-ext:hover {
    color: #fff;
    border-color: rgba(6, 182, 212, 0.4);
}

/* Quick Tracker Search Bar in Navbar */
.nav-track-form {
    display: flex;
    align-items: center;
    background: rgba(18, 26, 47, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px 6px 4px 16px;
    transition: all 0.2s ease;
}

.nav-track-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

.nav-track-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    width: 170px;
}

.nav-track-input::placeholder {
    color: var(--text-dim);
}

.nav-track-btn {
    background: var(--primary);
    color: #060913;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-track-btn:hover {
    background: #38bdf8;
    transform: scale(1.03);
}

/* Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 60px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 10px 50px;
    position: relative;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #a5b4fc;
    margin-bottom: 20px;
}

.hero-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 720px;
    margin: 0 auto 32px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
}

.feature-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 30px;
}

.strip-item span.icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

/* Category Grid & Cards */
.section-header {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.card-item {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.15);
}

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

.card-item.recurring-card {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.45) 0%, rgba(18, 26, 47, 0.7) 100%);
}

.card-item.recurring-card:hover {
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6), 0 0 25px rgba(139, 92, 246, 0.25);
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.recurring-card .card-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border-color: rgba(139, 92, 246, 0.3);
}

.price-badge-box {
    text-align: right;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.billing-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.billing-badge.recurring-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #d8b4fe;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.card-summary {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.card-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zero-friction-tag {
    font-size: 11.5px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-create {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #030712;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-create:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
    color: #030712;
}

.recurring-card .btn-create {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    color: #fff;
}

.recurring-card .btn-create:hover {
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    color: #fff;
}

/* Builder Split Layout */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }
}

.panel-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-summary-pill {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-mono);
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    justify-content: space-between;
}

.form-label .req {
    color: var(--primary);
}

.form-control {
    background: rgba(12, 18, 34, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.25);
    background: rgba(15, 23, 42, 0.95);
}

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

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: #0f172a;
    color: #fff;
}

/* Secret Code Integrity Box */
.secret-integrity-banner {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.secret-title {
    font-size: 12px;
    font-weight: 700;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secret-code-display {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #6ee7b7;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px dashed rgba(16, 185, 129, 0.4);
}

/* Payment Breakdown & Checkout Button */
.checkout-card-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-top: 24px;
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.checkout-row.total {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #020617;
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

.payment-gateways-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--text-dim);
}

/* Legal Document Preview Layout */
.preview-sticky-wrap {
    position: sticky;
    top: 90px;
}

.legal-doc-container {
    background: #ffffff;
    color: #1e293b;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    font-family: 'Times New Roman', Times, serif, 'Plus Jakarta Sans';
    line-height: 1.55;
    position: relative;
    min-height: 600px;
    border: 1px solid #e2e8f0;
}

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 2px solid #0f172a;
    margin-bottom: 25px;
}

.doc-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-seal {
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: #00f2fe;
    font-weight: 900;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #38bdf8;
    font-size: 16px;
    letter-spacing: 1px;
}

.brand-text h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin: 0;
}

.brand-text p {
    font-size: 11px;
    color: #475569;
    margin: 2px 0 0;
}

.brand-link {
    font-size: 10px;
    color: #0284c7;
    font-family: var(--font-mono);
}

.doc-meta-badge {
    text-align: right;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: #475569;
    line-height: 1.6;
}

.doc-meta-badge .tracking-val {
    font-weight: 700;
    color: #0f172a;
}

.doc-meta-badge .secret-val {
    color: #0369a1;
    font-weight: 600;
}

.doc-meta-badge .status-active {
    color: #059669;
    font-weight: 700;
}

.doc-main-title {
    font-family: var(--font-heading);
    font-size: 20px;
    text-align: center;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 25px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #cbd5e1;
}

.doc-section {
    margin-bottom: 22px;
}

.doc-section h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.party-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.5;
}

.highlight-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px;
    font-size: 12px;
    white-space: pre-line;
    margin-bottom: 10px;
}

.highlight-box.alert-box {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.subscription-box {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin: 10px 0;
}

.doc-table th, .doc-table td {
    border: 1px solid #e2e8f0;
    padding: 7px 10px;
    text-align: left;
}

.doc-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
    width: 40%;
}

.financial-ledger th {
    width: 55%;
}

.ledger-highlight {
    background: #ecfdf5;
}

.net-sum {
    font-size: 14px;
    font-weight: 700;
    color: #047857;
}

.legal-clause {
    font-size: 11px;
    color: #64748b;
    font-style: italic;
    margin-top: 8px;
}

/* Signatures & Seal */
.doc-footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #0f172a;
}

.signature-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.sig-block {
    text-align: center;
    width: 30%;
}

.sig-line {
    border-bottom: 1.5px solid #0f172a;
    height: 35px;
    margin-bottom: 6px;
}

.sig-title {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
}

.sig-meta {
    font-size: 9.5px;
    color: #64748b;
    font-family: var(--font-mono);
}

.center-stamp {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.official-seal {
    width: 70px;
    height: 70px;
    border: 2px dashed #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.seal-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.seal-inner strong {
    font-size: 9px;
    color: #0284c7;
}

.seal-caption {
    font-size: 8.5px;
    color: #0284c7;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.doc-security-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    font-size: 10px;
    color: #64748b;
}

.security-meta code {
    font-family: var(--font-mono);
    color: #0f172a;
    background: #f1f5f9;
    padding: 1px 4px;
    border-radius: 3px;
}

.qr-box-simulated {
    width: 55px;
    height: 55px;
    border: 1px solid #94a3b8;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 8px;
    text-align: center;
    border-radius: 4px;
}

.qr-label {
    font-weight: 700;
    color: #0f172a;
}

.qr-code-txt {
    color: #0284c7;
    font-size: 7.5px;
}

/* Tracking / Dashboard Screen */
.tracking-hero {
    text-align: center;
    padding: 30px 10px 40px;
}

.track-input-card {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 8px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-glow);
}

.track-input-large {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 16px;
    padding: 12px 20px;
}

.track-btn-large {
    background: var(--primary-gradient);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    color: #040814;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.track-btn-large:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 18px rgba(0, 242, 254, 0.4);
}

.track-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 25px;
}

.action-buttons-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-action.primary {
    background: var(--primary);
    color: #040814;
    border: none;
}

.btn-action.primary:hover {
    background: #38bdf8;
    color: #040814;
}

/* Subscription Banner (For Payroll) */
.subscription-status-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sub-meta-pill {
    background: rgba(139, 92, 246, 0.2);
    color: #d8b4fe;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Payment Processing Screen */
.payment-box-wrapper {
    max-width: 580px;
    margin: 40px auto;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-glow);
}

.payment-title-box {
    text-align: center;
    margin-bottom: 26px;
}

.payment-icon-head {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background: rgba(6, 9, 19, 0.85);
    padding: 40px 0 25px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* PRINT MEDIA STYLES - A4 Pristine Output */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        background-image: none !important;
        font-size: 12pt;
    }

    .navbar, .footer, .btn-action, .action-buttons-group, .track-result-header, 
    .nav-track-form, .hero-section, .pricing-grid, .panel-card, .btn-checkout, 
    .checkout-card-box, .secret-integrity-banner, .builder-layout > .panel-card:first-child,
    .no-print {
        display: none !important;
    }

    .container, .builder-layout {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .legal-doc-container {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .preview-sticky-wrap {
        position: static !important;
    }
}
