/* Common Page Layout Styles */


/* --- Styles from admin.html --- */


        

        

        /* LOGIN */
        .login-wrapper { display: flex; align-items: center; justify-content: center; height: 100vh; background: var(--bg-main); }
        .login-card { background: var(--bg-card); padding: 2.5rem; border-radius: 1rem; border: 1px solid var(--border-color); width: 100%; max-width: 420px; text-align: center; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
        .input-group { margin: 1.5rem 0; }
        input { width: 100%; padding: 0.75rem 1rem; background: #ffffff; border: 1px solid var(--border-color); border-radius: 0.5rem; color: var(--text-primary); font-size: 1rem; outline: none; transition: border-color 0.2s; }
        input:focus { border-color: var(--primary-color); }
        select { width: 100%; padding: 0.75rem 1rem; background: #ffffff; border: 1px solid var(--border-color); border-radius: 0.5rem; color: var(--text-primary); font-size: 0.9rem; outline: none; }

        /* BUTTONS */
        .btn { padding: 0.75rem 1.25rem; border: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: all 0.15s; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 6px; }
        .btn-full { width: 100%; justify-content: center; }
        .btn-primary { background: var(--primary-color); color: var(--text-primary); }
        .btn-primary:hover { background: #7c3aed; transform: translateY(-1px); }
        .btn-danger { background: rgba(239,68,68,0.1); color: var(--danger); border: 1px solid var(--danger); }
        .btn-danger:hover { background: var(--danger); color: var(--text-primary); }
        .btn-success { background: rgba(16,185,129,0.1); color: var(--success); border: 1px solid var(--success); }
        .btn-success:hover { background: var(--success); color: var(--text-primary); }
        .btn-warning { background: rgba(245,158,11,0.1); color: var(--warning); border: 1px solid var(--warning); }
        .btn-warning:hover { background: var(--warning); color: #000; }
        .btn-ghost { background: rgba(0,0,0,0.02); color: var(--text-secondary); border: 1px solid var(--border-color); }
        .btn-ghost:hover { background: rgba(0,0,0,0.05); color: var(--text-primary); }
        .btn-sm { padding: 0.35rem 0.75rem; font-size: 0.8rem; }

        /* LAYOUT */
        .app-layout { display: grid; grid-template-rows: auto 1fr; height: 100vh; max-width: 1500px; margin: 0 auto; }
        header { padding: 1rem 2rem; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: #ffffff; position: sticky; top: 0; z-index: 10; }
        .brand { font-weight: 700; font-size: 1.25rem; }
        .brand span { color: var(--primary-color); }
        nav { display: flex; gap: 0.5rem; }
        .nav-item { padding: 0.5rem 1rem; color: var(--text-secondary); cursor: pointer; border-radius: 0.5rem; font-weight: 500; font-size: 0.9rem; transition: all 0.15s; }
        .nav-item:hover { color: var(--text-primary); background: rgba(0,0,0,0.02); }
        .nav-item.active { color: var(--primary-color); background: rgba(59,130,246,0.1); }
        main { padding: 2rem; overflow-y: auto; }

        /* CARDS */
        .card { background: var(--bg-card); padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--border-color); }
        .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
        .card-title { font-size: 1rem; font-weight: 600; }

        /* STATS GRID */
        .grid-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
        .stat-card { background: var(--bg-card); padding: 1.25rem 1.5rem; border-radius: 0.875rem; border: 1px solid var(--border-color); }
        .stat-label { color: var(--text-secondary); font-size: 0.8rem; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
        .stat-value { font-size: 2rem; font-weight: 700; }
        .stat-sub { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.25rem; }

        /* STATUS */
        .status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
        .dot-green { background: var(--success); box-shadow: 0 0 8px rgba(16,185,129,0.4); }
        .dot-red { background: var(--danger); }
        .status-badge { padding: 3px 10px; border-radius: 99px; font-size: 0.72rem; font-weight: 600; display: inline-block; }
        .badge-active { background: rgba(16,185,129,0.12); color: var(--success); }
        .badge-blocked { background: rgba(239,68,68,0.12); color: var(--danger); }
        .badge-free { background: rgba(148,163,184,0.12); color: var(--text-secondary); }
        .badge-premium { background: rgba(245,158,11,0.12); color: var(--warning); }
        .badge-pro { background: rgba(139,92,246,0.12); color: var(--purple); }

        /* TABLE */
        .table-wrap { overflow-x: auto; border-radius: 0.75rem; border: 1px solid var(--border-color); }
        table { width: 100%; border-collapse: collapse; }
        th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border-color); }
        th { color: var(--text-secondary); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; background: #ffffff; }
        tr:last-child td { border-bottom: none; }
        tr:hover td { background: rgba(0,0,0,0.01); }
        td { font-size: 0.88rem; color: var(--text-primary); }
        .td-email { font-weight: 500; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .action-group { display: flex; gap: 6px; align-items: center; }

        /* SEARCH BAR */
        .search-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: center; flex-wrap: wrap; }
        .search-input-wrap { position: relative; flex: 1; min-width: 200px; }
        .search-input-wrap input { padding-left: 2.5rem; }
        .search-icon { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--text-secondary); font-size: 1rem; }

        /* MAILBOX LIMIT EDITOR */
        .limit-editor { display: flex; align-items: center; gap: 6px; }
        .limit-editor input[type=number] { width: 65px; padding: 0.3rem 0.5rem; font-size: 0.85rem; }

        /* MODAL */
        .modal-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.8); backdrop-filter: blur(4px); z-index: 100; display: flex; align-items: center; justify-content: center; }
        .modal { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 1rem; padding: 2rem; width: 100%; max-width: 520px; box-shadow: 0 25px 60px rgba(0,0,0,0.5); animation: slideUp 0.2s ease; }
        @keyframes slideUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
        .modal-title { font-size: 1.1rem; font-weight: 700; }
        .modal-close { background: none; border: none; color: var(--text-secondary); cursor: pointer; font-size: 1.5rem; padding: 0 4px; transition: color 0.15s; }
        .modal-close:hover { color: var(--text-primary); }
        .detail-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }
        .detail-row:last-child { border-bottom: none; }
        .detail-label { color: var(--text-secondary); }
        .detail-val { font-weight: 500; text-align: right; max-width: 280px; word-break: break-all; }
        .perm-email-list { display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
        .perm-email-item { font-size: 0.8rem; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); border-radius: 6px; padding: 3px 8px; font-family: monospace; }

        /* LOGS */
        .logs-viewer { background: #f1f5f9; color: #334155; padding: 1.5rem; border-radius: 0.75rem; height: 600px; overflow: auto; font-family: 'Courier New', monospace; font-size: 0.85rem; white-space: pre-wrap; border: 1px solid var(--border-color); }

        /* MESSAGES */
        .message-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 1.25rem; border-radius: 0.75rem; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 1rem; margin-bottom: 1rem; transition: border-color 0.2s; }
        .message-card:hover { border-color: var(--primary-color); }
        .msg-avatar { width: 40px; height: 40px; background: #334155; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

        /* PAGINATION */
        .pagination { display: flex; gap: 6px; justify-content: center; margin-top: 1.5rem; }
        .page-btn { padding: 6px 12px; border-radius: 6px; border: 1px solid var(--border-color); background: var(--bg-card); color: var(--text-secondary); cursor: pointer; font-size: 0.85rem; transition: all 0.15s; }
        .page-btn:hover, .page-btn.active { background: var(--primary-color); color: var(--text-primary); border-color: var(--primary-color); }

        /* EMPTY STATE */
        .empty-state { text-align: center; padding: 3rem; color: var(--text-secondary); }
        .empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }

        /* TOAST */
        #toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; }
        .toast-msg { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 0.75rem; padding: 0.875rem 1.25rem; font-size: 0.9rem; box-shadow: 0 10px 30px rgba(0,0,0,0.4); animation: fadeIn 0.2s ease; display: flex; align-items: center; gap: 10px; margin-top: 8px; }
        .toast-success { border-left: 3px solid var(--success); }
        .toast-error { border-left: 3px solid var(--danger); }
        @keyframes fadeIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

        code { background: #ffffff; padding: 4px 8px; border-radius: 4px; font-family: monospace; font-size: 0.85rem; }

/* --- Styles from about.html --- */


        

        

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
        }

        .logo {
            font-size: 48px;
            margin-bottom: 10px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav a:hover {
            color: var(--primary-color);
            background: rgba(96, 165, 250, 0.1);
        }

        .card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 24px;
        }

        h2 {
            color: var(--primary-color);
            margin-bottom: 16px;
            font-size: 1.75rem;
        }

        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        ul {
            margin-left: 24px;
            margin-bottom: 16px;
        }

        li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        .cta {
            text-align: center;
            margin-top: 40px;
        }

        .btn {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--text-primary);
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        }

        footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

/* --- Styles from privacy-policy.html --- */


        

        

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
        }

        .logo {
            font-size: 48px;
            margin-bottom: 10px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav a:hover {
            color: var(--primary-color);
            background: rgba(96, 165, 250, 0.1);
        }

        .card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 24px;
        }

        h2 {
            color: var(--primary-color);
            margin-bottom: 16px;
            font-size: 1.5rem;
            margin-top: 24px;
        }

        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        ul {
            margin-left: 24px;
            margin-bottom: 16px;
        }

        li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

/* --- Styles from contact.html --- */


        

        

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
        }

        .logo {
            font-size: 48px;
            margin-bottom: 10px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav a:hover {
            color: var(--primary-color);
            background: rgba(96, 165, 250, 0.1);
        }

        .card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 24px;
        }

        h2 {
            color: var(--primary-color);
            margin-bottom: 16px;
            font-size: 1.75rem;
        }

        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        .contact-method {
            background: rgba(15, 23, 42, 0.3);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .contact-method h3 {
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

/* --- Styles from pricing.html --- */
.pricing-header {
            text-align: center;
            padding: 80px 20px 40px;
        }

        .pricing-title {
            font-size: 3rem;
            margin-bottom: 20px;
            background: var(--gradient-primary), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
        }

        .pricing-card.popular {
            border: 2px solid var(--neon-purple);
            box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
            transform: scale(1.05);
        }

        .badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--neon-purple);
            color: var(--text-primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            margin: 20px 0;
            color: var(--text-primary);
        }

        .price span {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }

        .features li {
            padding: 10px 0;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .features li:last-child {
            border-bottom: none;
        }

        .features li::before {
            content: "✓";
            color: var(--neon-cyan);
            margin-right: 10px;
            font-weight: bold;
        }

        .btn-pricing {
            display: block;
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-top: 20px;
        }

        .btn-outline {
            border: 2px solid var(--border-color);
            color: var(--text-primary);
        }

        .btn-outline:hover {
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
        }

        .btn-fill {
            background: var(--gradient-primary);
            color: var(--text-primary);
            border: none;
        }

        .btn-fill:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

/* --- Styles from survey.html --- */


        

        

        .container {
            max-width: 700px;
            margin: 0 auto;
        }

        .card {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 1rem;
            border: 1px solid var(--border-color);
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .required {
            color: #ef4444;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 0.75rem;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            color: var(--text-primary);
            font-size: 1rem;
            outline: none;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--primary-color);
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

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

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-item input[type="checkbox"] {
            width: auto;
        }

        .rating {
            display: flex;
            gap: 0.5rem;
        }

        .star {
            font-size: 2rem;
            cursor: pointer;
            color: #64748b;
            transition: color 0.2s;
        }

        .star.active,
        .star:hover {
            color: #fbbf24;
        }

        .btn {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            background: var(--primary-color);
            color: var(--text-primary);
        }

        .btn:hover {
            background: #7c3aed;
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .success-message {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #86efac;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            display: none;
        }

        .back-link {
            display: inline-block;
            margin-top: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }

        .back-link:hover {
            text-decoration: underline;
        }

/* --- Styles from terms.html --- */


        

        

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
        }

        .logo {
            font-size: 48px;
            margin-bottom: 10px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav a:hover {
            color: var(--primary-color);
            background: rgba(96, 165, 250, 0.1);
        }

        .card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 24px;
        }

        h2 {
            color: var(--primary-color);
            margin-bottom: 16px;
            font-size: 1.5rem;
            margin-top: 24px;
        }

        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        ul {
            margin-left: 24px;
            margin-bottom: 16px;
        }

        li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

/* --- Styles from how-it-works.html --- */


        

        

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 20px;
        }

        .logo {
            font-size: 48px;
            margin-bottom: 10px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .nav a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav a:hover {
            color: var(--primary-color);
            background: rgba(96, 165, 250, 0.1);
        }

        .card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 24px;
        }

        h2 {
            color: var(--primary-color);
            margin-bottom: 16px;
            font-size: 1.75rem;
        }

        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        .step {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .step-number {
            background: var(--gradient-primary);
            color: var(--text-primary);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .step-content h3 {
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .btn {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--text-primary);
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        }

        .cta {
            text-align: center;
            margin-top: 40px;
        }

        footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

/* --- Styles from faq.html --- */


        

        

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        header {
            text-align: center;
            margin-bottom: 60px;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 16px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
        }

        .faq-section {
            margin-bottom: 40px;
        }

        .faq-category {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-color);
        }

        .faq-item {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: start;
            gap: 12px;
        }

        .question::before {
            content: "Q:";
            color: var(--primary-color);
            font-weight: 700;
            flex-shrink: 0;
        }

        .answer {
            color: var(--text-secondary);
            font-size: 1.05rem;
            padding-left: 32px;
            line-height: 1.8;
        }

        .cta-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: var(--gradient-primary), rgba(139, 92, 246, 0.1));
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .cta-button {
            display: inline-block;
            padding: 16px 32px;
            background: var(--gradient-primary);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        .back-link {
            display: inline-block;
            margin-top: 40px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .question {
                font-size: 1.1rem;
            }

            .answer {
                font-size: 1rem;
                padding-left: 0;
            }

            .faq-item {
                padding: 20px;
            }
        }
